/*
Theme Name: Cinch Rebuild
Theme URI: https://www.cinchsolution.com/
Author: Cinch Solutions
Description: Professional theme rebuilt to match Sidify design language
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: cinch-rebuild
*/

/* ===================================
   CSS Variables - Music Theme Design System
   =================================== */
:root {
    /* Primary Colors - Purple/Violet Music Vibe */
    --color-primary: #8B5CF6;
    --color-primary-dark: #7C3AED;
    --color-primary-light: #A78BFA;
    
    /* Secondary - Vibrant Blue */
    --color-secondary: #3B82F6;
    --color-secondary-dark: #2563EB;
    
    /* Accent - Coral/Orange for Energy */
    --color-accent: #F97316;
    --color-accent-light: #FB923C;
    
    /* Highlight - Rose/Pink for Modern Feel */
    --color-highlight: #EC4899;
    --color-highlight-light: #F472B6;
    
    /* Success/Check - Green */
    --color-success: #10B981;
    
    /* Background Colors - Deep Purple Navy */
    --bg-dark: #0F0A1A;
    --bg-darker: #080510;
    --bg-card: #1A1025;
    --bg-card-hover: #251735;
    --bg-purple: #150D24;
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #C4B5FD;
    --text-muted: #8B7FA8;
    
    /* Border Colors */
    --border-color: rgba(139, 92, 246, 0.15);
    --border-light: rgba(139, 92, 246, 0.25);
    --border-glow: rgba(139, 92, 246, 0.4);
    
    /* Gradients - Music Inspired */
    --gradient-hero: linear-gradient(135deg, #0F0A1A 0%, #1A0F2E 25%, #150D24 50%, #0F0A1A 100%);
    --gradient-hero-glow: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                         radial-gradient(ellipse at bottom right, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    --gradient-card: linear-gradient(180deg, #1E1430 0%, #150D24 100%);
    --gradient-button: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --gradient-button-hover: linear-gradient(135deg, #34D399 0%, #10B981 100%);
    --gradient-accent: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    --gradient-highlight: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
    --gradient-text: linear-gradient(135deg, #FFFFFF 0%, #C4B5FD 100%);
    
    /* Glow Effects */
    --glow-primary: 0 0 30px rgba(139, 92, 246, 0.4);
    --glow-accent: 0 0 30px rgba(249, 115, 22, 0.4);
    --glow-card: 0 0 40px rgba(139, 92, 246, 0.1);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', var(--font-primary);
    
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Layout */
    --container-max: 1200px;
    --header-height: 72px;
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* ===================================
   Reset & Base Styles
   =================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-darker);
    min-height: 100vh;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

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

/* Custom Logo Fix */
.custom-logo {
    max-height: 40px !important;
    width: auto !important;
    height: auto !important;
}

.custom-logo-link {
    display: flex;
    align-items: center;
}

ul, ol {
    list-style: none;
}

button,
.btn,
.button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--font-size-6xl); }
h2 { font-size: var(--font-size-5xl); }
h3 { font-size: var(--font-size-4xl); }
h4 { font-size: var(--font-size-3xl); }
h5 { font-size: var(--font-size-2xl); }
h6 { font-size: var(--font-size-xl); }

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

/* ===================================
   Layout & Container
   =================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section {
    padding: var(--spacing-3xl) 0;
}

.section-dark {
    background: var(--bg-dark);
}

.section-darker {
    background: var(--bg-darker);
}

/* ===================================
   Header & Navigation
   =================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--spacing-xl);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.site-brand img {
    height: 40px;
    width: auto;
}

.site-brand span {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.primary-menu,
.menu-fallback {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.primary-menu li,
.menu-fallback li {
    position: relative;
}

.primary-menu a,
.menu-fallback a {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    letter-spacing: 0.02em;
}

.primary-menu a:hover,
.menu-fallback a:hover,
.primary-menu .current-menu-item a,
.menu-fallback .current_page_item a {
    color: var(--text-primary);
    background: rgba(139, 92, 246, 0.15);
}

/* Submenu */
.primary-menu .sub-menu,
.menu-fallback .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    padding: var(--spacing-md) 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.primary-menu li:hover > .sub-menu,
.menu-fallback li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu .sub-menu a,
.menu-fallback .sub-menu a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 0;
}

.primary-menu .sub-menu a:hover,
.menu-fallback .sub-menu a:hover {
    background: rgba(139, 92, 246, 0.15);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: all var(--transition-fast);
}

.site-nav {
    display: flex;
    align-items: center;
}

/* ===================================
   Buttons
   =================================== */
.button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-sm);
    font-weight: 600;
    line-height: 1;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    text-decoration: none;
}

.button--primary,
.btn--primary {
    background: var(--gradient-button);
    color: var(--text-primary);
}

.button--primary:hover,
.btn--primary:hover {
    background: var(--gradient-button-hover);
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

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

.button--secondary:hover,
.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.button--large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-base);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    padding: calc(var(--header-height) + var(--spacing-3xl)) 0 var(--spacing-3xl);
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero__eyebrow {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.35);
    border-radius: var(--radius-full);
    color: var(--color-primary-light);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-lg);
}

.hero h1 {
    font-size: clamp(var(--font-size-4xl), 6vw, var(--font-size-6xl));
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, #FFFFFF 0%, #E9D5FF 50%, #C4B5FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__lead {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.hero__microcopy {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-top: var(--spacing-xs);
    opacity: 0.8;
}

.hero__trust-band {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-light);
    margin-top: var(--spacing-md);
}

.hero__trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero__trust-value {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
}

.hero__trust-label {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
    padding-top: var(--spacing-2xl);
    border-top: 1px solid var(--border-color);
}

.hero__stat {
    text-align: center;
}

.hero__stat-value {
    display: block;
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.hero__stat-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

/* ===================================
   Product Cards
   =================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.product-card {
    position: relative;
    padding: var(--spacing-2xl);
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-button);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: var(--glow-card), 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card__badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-full);
    color: var(--color-primary-light);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
}

.product-card h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-md);
}

.product-card__description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.product-card__features {
    margin-bottom: var(--spacing-xl);
}

.product-card__features li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.product-card__features li::before {
    content: '✓';
    color: var(--color-success);
    font-weight: 700;
    flex-shrink: 0;
}

.product-card__actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.product-card__price {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.product-card__price span {
    font-size: var(--font-size-sm);
    font-weight: 400;
    color: var(--text-muted);
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
}

.section-header h2 {
    margin-bottom: var(--spacing-md);
}

.section-header p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    padding: var(--spacing-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.feature-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-6px);
    box-shadow: var(--glow-card), 0 12px 32px rgba(0, 0, 0, 0.3);
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.1);
    background: rgba(139, 92, 246, 0.25);
    box-shadow: 0 0 24px rgba(139, 92, 246, 0.3);
}

.feature-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-primary-light);
    transition: all var(--transition-base);
}

.feature-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

/* ===================================
   Testimonials
   =================================== */
.testimonials-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-darker);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial-card {
    padding: var(--spacing-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.testimonial-card__content {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.testimonial-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background: var(--gradient-button);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-primary);
    font-size: var(--font-size-xl);
    border: 2px solid rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.2);
    flex-shrink: 0;
}

.testimonial-card__name {
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-card__role {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

/* ===================================
   Blog/Posts
   =================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--spacing-xl);
}

.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.post-card:hover {
    border-color: rgba(139, 92, 246, 0.35);
    transform: translateY(-4px);
}

.post-card__thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--bg-card-hover);
}

.post-card__content {
    padding: var(--spacing-lg);
}

.post-card__meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.post-card__title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
}

.post-card__excerpt {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.post-card__link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

/* Single Post - Disabled width constraint for custom layout */
.single-post {
    /* max-width: 800px; - Disabled to allow full-width custom article layout */
}

.single-post__header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid var(--border-color);
}

.single-post__title {
    font-size: clamp(var(--font-size-3xl), 4vw, var(--font-size-5xl));
    margin-bottom: var(--spacing-md);
}

.single-post__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

.single-post__content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.single-post__content h2,
.single-post__content h3,
.single-post__content h4 {
    color: var(--text-primary);
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-md);
}

.single-post__content p {
    margin-bottom: var(--spacing-lg);
}

.single-post__content ul,
.single-post__content ol {
    margin-bottom: var(--spacing-lg);
    padding-left: var(--spacing-xl);
}

.single-post__content li {
    margin-bottom: var(--spacing-sm);
}

.single-post__content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.single-post__content img {
    border-radius: var(--radius-lg);
    margin: var(--spacing-xl) 0;
}

.single-post__content blockquote {
    padding: 2rem;
    margin: 2.5rem 0;
    background: rgba(139, 92, 246, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-lg);
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.15), inset 0 0 20px rgba(139, 92, 246, 0.05);
    position: relative;
}

/* ===================================
   Footer
   =================================== */
.site-footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    padding-top: var(--spacing-3xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
}

.footer-brand h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-md);
}

.footer-brand h3 a {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 50%, var(--color-highlight) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    transition: all var(--transition-base);
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--text-primary);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.footer-column h4 {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

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

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .site-nav {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border-color);
        padding: var(--spacing-lg);
        display: none;
    }
    
    .site-nav.is-open {
        display: block;
    }
    
    .primary-menu,
    .menu-fallback {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .primary-menu .sub-menu,
    .menu-fallback .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: var(--spacing-lg);
        background: transparent;
    }
    
    .hero__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero__stats {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   WordPress Core Styles
   =================================== */
.entry-content {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: var(--font-size-base);
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.entry-content h2:first-child,
.entry-content h3:first-child {
    margin-top: 0;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.entry-content a:hover {
    color: var(--color-primary-dark);
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.entry-content blockquote {
    padding: 1.5rem;
    margin: 2rem 0;
    background: rgba(139, 92, 246, 0.08);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-secondary);
}

.entry-content code,
.entry-content pre {
    background: var(--bg-card);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.entry-content pre {
    padding: 1.5rem;
    overflow-x: auto;
    margin: 2rem 0;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.entry-content th,
.entry-content td {
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.entry-content th {
    background: var(--bg-card);
    font-weight: 600;
}

/* Pagination */
.pagination,
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pagination a,
.pagination span,
.nav-links a,
.nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: 500;
    transition: all var(--transition-base);
}

.pagination a:hover,
.nav-links a:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--color-primary);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.pagination .current,
.nav-links .current {
    background: var(--gradient-button);
    border-color: transparent;
    color: var(--text-primary);
}

/* Search Form */
.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-field {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: var(--font-size-base);
    outline: none;
}

.search-field:focus {
    border-color: var(--color-primary);
}

.search-submit {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-button);
    color: var(--text-primary);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.search-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.35);
}

/* Comments */
.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.comments-title {
    font-size: var(--font-size-2xl);
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.comment-author {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.comment-meta {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.comment-body {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Alignment */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ===================================
   Legacy Class Support (for old templates)
   =================================== */
.wrap {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.page-hero {
    padding: calc(var(--header-height) + var(--spacing-3xl)) 0 var(--spacing-2xl);
    background: var(--gradient-hero);
}

.page-hero__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.content-shell {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-dark);
}

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

.article-card {
    padding: var(--spacing-2xl);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
}

.eyebrow {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.35);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-lg);
}

/* Site Main */
.site-main {
    min-height: calc(100vh - var(--header-height));
}

/* Ensure proper spacing for all pages */
.page .site-main,
.single .site-main,
.archive .site-main,
.blog .site-main {
    padding-top: var(--header-height);
}

/* ===================================
   Homepage - Hero Enhancements
   =================================== */

/* Hero background layers */
.hero__wave-bg {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    animation: waveSlide 20s linear infinite;
}

.hero__glow {
    position: absolute;
    filter: blur(70px);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

.hero__glow--right {
    top: -20%;
    right: -5%;
    width: 55%;
    height: 75%;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.18) 0%, transparent 70%);
}

.hero__glow--left {
    bottom: -15%;
    left: -5%;
    width: 45%;
    height: 65%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    animation-delay: 4s;
}

/* Hero 2-column grid layout */
.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero__content {
    animation: fadeInUp 0.8s ease-out;
}

.hero__content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero__content .hero__lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
}

.hero__content .hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

/* Hero CTA buttons hover (replaces inline onmouseover) */
.hero__content .button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.hero__content .button--secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
}

/* Product float animation */
.hero__product-float {
    position: relative;
    animation: floatProduct 6s ease-in-out infinite;
}

.hero__product-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.25) 0%, transparent 60%);
    filter: blur(50px);
    pointer-events: none;
    animation: pulseGlow 6s ease-in-out infinite;
}

/* Screenshot card with perspective */
.hero__screenshot-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.hero__screenshot-card:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) scale(1.02);
}

.hero__screenshot-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Window frame (app mockup) */
.window-frame {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-dot--red {
    background: linear-gradient(135deg, #ff5f57 0%, #ff3b30 100%);
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.4);
}

.window-dot--yellow {
    background: linear-gradient(135deg, #ffbd2e 0%, #ff9500 100%);
    box-shadow: 0 2px 8px rgba(255, 149, 0, 0.4);
}

.window-dot--green {
    background: linear-gradient(135deg, #28ca41 0%, #20b838 100%);
    box-shadow: 0 2px 8px rgba(32, 184, 56, 0.4);
    animation: buttonGlow 3s ease-in-out infinite;
}

.window-title {
    flex: 1;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.window-spacer {
    width: 60px;
}

/* Rating badge */
.rating-badge {
    position: absolute;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.08) 100%);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: 14px;
    padding: 12px 18px;
    top: -15px;
    right: -10px;
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.25);
    animation: badgeFloat 5s ease-in-out infinite;
}

.rating-badge__stars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-badge__stars-list {
    display: flex;
    gap: 2px;
}

.rating-badge__star {
    color: #fbbf24;
    font-size: 14px;
}

.rating-badge__divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 4px;
}

.rating-badge__score {
    color: white;
    font-size: 13px;
    font-weight: 700;
}

/* Stat value gradient text */
.hero__stat-value {
    background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.hero__stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================================
   Product Showcase
   =================================== */

.product-showcase {
    position: relative;
    margin: 3rem 0;
}

.product-showcase__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.8;
    animation: glow-pulse 4s ease-in-out infinite;
}

.product-showcase__glow--left {
    top: -110px;
    left: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.68) 0%, rgba(139, 92, 246, 0.3) 42%, rgba(139, 92, 246, 0.1) 62%, transparent 78%);
}

.product-showcase__glow--right {
    right: -90px;
    bottom: -70px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.58) 0%, rgba(236, 72, 153, 0.2) 42%, rgba(236, 72, 153, 0.08) 62%, transparent 78%);
    filter: blur(72px);
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

.product-showcase__glow--purple {
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.6) 0%, rgba(139, 92, 246, 0.25) 40%, rgba(139, 92, 246, 0.08) 60%, transparent 75%);
}

.product-showcase__glow--pink {
    bottom: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.5) 0%, rgba(236, 72, 153, 0.15) 40%, rgba(236, 72, 153, 0.05) 60%, transparent 75%);
    filter: blur(60px);
}

.product-showcase__glow--blue {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.55) 0%, rgba(59, 130, 246, 0.2) 40%, rgba(59, 130, 246, 0.08) 60%, transparent 75%);
}

.product-showcase__glow--green {
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.45) 0%, rgba(16, 185, 129, 0.15) 40%, rgba(16, 185, 129, 0.05) 60%, transparent 75%);
    filter: blur(70px);
}

/* ===================================
   Front-Page Specific Classes
   (Agent naming conventions)
   =================================== */

/* Window frame containers */
.window-frame__dots {
    display: flex;
    gap: 6px;
}

.window-frame__spacer {
    width: 60px;
}

.window-frame--blue {
    background: linear-gradient(90deg, #1a1530 0%, #0f0a1a 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    margin-bottom: 0;
}

/* Rating badge inner layout */
.rating-badge__inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Section header extras */
.section-header__eyebrow {
    margin-bottom: 1rem;
}

.section-header__link {
    color: inherit;
    text-decoration: none;
}

/* Product showcase link wrapper */
.product-showcase__link {
    text-decoration: none;
    display: block;
}

/* Showcase window (app mockup frames) */
.showcase-window {
    background: #1a1025;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Image showcase window - 让图片以原始尺寸显示 */
.showcase-window--image {
    background: #0f0a1a;
    border-radius: 16px;
    overflow: hidden;
    line-height: 0;
    display: inline-block;
    /* 突破 container 的 padding */
    margin-left: -24px;
    margin-right: -24px;
    /* 装饰效果 - 增强边框和阴影 */
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 0 0 1px rgba(139, 92, 246, 0.15),
        0 25px 50px -12px rgba(0, 0, 0, 0.6),
        0 0 80px -20px rgba(139, 92, 246, 0.4),
        inset 0 0 60px rgba(139, 92, 246, 0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 悬停效果 - 增强 */
.showcase-window--image:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 
        0 0 0 1px rgba(139, 92, 246, 0.3),
        0 35px 70px -15px rgba(0, 0, 0, 0.7),
        0 0 120px -30px rgba(139, 92, 246, 0.6),
        inset 0 0 80px rgba(139, 92, 246, 0.1);
    transform: translateY(-8px) scale(1.01);
}

/* 顶部高光效果 */
.showcase-window--image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.showcase-window__img {
    display: block;
    height: auto;
}

/* 让图片展示链接居中 */
.product-showcase__link {
    display: flex;
    justify-content: center;
}

/* Removed specific cropping rules */

.showcase-window--streamgrab {
    background: #0f0a1a;
}

.showcase-window__titlebar {
    background: linear-gradient(90deg, #2a1f3d 0%, #1a1025 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.showcase-window__title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.showcase-window__app-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.showcase-window__app-icon--blue {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.showcase-window__title {
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.showcase-window__subtitle {
    color: var(--text-muted);
    font-size: 11px;
}

.showcase-window__content {
    display: flex;
    min-height: 400px;
}

.showcase-window__main {
    flex: 1;
    background: linear-gradient(180deg, #0f0a1a 0%, #150d24 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.showcase-window__main--streamgrab {
    background: linear-gradient(180deg, #0f0a1a 0%, #12091c 100%);
    align-items: stretch;
    justify-content: flex-start;
}

/* App sidebar items */
.app-sidebar__item {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: transparent;
    color: var(--text-muted);
}

.app-sidebar__item--active {
    background: rgba(139, 92, 246, 0.2);
    color: var(--color-primary-light);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.app-sidebar__item--blue.app-sidebar__item--active {
    background: rgba(59, 130, 246, 0.2);
    color: #60A5FA;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Recording status labels */
.recording-status {
    text-align: center;
    margin-bottom: 30px;
}

.recording-status__label {
    color: var(--color-primary-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.recording-status__meta {
    color: var(--text-muted);
    font-size: 11px;
}

/* Waveform visualization */
.waveform-visualization {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 120px;
    margin-bottom: 40px;
}

.waveform-bar {
    width: 4px;
    background: linear-gradient(180deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border-radius: 2px;
    opacity: 0.8;
}

/* Recording controls */
.recording-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.recording-controls__record {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.recording-controls__record-core {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
}

.recording-controls__stop {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.recording-controls__stop-core {
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 2px;
}

/* Format badge */
.format-badge {
    margin-top: 20px;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
}

.format-badge__text {
    color: var(--color-primary-light);
    font-size: 11px;
    font-weight: 600;
}

/* Button group */
.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.button-group--center {
    justify-content: center;
}

.button__icon {
    margin-right: 8px;
}

/* Hero eyebrow blue variant */
.hero__eyebrow--blue {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.35);
    color: #60A5FA;
}

/* StreamGrab connection status */
.connection-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.connection-status__text {
    color: #10B981;
    font-size: 12px;
    font-weight: 500;
}

/* StreamGrab form */
.streamgrab-form {
    margin-bottom: 24px;
}

.streamgrab-form__actions {
    display: flex;
    gap: 12px;
}

.download-btn {
    flex: 1;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    padding: 12px 24px;
    border-radius: 8px;
    text-align: center;
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.streamgrab-options-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 13px;
}

/* Current download (agent naming) */
.current-download__media {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* URL input value */
.url-input__value {
    color: var(--text-secondary);
    font-size: 13px;
    flex: 1;
}

/* CTA block */
.cta-block {
    text-align: center;
}

.cta-block__title {
    margin-bottom: 1rem;
}

.cta-block__text {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
}

/* Hero stat staggered animations */
.hero__stat--1 { animation: fadeInUp 0.8s ease-out 0s both; }
.hero__stat--2 { animation: fadeInUp 0.8s ease-out 0.15s both; }
.hero__stat--3 { animation: fadeInUp 0.8s ease-out 0.3s both; }
.hero__stat--4 { animation: fadeInUp 0.8s ease-out 0.45s both; }

/* Product showcase glow blue/green variants */
.product-showcase__glow--blue {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.55) 0%, rgba(59, 130, 246, 0.2) 40%, rgba(59, 130, 246, 0.08) 60%, transparent 75%);
    filter: blur(80px);
}

.product-showcase__glow--green {
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.45) 0%, rgba(16, 185, 129, 0.15) 40%, rgba(16, 185, 129, 0.05) 60%, transparent 75%);
    filter: blur(70px);
}

/* ===================================
   StreamGrab Product Showcase
   =================================== */

.download-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.download-stat {
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.download-stat__value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.download-stat__label {
    color: var(--text-muted);
    font-size: 11px;
}

.download-stat--active {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.download-stat--active .download-stat__value {
    color: #60A5FA;
}

.download-stat--success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

.download-stat--success .download-stat__value {
    color: #10B981;
}

.current-download {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    padding: 16px;
}

.current-download__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.current-download__info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.current-download__thumb {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.current-download__title {
    color: white;
    font-size: 13px;
    font-weight: 500;
}

.current-download__meta {
    color: var(--text-muted);
    font-size: 11px;
}

.current-download__percent {
    color: #60A5FA;
    font-size: 12px;
    font-weight: 500;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    height: 6px;
    overflow: hidden;
}

.progress-bar__fill {
    height: 100%;
    border-radius: 4px;
}

.progress-bar__fill--blue {
    background: linear-gradient(90deg, #3B82F6 0%, #60A5FA 100%);
}

/* Product action buttons */
.product-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-icon {
    margin-right: 8px;
}

/* StreamGrab button variant */
.button--blue {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

/* Eyebrow variant */
.eyebrow--blue {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.35);
    color: #60A5FA;
}

/* ===================================
   How It Works Steps
   =================================== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

/* Connecting line between steps (desktop only) */
.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -1rem;
    width: calc(100% - 80px);
    height: 2px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.5) 0%, rgba(139, 92, 246, 0.15) 100%);
    z-index: 0;
}

.step-card__number {
    width: 80px;
    height: 80px;
    background: var(--gradient-button);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: var(--glow-primary);
    color: white;
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: all var(--transition-base);
}

.step-card:hover .step-card__number {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
}

.step-card h3 {
    margin-bottom: 0.5rem;
}

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

/* ===================================
   Breadcrumb
   =================================== */

.breadcrumb {
    margin-bottom: 1.5rem;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: var(--font-size-sm);
}

.breadcrumb__item {
    display: flex;
    align-items: center;
}

.breadcrumb__item a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

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

.breadcrumb__item--current span {
    color: var(--text-secondary);
}

.breadcrumb__sep {
    margin: 0 0.5rem;
    color: var(--text-muted);
    opacity: 0.5;
}

/* ===================================
   CTA Section Variant
   =================================== */

.section--hero-gradient {
    background: var(--gradient-hero);
    text-align: center;
}

.section--darker {
    background: var(--bg-darker);
    overflow: hidden;
}

.section--dark {
    background: var(--bg-dark);
    overflow: hidden;
}

/* ===================================
   Animations (moved from inline <style>)
   =================================== */

@keyframes waveSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(120px); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes floatProduct {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(1deg); }
}

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

@keyframes buttonGlow {
    0%, 100% { box-shadow: 0 2px 8px rgba(32, 184, 56, 0.4); }
    50% { box-shadow: 0 2px 16px rgba(32, 184, 56, 0.7), 0 0 20px rgba(32, 184, 56, 0.5); }
}

/* ===================================
    CRO Animations - Conversion Focused
    =================================== */

@keyframes pricePulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 0 0 50px rgba(139, 92, 246, 0.7), 0 0 80px rgba(139, 92, 246, 0.4);
    }
}

@keyframes pricePulseBlue {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 0 0 50px rgba(59, 130, 246, 0.7), 0 0 80px rgba(59, 130, 246, 0.4);
    }
}

@keyframes electricGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.4), 0 0 40px rgba(16, 185, 129, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(16, 185, 129, 0.7), 0 0 80px rgba(16, 185, 129, 0.4), 0 0 120px rgba(16, 185, 129, 0.2);
    }
}

@keyframes blueGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.4), 0 0 40px rgba(59, 130, 246, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.7), 0 0 80px rgba(59, 130, 246, 0.4), 0 0 120px rgba(59, 130, 246, 0.2);
    }
}

@keyframes borderFlow {
    0% { border-color: rgba(16, 185, 129, 0.3); }
    50% { border-color: rgba(16, 185, 129, 0.8); }
    100% { border-color: rgba(16, 185, 129, 0.3); }
}

@keyframes borderFlowBlue {
    0% { border-color: rgba(59, 130, 246, 0.3); }
    50% { border-color: rgba(59, 130, 246, 0.8); }
    100% { border-color: rgba(59, 130, 246, 0.3); }
}

@keyframes floatGlow {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-10px) scale(1.1);
        opacity: 0.8;
    }
}

/* ===================================
   Scroll Reveal Animations
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--gradient-button);
    border: none;
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 900;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5);
}

/* ===================================
   Download Center Page
   =================================== */

/* Hero */
.dc-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    padding: calc(var(--header-height) + var(--spacing-3xl)) 0 var(--spacing-3xl);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dc-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.dc-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.dc-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin: 0 0 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

.dc-hero__subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Stats Bar */
.dc-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

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

.dc-stats__number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.dc-stats__label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Products Section - Dark Theme */
.dc-products {
    padding: 60px 0;
    background: var(--bg-dark);
}

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

.dc-section-header h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--text-primary);
    margin: 0 0 15px;
    text-transform: uppercase;
}

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

.dc-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Product Card - Dark Theme */
.dc-product-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

/* Ultimate Product Card - Enhanced Styling */
.dc-product-card--ultimate {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.15) 0%, rgba(21, 13, 36, 0.8) 100%);
    border: 2px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.2), inset 0 0 60px rgba(139, 92, 246, 0.05);
}

.dc-product-card--ultimate:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.35), 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 60px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.8);
}

/* Most Popular Badge */
.dc-product-card__popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dc-product-card__popular-badge svg {
    width: 16px;
    height: 16px;
}

/* Icon Link */
.dc-product-card__icon-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.dc-product-card:hover .dc-product-card__icon-link {
    transform: scale(1.05);
}

.dc-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow-card), 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(139, 92, 246, 0.4);
}

.dc-product-card__icon {
    width: 96px;
    height: 96px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.dc-product-card:hover .dc-product-card__icon {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.dc-product-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.dc-product-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 12px;
}

.dc-product-card__tag {
    display: inline-block;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--color-primary-light);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Ultimate Badge - Premium Look */
.dc-product-card__badge--ultimate {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(59, 130, 246, 0.25) 100%);
    border: 1px solid rgba(139, 92, 246, 0.5);
    color: #C4B5FD;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.dc-product-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0 0 12px;
    font-weight: 700;
}

.dc-product-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.dc-product-card h3 a:hover {
    color: var(--color-primary-light);
}

.dc-product-card__desc {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}

/* Download Info */
.dc-download-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.dc-download-info__item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
}

.dc-download-info__item svg {
    opacity: 0.6;
}

.dc-download-info__item strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Trust Badges - Larger */
.dc-trust-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.dc-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.dc-trust-badge:hover {
    transform: translateY(-2px);
}

.dc-trust-badge svg {
    width: 15px;
    height: 15px;
}

.dc-trust-badge--safe {
    background: rgba(16, 185, 129, 0.12);
    color: #34D399;
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.15);
}

.dc-trust-badge--safe:hover {
    background: rgba(16, 185, 129, 0.2);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.dc-trust-badge--ssl {
    background: rgba(59, 130, 246, 0.12);
    color: #60A5FA;
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.15);
}

.dc-trust-badge--ssl:hover {
    background: rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

.dc-trust-badge--verified {
    background: rgba(139, 92, 246, 0.12);
    color: #A78BFA;
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.15);
}

.dc-trust-badge--verified:hover {
    background: rgba(139, 92, 246, 0.2);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.25);
}

/* Product Actions */
.dc-product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}

.dc-product-actions .button {
    flex: 1;
    min-width: 150px;
    justify-content: center;
    font-size: 0.85rem;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.dc-product-actions .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dc-product-actions .button:hover::before {
    opacity: 1;
}

.dc-product-actions .button__platform {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.dc-product-actions .button__meta {
    font-size: 0.7rem;
    opacity: 0.9;
    font-weight: 500;
}

.dc-product-actions .button--primary {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    border: 2px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    color: white;
}

.dc-product-actions .button--primary:hover {
    background: linear-gradient(135deg, #A78BFA 0%, #60A5FA 100%);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, 0.7);
}

/* Ultimate Card Buttons - Extra Glow */
.dc-product-card--ultimate .button--primary {
    background: linear-gradient(135deg, #A78BFA 0%, #60A5FA 100%);
    border-color: rgba(139, 92, 246, 0.7);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.dc-product-card--ultimate .button--primary:hover {
    background: linear-gradient(135deg, #C4B5FD 0%, #93C5FD 100%);
    box-shadow: 0 8px 35px rgba(139, 92, 246, 0.6);
}

/* Coming Soon Button */
.dc-product-actions .button--coming-soon {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    cursor: default;
}

.dc-product-actions .button--coming-soon:hover {
    transform: none;
    box-shadow: none;
}

/* Product Meta Footer */
.dc-product-meta {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.dc-product-meta__requirements {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.dc-product-meta__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.dc-product-meta__value {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 5px 12px;
    border-radius: 8px;
}

.dc-product-meta__value svg {
    color: var(--text-muted);
}

.dc-product-meta__footer {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dc-product-meta__install {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dc-product-meta__install svg {
    color: var(--color-success);
}

.dc-product-meta__guide {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--color-primary-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.dc-product-meta__guide:hover {
    color: var(--color-primary);
}

.dc-product-meta__guide svg {
    color: var(--color-primary-light);
}

/* ===================================
   Article Sidebar (Light Theme)
   =================================== */

.article-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 48px);
    color: #334155;
}

.article-sidebar__card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

/* TOC Card */
.article-sidebar__toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    cursor: pointer;
    user-select: none;
    transition: background 150ms ease;
}

.article-sidebar__toc-header:hover {
    background: #f8fafc;
}

.article-sidebar__toc-header h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-sidebar__toc-header h3 svg {
    color: #6366f1;
}

.article-sidebar__toc-chevron {
    color: #64748b;
    transition: transform 150ms ease;
}

.article-sidebar__toc-header.is-active .article-sidebar__toc-chevron {
    transform: rotate(180deg);
}

.article-sidebar__toc-list {
    list-style: none;
    padding: 0 16px 16px;
    margin: 0;
    display: grid;
    gap: 2px;
    max-height: 400px;
    overflow-y: auto;
}

.article-sidebar__toc-list::-webkit-scrollbar {
    width: 4px;
}

.article-sidebar__toc-list::-webkit-scrollbar-track {
    background: transparent;
}

.article-sidebar__toc-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

.article-sidebar__toc-item a {
    display: block;
    padding: 8px 12px;
    color: #334155;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 6px;
    border-left: 2px solid transparent;
    transition: all 150ms ease;
}

.article-sidebar__toc-item a:hover {
    color: #111827;
    background: #eef2ff;
}

.article-sidebar__toc-item a.is-active {
    color: #3730a3;
    border-left-color: #6366f1;
    background: #eef2ff;
    font-weight: 600;
}

.article-sidebar__toc-item--level3 a {
    padding-left: 24px;
    font-size: 0.8rem;
    color: #64748b;
}

/* CTA Card */
.article-sidebar__cta {
    padding: 24px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-color: #e2e8f0;
}

.article-sidebar__cta-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: #eef2ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
}

.article-sidebar__cta h3 {
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.article-sidebar__cta p {
    color: #475569;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0 0 16px;
}

.article-sidebar__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 999px;
    text-decoration: none;
    transition: all 250ms ease;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
}

.article-sidebar__cta-btn:hover {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.5);
    color: #ffffff;
}

/* ===================================
   Article Page Responsive
   =================================== */

/* Single Post Page Chrome - Light Reading Theme */
body.single {
    background: #f8fafc;
    color: #111827;
}

body.single .site-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

body.single .primary-menu a,
body.single .menu-fallback a {
    color: #0f172a;
}

body.single .primary-menu a:hover,
body.single .menu-fallback a:hover,
body.single .primary-menu .current-menu-item a,
body.single .menu-fallback .current_page_item a {
    color: #312e81;
    background: #eef2ff;
}

body.single .menu-toggle {
    border-color: #dbe3ee;
}

body.single .menu-toggle span {
    background: #0f172a;
}

body.single .site-brand {
    color: #0f172a;
}

body.single .primary-menu .sub-menu,
body.single .menu-fallback .sub-menu {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

body.single .primary-menu .sub-menu a:hover,
body.single .menu-fallback .sub-menu a:hover {
    background: #eef2ff;
}

body.single .site-footer {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

body.single .footer-brand p,
body.single .footer-column h4,
body.single .footer-links a,
body.single .footer-bottom,
body.single .footer-bottom p,
body.single .footer-bottom a {
    color: #475569;
}

body.single .footer-links a:hover,
body.single .footer-bottom a:hover {
    color: #312e81;
}

body.single .footer-social a {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e5e7eb;
}

body.single .footer-social a:hover {
    background: #eef2ff;
    color: #312e81;
    border-color: #c7d2fe;
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.16);
}

body.single .section-dark {
    background: #f8fafc;
}

body.single .site-footer .section.section-dark h4 {
    color: #0f172a !important;
}

body.single .post-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

body.single .post-card:hover {
    border-color: #c7d2fe;
}

body.single .post-card__thumbnail {
    background: #eef2ff;
}

body.single .post-card__meta {
    color: #64748b;
}

body.single .post-card__title,
body.single .post-card__title a {
    color: #0f172a;
}

body.single .site-footer .section.section-dark .post-card h5,
body.single .site-footer .section.section-dark .post-card h5 a {
    color: #0f172a !important;
}

body.single .post-card__excerpt {
    color: #475569;
}

body.single .post-card__link {
    color: #4f46e5;
}

body.single .site-footer .section.section-dark .post-card p {
    color: #64748b !important;
}

/* Reading Progress Bar - Dark Theme */
.reading-progress {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: 3px;
    background: #e2e8f0;
    z-index: 999;
}

.reading-progress__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4f46e5, #6366f1);
    transition: width 50ms linear;
    box-shadow: 0 0 8px rgba(79, 70, 229, 0.4);
}

.reading-progress__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    transition: width 50ms linear;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
}

/* Article Page Container - Light Reading Theme */
.article-page {
    background: #f8fafc;
    color: #334155;
    min-height: 100vh;
}

/* Slim Banner - Light Theme */
/* Article Main Container - Optimized Reading Width */
.article-page__main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem var(--spacing-lg) var(--spacing-3xl);
}

/* Breadcrumb - Light Theme */
.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.8rem;
    font-size: var(--font-size-sm);
    color: #64748b;
    flex-wrap: wrap;
}

.article-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.article-breadcrumb a:hover {
    color: #4338ca;
}

.article-breadcrumb__sep {
    color: #94a3b8;
    opacity: 0.8;
}

.article-breadcrumb__current {
    color: #475569;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Article Grid - Better content/sidebar ratio */
.article-grid {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 40px;
    align-items: start;
}

.article-main {
    padding: clamp(1.5rem, 2vw, 2.25rem);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    color: #111827;
}

/* Article Header */
.article-header {
    margin-bottom: var(--spacing-xl);
}

.article-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin: 0 0 var(--spacing-lg);
    letter-spacing: -0.02em;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: var(--font-size-sm);
    color: #475569;
}

.article-meta__category {
    display: inline-flex;
    align-items: center;
    padding: 0.26rem 0.7rem;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: 999px;
    color: #4f46e5;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-author__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--text-primary);
    font-weight: 700;
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-author__name {
    color: #111827;
    font-weight: 600;
}

.article-meta__sep {
    color: #cbd5e1;
}

.article-meta__date {
    color: #64748b;
}

/* Article Hero Image - Dark Theme */
.article-hero {
    margin-bottom: var(--spacing-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.article-hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Content - Dark Theme */
.article-content {
    max-width: 750px;
    font-size: 18px;
    line-height: 1.85;
    color: #111827;
}

.article-content p {
    margin-bottom: 1.5rem;
    color: #111827;
}

.article-content .article-summary-box {
    max-width: 62ch;
    margin: 0 0 2.5rem;
    padding: 1.1rem 1.25rem 1.2rem;
    background: #f8fafc;
    border: 1px solid #dbe3ee;
    border-left: 4px solid #6366f1;
    border-radius: 16px;
}

.article-content .article-summary-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.65rem;
    color: #4f46e5;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-content .article-summary-label__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 999px;
    background: #eef2ff;
    color: #4f46e5;
    font-size: 0.72rem;
    line-height: 1;
    flex-shrink: 0;
}

.article-content .article-summary {
    max-width: none;
    font-size: 1.02rem;
    line-height: 1.75;
    color: #475569;
    font-weight: 400;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
    border-bottom: 0;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: #0f172a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-content strong,
.article-content b {
    color: #0f172a;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content a {
    color: #4f46e5;
    text-decoration: underline;
    text-underline-offset: 0.12em;
}

.article-content a:hover {
    color: #3730a3;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: #111827;
    list-style-type: disc;
}

.article-content ol {
    list-style-type: decimal;
}

.article-content li {
    margin-bottom: 0.75rem;
    color: #111827;
}

.article-content blockquote {
    padding: 2rem;
    margin: 2.5rem 0;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #6366f1;
    border-radius: var(--radius-lg);
    font-style: italic;
    color: #334155;
    position: relative;
}

.article-content blockquote::before {
    display: none;
}

/* Article Content - Code and Tables */
.article-content code,
.article-content pre {
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #1f2937;
}

.article-content pre {
    padding: 1.5rem;
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid #e5e7eb;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.article-content th,
.article-content td {
    padding: 1rem;
    border: 1px solid #e5e7eb;
    text-align: left;
    color: #334155;
}

.article-content th {
    background: #f8fafc;
    font-weight: 600;
    color: #0f172a;
}

/* Article Footer - Light Reading Surface */
.article-footer {
    margin-top: var(--spacing-3xl);
    padding-top: var(--spacing-2xl);
    border-top: 1px solid #e5e7eb;
}

.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--spacing-xl);
    color: #64748b;
}

.article-tags svg {
    color: #64748b;
    flex-shrink: 0;
}

.article-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: var(--radius-full);
    color: #3730a3;
    font-size: var(--font-size-sm);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.article-tag:hover {
    background: #e0e7ff;
    border-color: #818cf8;
    color: #312e81;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.article-share__label {
    color: #64748b;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-share__buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid #dbe3ee;
    border-radius: var(--radius-md);
    color: #475569;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
}

.share-btn:hover {
    background: #eef2ff;
    border-color: #818cf8;
    color: #312e81;
    transform: translateY(-2px);
}

.share-btn--facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #ffffff;
}

.share-btn--twitter:hover {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}

.share-btn--linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: #ffffff;
}

.share-btn--copy.is-copied {
    background: var(--color-success);
    border-color: var(--color-success);
    color: #ffffff;
}

.share-btn__icon-copy,
.share-btn__icon-check {
    width: 16px;
    height: 16px;
}

.share-btn.is-copied .share-btn__icon-copy {
    display: none;
}

.share-btn:not(.is-copied) .share-btn__icon-check {
    display: none;
}

/* Article Related - Light Reading Surface */
.article-related {
    margin-top: var(--spacing-3xl);
    padding-top: var(--spacing-2xl);
    border-top: 1px solid #e5e7eb;
}

.article-related__title {
    color: #0f172a;
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-xl);
}

.article-related__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.article-related__card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 16px 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-base);
}

.article-related__card:hover {
    border-color: #c7d2fe;
    background: #f8fafc;
    transform: translateX(4px);
}

.article-related__thumb {
    width: 132px;
    height: 84px;
    border-radius: 14px;
    overflow: hidden;
    background: #eef2ff;
    flex-shrink: 0;
}

.article-related__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-related__thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.article-related__thumb-placeholder svg {
    width: 24px;
    height: 24px;
}

.article-related__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.article-related__meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-related__date {
    font-size: var(--font-size-xs);
    color: #64748b;
}

.article-related__name {
    font-size: 1.1rem;
    color: #111827;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-related__excerpt {
    margin: 0;
    color: #475569;
    font-size: 0.97rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Article Comments - Light Reading Surface */
.article-comments {
    margin-top: var(--spacing-3xl);
    padding-top: var(--spacing-2xl);
    border-top: 1px solid #e5e7eb;
}

.article-comments__title {
    color: #0f172a;
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-xl);
}

.article-comments .comments-area {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.article-comments .comment {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.article-comments .comment-author {
    color: #111827;
}

.article-comments .comment-meta {
    color: #64748b;
}

.article-comments .comment-body {
    color: #334155;
}

/* Changelog Section - Dark Theme with Timeline */
.dc-changelog {
    padding: 60px 0;
    background: var(--bg-darker);
}

.dc-changelog-list {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Timeline line */
.dc-changelog-list::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.5) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.dc-changelog-item {
    position: relative;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px 30px 28px 110px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.dc-changelog-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateX(4px);
}

/* Timeline dot */
.dc-changelog-item::before {
    content: '';
    position: absolute;
    left: 73px;
    top: 32px;
    width: 16px;
    height: 16px;
    background: var(--gradient-button);
    border-radius: 50%;
    border: 3px solid var(--bg-darker);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
    z-index: 1;
}

.dc-changelog-item__date {
    position: absolute;
    left: 0;
    top: 28px;
    width: 60px;
    text-align: right;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.3;
}

.dc-changelog-item__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.dc-changelog-item__badge {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dc-changelog-item__product {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.dc-changelog-item__version {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.dc-changelog-item__changes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dc-changelog-item__changes li {
    position: relative;
    padding-left: 24px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.dc-changelog-item__changes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

.dc-changelog-item__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    color: #00D4AA;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s, gap 0.2s;
}

.dc-changelog-item__link:hover {
    color: #34E8C4;
    gap: 10px;
}

/* CTA Section */
.dc-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    text-align: center;
    color: #fff;
}

.dc-cta h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin: 0 0 15px;
    text-transform: uppercase;
}

.dc-cta p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.dc-cta .button--white {
    background: #fff;
    color: #8B5CF6;
    border: 2px solid #fff;
    min-height: 54px;
    padding: 0 40px;
    font-size: 1.05rem;
}

.dc-cta .button--white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ===================================
   Changelog Pages (Shared)
   =================================== */

.cl-hero {
    padding: calc(var(--header-height) + var(--spacing-3xl)) 0 var(--spacing-2xl);
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cl-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.cl-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cl-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.cl-hero__intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cl-hero__version {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 28px;
    background: var(--gradient-button);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.cl-hero__version:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.cl-content {
    background: var(--bg-dark);
    padding: 60px 0 80px;
}

.cl-list {
    max-width: 800px;
    margin: 0 auto;
}

.cl-version {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.cl-version:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cl-version__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cl-version__number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.cl-version__badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--color-primary-light);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.cl-changes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cl-change {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.cl-change__badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    margin-top: 3px;
}

.cl-change__badge--added {
    background: rgba(16, 185, 129, 0.15);
    color: #34D399;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.cl-change__badge--changed {
    background: rgba(245, 158, 11, 0.15);
    color: #FBBF24;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.cl-change__badge--fixed {
    background: rgba(59, 130, 246, 0.15);
    color: #60A5FA;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.cl-change__badge--removed {
    background: rgba(239, 68, 68, 0.15);
    color: #F87171;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.cl-change__text {
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
}

.cl-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.cl-legend__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cl-legend__badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.cl-cta {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    margin-top: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cl-cta h3 {
    font-size: 1.35rem;
    margin: 0 0 12px;
    color: var(--text-primary);
}

.cl-cta p {
    color: var(--text-secondary);
    margin: 0 0 24px;
}

.cl-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--gradient-button);
    color: #fff;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.cl-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

/* Responsive Overrides
   =================================== */

@media (max-width: 768px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero__content {
        text-align: center;
    }
    
    .hero__content .hero__actions {
        align-items: center;
        justify-content: center;
    }
    
    .hero__trust-band {
        justify-content: center;
    }
    
    /* Mobile: constrain screenshot, remove perspective */
    .hero__product-float {
        max-width: 480px;
        margin: 0 auto;
        overflow: visible;
    }
    
    .hero__screenshot-card {
        transform: none;
    }
    
    .hero__screenshot-card:hover {
        transform: scale(1.01);
    }
    
    .rating-badge {
        right: 10px;
        top: -10px;
    }
    
    .download-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    /* Hide step connecting lines on mobile */
    .step-card:not(:last-child)::after {
        display: none;
    }
    
    /* Back to top button - mobile position */
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }
    
    /* Download Center Mobile */
    .dc-stats {
        gap: 30px;
    }
    
    .dc-products-grid {
        grid-template-columns: 1fr;
    }
    
    .dc-download-info {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .dc-product-actions {
        flex-direction: column;
    }
    
    .dc-product-actions .button {
        min-width: 100%;
    }
    
    .dc-changelog-list::before {
        display: none;
    }
    
    .dc-changelog-item {
        padding-left: 30px;
    }
    
    .dc-changelog-item::before {
        display: none;
    }
    
    .dc-changelog-item__date {
        position: static;
        width: auto;
        text-align: left;
        margin-bottom: 8px;
    }
    
    /* Checkout Mobile */
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .checkout-product__card {
        flex-direction: column;
        gap: 2rem;
    }
    
    .checkout-product__image-wrap {
        max-width: 220px;
        margin: 0 auto;
    }
    
    .checkout-pricing__card {
        max-width: 100%;
    }
    
    .checkout-trust__grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-faq__grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-pricing__price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .checkout-cta__inner h2 {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 480px) {
    .checkout-hero {
        padding: calc(var(--header-height) + var(--spacing-xl)) 0 var(--spacing-xl);
    }
    
    .checkout-hero h1 {
        font-size: var(--font-size-3xl);
    }
    
    .checkout-pricing__card {
        padding: var(--spacing-lg);
    }
    
    .checkout-product__features li {
        font-size: var(--font-size-sm);
    }
}

/* ===================================
   StreamGrab Checkout Page
   =================================== */

/* Checkout Hero */
.checkout-hero {
    position: relative;
    padding: calc(var(--header-height) + var(--spacing-xl)) 0 var(--spacing-lg);
    background: var(--gradient-hero);
    overflow: hidden;
    text-align: center;
}

.checkout-hero__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.checkout-hero__glow--purple {
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
}

.checkout-hero__glow--pink {
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, transparent 70%);
}

.checkout-hero__inner {
    position: relative;
    z-index: 1;
}

.checkout-hero__badge {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.35);
    border-radius: var(--radius-full);
    color: var(--color-primary-light);
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-lg);
}

.checkout-hero h1 {
    font-size: clamp(var(--font-size-4xl), 5vw, var(--font-size-6xl));
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #FFFFFF 0%, #E9D5FF 50%, #C4B5FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkout-hero__lead {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Checkout Body */
.checkout-body {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-dark);
}

/* Two-column layout - Pricing panel dominates */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--spacing-2xl);
    align-items: start;
}

.checkout-pricing {
    position: sticky;
    top: calc(var(--header-height) + var(--spacing-xl));
    align-self: start;
}

/* Product Card (Left) */
.checkout-product__card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    display: flex;
    gap: var(--spacing-xl);
    align-items: flex-start;
    position: relative;
}

.checkout-product__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6 0%, rgba(59, 130, 246, 0.2) 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    opacity: 0.85;
}

.checkout-product__visual {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
}

.checkout-product__image-wrap {
    position: relative;
    flex-shrink: 0;
}

.checkout-product__glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.2) 0%, transparent 60%);
    filter: blur(30px);
    pointer-events: none;
}

.checkout-product__img {
    width: 200px;
    height: auto;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 60px rgba(59, 130, 246, 0.3));
    transition: transform var(--transition-base);
}

.checkout-product__svg {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
    transition: transform var(--transition-base);
}

.checkout-product__image-wrap:hover .checkout-product__img,
.checkout-product__image-wrap:hover .checkout-product__svg {
    transform: translateY(-8px) scale(1.02);
}

.checkout-product__badge {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 2;
    background: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.checkout-product__details {
    flex: 1 1 0;
    min-width: 0;
    padding-top: var(--spacing-sm);
}

.checkout-product__details::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    margin: var(--spacing-lg) 0 var(--spacing-sm);
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.85) 0%, rgba(59, 130, 246, 0) 100%);
    opacity: 0.7;
}

.checkout-product__title {
    font-size: clamp(1.95rem, 2.5vw, 2.25rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    text-wrap: balance;
}

.checkout-product__tagline {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.72;
    max-width: 30ch;
    margin-bottom: 1.25rem;
}

.checkout-product__features {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: var(--spacing-sm);
}

.checkout-product__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.checkout-product__features li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.checkout-product__check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-success);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 0.2rem;
}

/* Pricing Card (Right) */
.checkout-pricing__card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    position: relative;
    top: 0;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}

.checkout-pricing__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-button);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.checkout-pricing__header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.checkout-pricing__tag {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-accent-light);
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
}

.checkout-pricing__price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.checkout-pricing__original {
    font-size: var(--font-size-xl);
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.checkout-pricing__current {
    font-weight: 800;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.checkout-pricing__dollar {
    font-size: var(--font-size-2xl);
}

.checkout-pricing__amount {
    font-size: var(--font-size-5xl);
    line-height: 1;
}

.checkout-pricing__cents {
    font-size: var(--font-size-2xl);
}

.checkout-pricing__license {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* Payment Methods */
.checkout-pricing__payments {
    margin-bottom: 1rem;
}

.checkout-pricing__pay-label {
    display: block;
    font-size: var(--font-size-xs);
    color: rgba(139, 127, 168, 0.78);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}

.checkout-pricing__cards {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.checkout-card-icon {
    height: 24px;
    padding: 3px 7px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 9px;
    color: #1A1F71;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.checkout-card-icon--mc {
    position: relative;
    width: 38px;
    color: transparent;
}

.checkout-card-icon--mc::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: #EB001B;
    border-radius: 50%;
    left: 6px;
}

.checkout-card-icon--mc::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: #F79E1B;
    border-radius: 50%;
    right: 6px;
}

.checkout-card-icon--amex {
    color: #006FCF;
}

.checkout-card-icon--discover {
    color: #FF6000;
}

.checkout-card-icon--paypal {
    color: #003087;
    font-size: 8px;
    letter-spacing: 0.02em;
}

/* Buy Button */
.checkout-pricing__buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    width: 100%;
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--gradient-button);
    color: var(--text-primary);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
    box-shadow: var(--glow-primary);
    margin-bottom: var(--spacing-md);
}

.checkout-pricing__buy-btn:hover {
    background: var(--gradient-button-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
    color: var(--text-primary);
}

/* Secure Note */
.checkout-pricing__secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
}

.checkout-pricing__secure svg {
    flex-shrink: 0;
    color: var(--color-success);
}

.checkout-pricing__secure span {
    font-size: var(--font-size-xs);
    color: var(--color-success);
    font-weight: 500;
}

/* Guarantee Badge */
.checkout-pricing__guarantee {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.03) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-lg);
}

.checkout-pricing__guarantee svg {
    flex-shrink: 0;
    color: var(--color-success);
    margin-top: 2px;
}

.checkout-pricing__guarantee strong {
    display: block;
    color: var(--text-primary);
    font-size: var(--font-size-sm);
    margin-bottom: 4px;
}

.checkout-pricing__guarantee span {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===================================
    CRO-Enhanced Pricing Card (High Conversion)
    =================================== */

/* Glassmorphism Pricing Card - CARU (Purple/Green Theme) */
.checkout-pricing__card--cro {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(21, 13, 36, 0.95) 50%,
        rgba(16, 185, 129, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 0 60px rgba(139, 92, 246, 0.15),
        inset 0 0 80px rgba(139, 92, 246, 0.05),
        0 20px 60px rgba(0, 0, 0, 0.4);
    animation: borderFlow 3s ease-in-out infinite;
    overflow: hidden;
}

.checkout-pricing__card--cro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    animation: floatGlow 6s ease-in-out infinite;
    pointer-events: none;
}

.checkout-pricing__card--cro::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
    animation: floatGlow 8s ease-in-out infinite reverse;
    pointer-events: none;
}

/* Glassmorphism Pricing Card - StreamGrab (Blue/Cyan Theme) */
.checkout-pricing__card--cro-blue {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(15, 23, 42, 0.95) 50%,
        rgba(6, 182, 212, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 0 60px rgba(59, 130, 246, 0.15),
        inset 0 0 80px rgba(59, 130, 246, 0.05),
        0 20px 60px rgba(0, 0, 0, 0.4);
    animation: borderFlowBlue 3s ease-in-out infinite;
    overflow: hidden;
}

.checkout-pricing__card--cro-blue::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    animation: floatGlow 6s ease-in-out infinite;
    pointer-events: none;
}

.checkout-pricing__card--cro-blue::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
    animation: floatGlow 8s ease-in-out infinite reverse;
    pointer-events: none;
}

/* Enhanced Price Display - Pulsing */
.checkout-pricing__current--pulse {
    animation: none;
    display: inline-block;
}

.checkout-pricing__current--pulse-blue {
    animation: none;
    display: inline-block;
}

.checkout-pricing__amount--enhanced {
    font-size: clamp(3.5rem, 8vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #FFFFFF 0%, #C4B5FD 50%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.03em;
}

.checkout-pricing__amount--enhanced-blue {
    font-size: clamp(3.5rem, 8vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #FFFFFF 0%, #93C5FD 50%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.03em;
}

/* Electric Green CTA Button (CARU) */
.checkout-pricing__buy-btn--electric {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-2xl);
    background: linear-gradient(135deg, var(--color-success) 0%, #059669 100%);
    color: var(--text-primary);
    border-radius: var(--radius-lg);
    font-size: clamp(1.05rem, 2.2vw, 1.18rem);
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.01em;
    line-height: 1.2;
    white-space: nowrap;
    transition: all var(--transition-base);
    box-shadow: 0 0 24px rgba(16, 185, 129, 0.35);
    animation: electricGlow 3.6s ease-in-out infinite;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    overflow: hidden;
}

.checkout-pricing__buy-btn--electric::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    animation: none;
    opacity: 0;
}

.checkout-pricing__buy-btn--electric:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 0 60px rgba(16, 185, 129, 0.8),
        0 0 120px rgba(16, 185, 129, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.4);
    color: var(--text-primary);
}

/* Electric Blue CTA Button (StreamGrab) */
.checkout-pricing__buy-btn--electric-blue {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-2xl);
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: var(--text-primary);
    border-radius: var(--radius-lg);
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.35);
    animation: blueGlow 3.6s ease-in-out infinite;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    overflow: hidden;
}

.checkout-pricing__buy-btn--electric-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    animation: none;
    opacity: 0;
}

.checkout-pricing__buy-btn--electric-blue:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 0 60px rgba(59, 130, 246, 0.8),
        0 0 120px rgba(59, 130, 246, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.4);
    color: var(--text-primary);
}

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

/* Trust Elements Adjacent to CTA */
.checkout-pricing__trust-adjacent {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-lg);
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-md);
}

.checkout-pricing__trust-adjacent--blue {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
}

.checkout-pricing__trust-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
}

.checkout-pricing__trust-row svg {
    flex-shrink: 0;
    color: var(--color-success);
    width: 18px;
    height: 18px;
}

/* Enhanced Guarantee Badge */
.checkout-pricing__guarantee--enhanced {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.1) 0%, 
        rgba(16, 185, 129, 0.03) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.1);
}

.checkout-pricing__guarantee--enhanced-blue {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(59, 130, 246, 0.03) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
}

/* Payment Icons Enhanced */
.checkout-pricing__cards--enhanced {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.75rem 0.875rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
}

/* Product Visual - Modern Floating Frame */
.checkout-product__visual--modern {
    position: relative;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.checkout-product__visual--modern-blue {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(59, 130, 246, 0.15);
    box-shadow: 
        0 0 60px rgba(59, 130, 246, 0.1),
        inset 0 0 40px rgba(59, 130, 246, 0.03);
}

.checkout-product__image-wrap--floating {
    position: relative;
    z-index: 1;
}

.checkout-product__image-wrap--floating::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.2) 0%, transparent 60%);
    filter: blur(60px);
    pointer-events: none;
    animation: checkoutProductHalo 12s ease-in-out infinite;
}

.checkout-product__img--floating {
    position: relative;
    z-index: 1;
    width: 196px;
    height: auto;
    border-radius: var(--radius-lg);
    filter: 
        drop-shadow(0 8px 16px rgba(139, 92, 246, 0.3))
        drop-shadow(0 20px 50px rgba(139, 92, 246, 0.2));
}

@keyframes checkoutProductHalo {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.28;
    }
    50% {
        transform: translateY(-4px) scale(1.03);
        opacity: 0.4;
    }
}

.checkout-product__svg--floating {
    position: relative;
    z-index: 1;
    width: 180px;
    height: 180px;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

/* SVG inside floating wrapper */
.checkout-product__image-wrap--floating .checkout-product__svg {
    width: 180px;
    height: 180px;
}

/* Trust Section Enhanced */
.checkout-trust--enhanced {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, rgba(139, 92, 246, 0.02) 50%, var(--bg-darker) 100%);
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

/* Trust Section Enhanced Blue */
.checkout-trust--enhanced-blue {
    background: linear-gradient(180deg, var(--bg-darker) 0%, rgba(59, 130, 246, 0.02) 50%, var(--bg-darker) 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

/* Blue Theme Badge for Hero */
.checkout-hero__badge--blue {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.35);
    color: #60A5FA;
}

/* Blue Theme Glow for Hero */
.checkout-hero__glow--blue {
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
}

.checkout-hero__glow--cyan {
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
}

/* Blue Check Icon */
.checkout-product__check--blue {
    background: rgba(59, 130, 246, 0.15);
    color: #60A5FA;
}

/* Blue Trust Icon */
.checkout-trust__icon--blue {
    background: rgba(59, 130, 246, 0.1);
}

/* Blue Tag for Pricing */
.checkout-pricing__tag--blue {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    color: #60A5FA;
}

/* Add missing CSS for hero blue glow */


/* Trust Section */
.checkout-trust {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}

.checkout-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.checkout-trust__item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.checkout-trust__item:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--glow-card);
}

.checkout-trust__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-md);
}

.checkout-trust__item h4 {
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    margin: 0 0 4px;
}

.checkout-trust__item p {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* FAQ Section */
.checkout-faq {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-dark);
}

.checkout-faq__title {
    text-align: center;
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-2xl);
}

.checkout-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.checkout-faq__item {
    padding: var(--spacing-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.checkout-faq__item:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.checkout-faq__item h4 {
    font-size: var(--font-size-base);
    color: var(--text-primary);
    margin: 0 0 var(--spacing-sm);
    line-height: 1.5;
}

.checkout-faq__item p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

/* Bottom CTA */
.checkout-cta {
    padding: var(--spacing-3xl) 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.checkout-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.checkout-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.checkout-cta__inner h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #FFFFFF 0%, #C4B5FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkout-cta__inner p {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.checkout-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg) var(--spacing-2xl);
    background: var(--gradient-button);
    color: var(--text-primary);
    border-radius: var(--radius-full);
    font-size: var(--font-size-base);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: var(--glow-primary);
}

.checkout-cta__btn:hover {
    background: var(--gradient-button-hover);
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.5);
    color: var(--text-primary);
}

/* Checkout Responsive */
@media (max-width: 900px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .checkout-product__card {
        flex-direction: column;
    }

    .checkout-pricing {
        position: static;
        top: auto;
    }
    
    .checkout-pricing__card {
        position: static;
    }
    
    .checkout-trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .checkout-faq__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .checkout-product__card {
        flex-direction: column;
        gap: 2rem;
    }
    
    .checkout-product__image-wrap {
        max-width: 220px;
        margin: 0 auto;
    }
    
    .checkout-pricing__card {
        max-width: 100%;
    }
    
    .checkout-trust__grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-faq__grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-pricing__price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .checkout-cta__inner h2 {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 480px) {
    .checkout-hero {
        padding: calc(var(--header-height) + var(--spacing-xl)) 0 var(--spacing-xl);
    }
    
    .checkout-hero h1 {
        font-size: var(--font-size-3xl);
    }
    
    .checkout-pricing__card {
        padding: var(--spacing-lg);
    }
    
    .checkout-product__features li {
        font-size: var(--font-size-sm);
    }
}


   Article Page Responsive
   =================================== */

@media (max-width: 1100px) {
    .article-grid {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }

    .article-sidebar__card {
        margin-bottom: 0;
    }

    /* TOC collapses on tablet */
    .article-sidebar__toc-list {
        max-height: 0;
        overflow: hidden;
        padding: 0 var(--spacing-lg);
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .article-sidebar__toc-list.is-open {
        max-height: 500px;
        padding: 0 var(--spacing-lg) var(--spacing-lg);
    }

    .article-sidebar__toc-chevron {
        display: block;
    }
}

@media (max-width: 768px) {
    .article-page__banner {
        padding: 10px 0;
    }

    .article-page__banner-inner {
        padding: 0 var(--spacing-md);
    }

    .article-page__main {
        padding: var(--spacing-lg) var(--spacing-md) var(--spacing-2xl);
    }

    .article-title {
        font-size: 1.75rem;
    }

    .article-content {
        padding: var(--spacing-lg);
    }

    .article-content p,
    .article-content li {
        font-size: 1rem;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .article-related__grid {
        grid-template-columns: 1fr;
    }

    .article-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .article-breadcrumb__current {
        max-width: 150px;
    }

    .article-meta {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .article-content {
        padding: var(--spacing-md);
        border-radius: var(--radius-lg);
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-related__grid {
        gap: var(--spacing-md);
    }

    .share-btn {
        width: 36px;
        height: 36px;
    }
}

/* ===================================
   CARU Changelog (WordPress Page Content)
   =================================== */

.page-id-1009309 .single-post__header {
    text-align: center;
    padding: calc(var(--header-height) + var(--spacing-3xl)) 0 var(--spacing-2xl);
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 0 !important;
}

.page-id-1009309 .single-post__header::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.page-id-1009309 .single-post__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Changelog Pages - Shared Styles (StreamGrab + CARU) */
.page-id-1009309 .entry-content,
.page-id-1009977 .entry-content {
    background: var(--bg-dark);
    padding: 60px 24px 80px;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
}

/* Changelog intro text */
.page-id-1009309 .entry-content > p:first-of-type,
.page-id-1009977 .entry-content > p:first-of-type {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

/* Horizontal dividers between versions */
.page-id-1009309 .entry-content > hr,
.page-id-1009977 .entry-content > hr {
    border: none;
    height: 1px;
    background: var(--border-color);
    margin: 40px 0;
}

/* Version headings */
.page-id-1009309 .entry-content > h2,
.page-id-1009977 .entry-content > h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 20px;
    padding-top: 20px;
}

/* Category headings (with emojis) */
.page-id-1009309 .entry-content > h3,
.page-id-1009977 .entry-content > h3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 16px;
    margin: 16px 0 12px;
}

/* Emoji images in headings */
.page-id-1009309 .entry-content h3 img.emoji,
.page-id-1009977 .entry-content h3 img.emoji {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin: 0;
}

/* Change list items */
.page-id-1009309 .entry-content > ul,
.page-id-1009977 .entry-content > ul {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
}

.page-id-1009309 .entry-content > ul > li,
.page-id-1009977 .entry-content > ul > li {
    position: relative;
    padding: 10px 16px 10px 20px;
    margin-bottom: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.925rem;
    transition: all 0.2s ease;
}

.page-id-1009309 .entry-content > ul > li:hover,
.page-id-1009977 .entry-content > ul > li:hover {
    background: rgba(139, 92, 246, 0.06);
    border-color: rgba(139, 92, 246, 0.15);
}

.page-id-1009309 .entry-content > ul > li::before,
.page-id-1009977 .entry-content > ul > li::before {
    content: '→';
    position: absolute;
    left: 6px;
    color: var(--color-primary);
    font-size: 0.8rem;
    top: 12px;
}

/* Bold labels inside list items */
.page-id-1009309 .entry-content > ul > li strong,
.page-id-1009977 .entry-content > ul > li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Download CTA at bottom */
.page-id-1009309 .cl-cta,
.page-id-1009977 .cl-cta {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    margin: 48px auto 0;
    max-width: 800px;
}

.page-id-1009309 .cl-cta h3,
.page-id-1009977 .cl-cta h3 {
    font-size: 1.35rem;
    margin: 0 0 12px;
    color: var(--text-primary);
}

.page-id-1009309 .cl-cta p,
.page-id-1009977 .cl-cta p {
    color: var(--text-secondary);
    margin: 0 0 24px;
}

.page-id-1009309 .cl-cta__btn,
.page-id-1009977 .cl-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--gradient-button);
    color: #fff;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.page-id-1009309 .cl-cta__btn:hover,
.page-id-1009977 .cl-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

/* Section background for changelog pages */
.page-id-1009309 .site-main .section,
.page-id-1009977 .site-main .section {
    background: var(--bg-dark);
}

/* ===================================
   Support Page Styles
   =================================== */

/* Support Hero with Search */
.support-hero {
    position: relative;
    padding: calc(var(--header-height) + var(--spacing-3xl)) 0 var(--spacing-3xl);
    background: var(--gradient-hero);
    overflow: hidden;
}

.support-hero__bg-glow {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.25) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(60px);
}

.support-hero__bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: 0.5;
}

.support-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.support-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.35);
    border-radius: var(--radius-full);
    color: var(--color-primary-light);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-lg);
}

.support-hero__eyebrow-icon {
    font-size: 1rem;
}

.support-hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF 0%, #E9D5FF 50%, #C4B5FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.support-hero__lead {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--spacing-2xl);
    line-height: 1.7;
}

/* Support Search Bar */
.support-search {
    margin-bottom: var(--spacing-xl);
}

.support-search__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    padding: var(--spacing-sm);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    max-width: 600px;
    margin: 0 auto;
}

.support-search__wrapper:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15), var(--glow-primary);
    background: rgba(255, 255, 255, 0.08);
}

.support-search__icon {
    position: absolute;
    left: 20px;
    color: var(--text-muted);
    pointer-events: none;
    display: flex;
    align-items: center;
}

.support-search__input {
    flex: 1;
    width: 100%;
    padding: var(--spacing-md) var(--spacing-xl) var(--spacing-md) 56px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: var(--font-size-base);
    outline: none;
}

.support-search__input::placeholder {
    color: var(--text-muted);
}

.support-search__button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--gradient-button);
    color: var(--text-primary);
    border: none;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.support-search__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* Support Hero Quick Links */
.support-hero__quick-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
    max-width: 500px;
    margin: 0 auto;
}

.support-hero__quick-label {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

.support-hero__quick-link {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.support-hero__quick-link:hover {
    color: var(--color-primary);
}

/* Support Section Base */
.support-section {
    padding: var(--spacing-3xl) 0;
}

.support-section--dark {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
}

.section-header__badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-lg);
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-primary-light);
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-lg);
}

.section-header__badge--pink {
    background: rgba(236, 72, 153, 0.15);
    border-color: rgba(236, 72, 153, 0.3);
    color: #F472B6;
}

.section-header h2 {
    margin-bottom: var(--spacing-md);
}

.section-header p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
}

/* Guides Grid */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

/* Featured Grid (Row 1 - Higher Priority) */
.guides-grid--featured {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.guides-grid--standard {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

/* Featured Card Styles */
.guide-card--featured {
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(139, 92, 246, 0.02) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.guide-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B5CF6, #D946EF, #8B5CF6);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

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

.guide-card--featured:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.2), 0 12px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-6px);
}

.guide-card--featured .guide-card__icon {
    width: 72px;
    height: 72px;
}

.guide-card--featured .guide-card__emoji {
    font-size: 2.5rem;
}

.guide-card--featured .guide-card__title {
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.guide-card--featured .guide-card__desc {
    font-size: var(--font-size-base);
}

/* Guide Card Badge */
.guide-card__badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #8B5CF6 0%, #D946EF 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    margin-bottom: var(--spacing-sm);
}

.guide-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-base);
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-button);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.guide-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--glow-card), 0 12px 32px rgba(0, 0, 0, 0.3);
}

.guide-card:hover::before {
    opacity: 1;
}

.guide-card:hover .guide-card__arrow {
    transform: translateX(4px);
    color: var(--color-primary);
}

.guide-card__icon {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

/* Icon with Image */
.guide-card__icon--image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-card__icon--image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.guide-card--featured .guide-card__icon--image img {
    width: 72px;
    height: 72px;
}

.guide-card__emoji {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.guide-card__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.3) 0%, transparent 60%);
    filter: blur(15px);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.guide-card:hover .guide-card__glow {
    opacity: 1;
}

.guide-card__content {
    flex: 1;
    min-width: 0;
}

.guide-card__title {
    font-size: var(--font-size-lg);
    color: var(--text-primary);
    margin: 0 0 var(--spacing-xs);
    font-weight: 600;
}

.guide-card__desc {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: 1.6;
}

.guide-card__arrow {
    color: var(--text-muted);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

/* Section CTA */
.section-cta {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-sm);
    font-weight: 600;
    line-height: 1;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.btn--primary {
    background: var(--gradient-button);
    color: var(--text-primary);
    box-shadow: var(--glow-primary);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn--ghost:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn--large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-base);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.is-open {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: var(--glow-card);
}

.faq-item__trigger {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    width: 100%;
    padding: var(--spacing-xl);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    min-height: 72px;
    transition: all var(--transition-base);
}

.faq-item__trigger:hover {
    background: rgba(139, 92, 246, 0.05);
}

.faq-item__trigger[aria-expanded="true"] {
    background: rgba(139, 92, 246, 0.08);
}

.faq-item__number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-primary-light);
    font-size: var(--font-size-sm);
    font-weight: 700;
    flex-shrink: 0;
}

.faq-item__question {
    flex: 1;
    color: var(--text-primary);
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: 1.4;
}

.faq-item__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__content {
    padding: 0 var(--spacing-xl) var(--spacing-xl) calc(var(--spacing-xl) + 32px + var(--spacing-lg));
}

.faq-item__answer {
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.faq-item__answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: var(--font-size-base);
}

.faq-more {
    text-align: center;
    padding-top: var(--spacing-xl);
}

.faq-more__text {
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-base);
}

/* Contact CTA */
.contact-cta {
    position: relative;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(26, 16, 37, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.contact-cta__bg-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.2) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

.contact-cta__content {
    position: relative;
    z-index: 1;
}

.contact-cta__icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background: var(--gradient-button);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: var(--glow-primary);
}

.contact-cta__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gradient-button);
    animation: contactPulse 2s ease-out infinite;
    opacity: 0;
}

@keyframes contactPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.contact-cta__title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.contact-cta__desc {
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta__note {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-xl);
}

.contact-cta__note svg {
    flex-shrink: 0;
}

/* Contact Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
}

.contact-modal.is-open {
    display: flex;
}

.contact-modal__content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    max-width: 480px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), var(--glow-card);
}

.contact-modal__content::-webkit-scrollbar {
    width: 6px;
}

.contact-modal__content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.contact-modal__content::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.5);
    border-radius: 3px;
}

.contact-modal__close {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-base);
}

.contact-modal__close:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.contact-modal__header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.contact-modal__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--spacing-md);
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-light);
}

.contact-modal__header h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.contact-modal__header p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* Contact Form 7 Styles */
.contact-modal__content .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-modal__content .wpcf7-form p {
    margin: 0;
}

.contact-modal__content .wpcf7-label,
.contact-modal__content .wpcf7-form-control-wrap label {
    display: block;
    margin-bottom: var(--spacing-xs) !important;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-primary);
}

.contact-modal__content .wpcf7-text,
.contact-modal__content .wpcf7-email,
.contact-modal__content .wpcf7-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-primary);
    font-size: var(--font-size-base);
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition-fast);
    box-sizing: border-box;
}

.contact-modal__content .wpcf7-text:focus,
.contact-modal__content .wpcf7-email:focus,
.contact-modal__content .wpcf7-textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.contact-modal__content .wpcf7-text,
.contact-modal__content .wpcf7-email {
    height: 44px;
}

.contact-modal__content .wpcf7-textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-modal__content .wpcf7-submit {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--gradient-button);
    color: var(--text-primary);
    border: none;
    border-radius: var(--radius-full);
    font-size: var(--font-size-base);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--glow-primary);
}

.contact-modal__content .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.contact-modal__content .wpcf7-not-valid-tip {
    color: #ef4444;
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-xs);
}

.contact-modal__content .wpcf7-response-output {
    margin: var(--spacing-md) 0 0 !important;
    padding: var(--spacing-md) !important;
    border-radius: var(--radius-md);
    border: none !important;
    font-size: var(--font-size-sm);
}

.contact-modal__content .wpcf7-mail-sent-ok {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
}

.contact-modal__content .wpcf7-validation-errors,
.contact-modal__content .wpcf7-accept-missing {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

/* Contact Success */
.contact-form__success {
    text-align: center;
    padding: var(--spacing-2xl);
    display: none;
}

.contact-form__success.is-visible {
    display: block;
}

.contact-form__success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

.contact-form__success h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.contact-form__success p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

/* ===================================
   Footer Contrast Fix - WCAG AA 4.5:1
   =================================== */

/* Increase footer link contrast */
.footer-links a {
    color: #D4C5F9;
    transition: color var(--transition-fast);
}

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

/* Increase footer bottom text contrast */
.footer-bottom p {
    color: #C4B5FD;
}

/* Increase footer brand description contrast */
.footer-brand p {
    color: #A78BFA;
}

/* Ensure social icons have good contrast */
.footer-social a {
    color: #C4B5FD;
}

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

/* ===================================
   Checkout Layout Alignment Fix
   =================================== */

/* Force top alignment for both cards in checkout layout */
.checkout-layout > * {
    align-self: start;
}

/* Ensure product card content starts at top */
.checkout-product__card {
    align-self: start;
}

/* Ensure pricing card starts at top */
.checkout-pricing__card {
    align-self: start;
}

/* Remove any top margin from first child elements */
.checkout-product__card > *:first-child,
.checkout-pricing__card > *:first-child {
    margin-top: 0;
}

/* ===================================
   Thank You Page Styles
   =================================== */

/* Hero Section */
.thank-you-hero {
    position: relative;
    padding: calc(var(--header-height) + var(--spacing-3xl)) 0 var(--spacing-3xl);
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    overflow: hidden;
    text-align: center;
}

.thank-you-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.thank-you-hero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    animation: glow-pulse 3s ease-in-out infinite;
}

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

.thank-you-hero__content {
    position: relative;
    z-index: 1;
}

/* Success Icon Animation */
.thank-you__success-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-2xl);
}

.success-circle {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.5);
    animation: success-pop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    z-index: 2;
}

@keyframes success-pop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.success-check {
    width: 60px;
    height: 60px;
    color: white;
}

.success-check__path {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    animation: check-draw 0.4s ease forwards 0.4s;
}

@keyframes check-draw {
    to { stroke-dashoffset: 0; }
}

.success-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid rgba(16, 185, 129, 0.5);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
    z-index: 1;
}

.success-ripple--delay {
    animation-delay: 0.5s;
}

@keyframes ripple {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Title & Subtitle */
.thank-you__title {
    font-size: clamp(var(--font-size-4xl), 5vw, var(--font-size-5xl));
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #FFFFFF 0%, #A7F3D0 50%, #6EE7B7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fade-up 0.6s ease forwards 0.3s;
    opacity: 0;
}

.thank-you__subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    animation: fade-up 0.6s ease forwards 0.5s;
    opacity: 0;
}

@keyframes fade-up {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Content Section */
.thank-you-content {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-dark);
}

.thank-you__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

@media (min-width: 768px) {
    .thank-you__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Cards */
.thank-you__card {
    background: linear-gradient(180deg, rgba(26, 16, 37, 0.8) 0%, rgba(21, 13, 36, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    transition: all var(--transition-base);
}

.thank-you__card:hover {
    border-color: var(--border-light);
    box-shadow: var(--glow-card);
    transform: translateY(-4px);
}

.card__header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.card__icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10B981;
}

.card__icon--email {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3B82F6;
}

.card__icon svg {
    width: 24px;
    height: 24px;
}

.card__title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

/* Order Details */
.order-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.order-detail__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.order-detail__row:last-child {
    border-bottom: none;
}

.order-detail__label {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    font-weight: 500;
}

.order-detail__value {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-primary);
    font-family: 'SF Mono', monospace;
}

.order-detail__value--order {
    color: #10B981;
}

.order-detail__value--amount {
    color: #10B981;
    font-size: var(--font-size-lg);
}

/* Email Info */
.email-info__text {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.email-info__text strong {
    color: var(--text-primary);
}

.email-info__tip {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-md);
}

.email-info__tip-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #3B82F6;
}

.email-info__tip-icon svg {
    width: 100%;
    height: 100%;
}

.email-info__tip p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.email-info__tip a {
    color: #3B82F6;
    text-decoration: underline;
}

.email-info__tip a:hover {
    color: #60A5FA;
}

/* Steps Section */
.thank-you__steps {
    margin-bottom: var(--spacing-3xl);
}

.steps__title {
    text-align: center;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-2xl);
    color: var(--text-primary);
}

/* Steps Grid */
.steps__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 640px) {
    .steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-xl);
    }
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, rgba(26, 16, 37, 0.6) 0%, rgba(21, 13, 36, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
}

.step-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

/* Step number badge */
.step-card__number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: white;
    position: relative;
}

/* Arrow between steps (desktop only) */
@media (min-width: 1024px) {
    .step-card:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -20px;
        top: 40px;
        color: var(--color-primary);
        font-size: 20px;
        font-weight: 700;
        background: none;
        width: auto;
        height: auto;
        transform: none;
    }
    
    .step-card:not(:last-child) .step-card__number::after {
        display: none;
    }
}

.step-card__title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.step-card__desc {
    font-size: var(--font-size-base);
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    max-width: 280px;
}

/* Action Buttons */
.thank-you__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-3xl);
}

@media (min-width: 480px) {
    .thank-you__actions {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-thank-you {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    text-decoration: none;
    min-width: 200px;
}

.btn-thank-you--primary {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-thank-you--primary:hover {
    background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
    color: white;
}

.btn-thank-you--secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-thank-you--secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--color-primary);
    color: var(--text-primary);
}

.btn__icon {
    width: 20px;
    height: 20px;
}

/* Support Section */
.thank-you__support {
    display: flex;
    justify-content: center;
}

.support-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl) var(--spacing-2xl);
    background: linear-gradient(135deg, rgba(26, 16, 37, 0.4) 0%, rgba(21, 13, 36, 0.6) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 100%;
}

.support-card__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.support-card__icon svg {
    width: 28px;
    height: 28px;
}

.support-card__title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-xs);
}

.support-card__text {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.support-card__text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.support-card__text a:hover {
    color: var(--color-primary-light);
}

@media (max-width: 640px) {
    .support-card {
        flex-direction: column;
        text-align: center;
    }
    
    .thank-you__success-icon {
        width: 100px;
        height: 100px;
    }
    
    .success-check {
        width: 50px;
        height: 50px;
    }
    
    .thank-you__card {
        padding: var(--spacing-xl);
    }
    
    .step-card {
        padding: var(--spacing-lg);
    }
}
