/* 
 * Jekyll Theme Maker - Design System
 * Aesthetic: Human-Touch, Dark Mode, Glassmorphism 
 */

 :root {
    --bg-base: #0a0a0b;
    --text-primary: #ededed;
    --text-secondary: #d1d1d6;
    
    /* Brand Gradients */
    /* Brand Gradients - Brightened for Accessibility (Contrast) */
    --gradient-primary: linear-gradient(135deg, #818cf8, #c084fc);
    --gradient-primary-hover: linear-gradient(135deg, #a5b4fc, #d8b4fe);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.background-wrapper {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
}

/* Background Blobs for Organic feel */
.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    border-radius: 50%;
    animation: drift 20s infinite alternate ease-in-out;
}
.blob-1 {
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: #6366f1;
}
.blob-2 {
    top: 300px;
    right: -150px;
    width: 350px;
    height: 350px;
    background: #a855f7;
    animation-delay: -10s;
}

/* Animations */
@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

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

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

.slide-down { animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.fade-in-up { animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

.stagger > * {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.stagger > *:nth-child(1) { animation-delay: 0.2s; }
.stagger > *:nth-child(2) { animation-delay: 0.4s; }

.stagger-delayed {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

.fly-in {
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

.float-anim {
    animation: float 6s ease-in-out infinite;
    transform-origin: center center;
}

.pulse-glow {
    animation: pulseGlow 2s infinite;
}

.pulse-btn {
    animation: pulseGlow 2s infinite;
}
.pulse-btn:hover {
    animation: none;
}

/* Interactive elements */
.interactive-card {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease;
}
.interactive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(168, 85, 247, 0.3);
    border-color: rgba(168, 85, 247, 0.3);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}
.hover-glow:hover {
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.15);
}

.hover-scale {
    transition: transform 0.2s ease, background 0.2s ease;
}
.hover-scale:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,0.1);
    cursor: pointer;
}

.rotate-hover {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.interactive-card:hover .rotate-hover {
    transform: rotate(10deg) scale(1.1);
}

/* Type */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.1;
    font-weight: 700;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Glass Panels */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}
.btn-primary:hover {
    background: var(--gradient-primary-hover);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid var(--glass-border);
}
.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* Header */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 10, 11, 0.7);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.logo-mark {
    background: var(--gradient-primary);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}
.nav-links a:hover {
    color: white;
}
.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    text-align: center;
}

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

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(99, 102, 241, 0.1);
    color: #a5b4fc;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.headline {
    font-size: 4rem;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.subheadline {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.social-proof-small {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Fake App Preview */
.hero-image-wrapper {
    margin-top: 80px;
    perspective: 1200px;
}

.app-preview {
    margin: 0 auto;
    max-width: 900px;
    height: 500px;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--glass-border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.app-header {
    height: 48px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    padding: 0 16px;
    background: rgba(255,255,255,0.02);
}

.dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3f3f46;
    margin-right: 6px;
}
.url-bar {
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    padding: 4px 60px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.app-body {
    display: flex;
    flex: 1;
}

.sidebar {
    width: 200px;
    border-right: 1px solid var(--glass-border);
    padding: 20px;
}

.block-item {
    padding: 10px;
    background: rgba(255,255,255,0.05);
    margin-bottom: 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    text-align: left;
    color: var(--text-secondary);
}

.canvas {
    flex: 1;
    padding: 40px;
    background: #fff;
    color: #111;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

.canvas-element {
    margin-bottom: 16px;
    border: 2px dashed #a855f7;
    padding: 8px;
    border-radius: 4px;
    position: relative;
    cursor: grab;
    transition: all 0.2s ease;
}
.canvas-element:hover {
    background: rgba(168, 85, 247, 0.05);
}
.canvas-element::after {
    content: "Edit";
    position: absolute;
    top: -10px;
    right: 10px;
    background: #a855f7;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.2s;
}
.canvas-element:hover::after {
    opacity: 1;
}
.canvas .title { font-size: 2.5rem; font-weight: bold; border-color: transparent;}
.canvas .title:hover { border-color: #a855f7; }
.canvas .p { font-size: 1rem; color: #444; border-color: transparent; }
.canvas .btn-fake { background: #111; color: #fff; padding: 12px 24px; border-radius: 6px; display: inline-block; border: none;}

/* Logos / Trusted By */
.trusted-by {
    padding: 40px 0 80px;
    text-align: center;
    color: var(--text-secondary);
}
.trusted-by p { margin-bottom: 24px; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; }
.logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-weight: 600;
    opacity: 0.5;
    font-size: 1.25rem;
}
.logo-txt {
    transition: opacity 0.2s, transform 0.2s;
    cursor: default;
}
.logo-txt:hover {
    opacity: 1;
    transform: scale(1.05);
    color: white;
}

/* Features */
.features {
    padding: 80px 0;
}
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}
.section-header h2 { font-size: 2.5rem; margin-bottom: 16px; }

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

.feature-card {
    padding: 32px;
}
.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

/* Compare Table */
.comparison { padding: 80px 0; }
.compare-table {
    padding: 24px;
}
.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 16px;
    border-bottom: 1px solid var(--glass-border);
    transition: background 0.2s ease;
}
.table-row:hover:not(.table-header) {
    background: rgba(255,255,255,0.03);
}
.table-row:last-child { border-bottom: none; }
.table-header {
    font-weight: bold;
    color: white;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}
.bold { font-weight: bold; }
.col-us, .col-competitor, .col-wp { text-align: center; }

/* Pricing */
.pricing { padding: 80px 0; }
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.price-card {
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.price-card.popular {
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.1);
}
.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}
.price { margin: 24px 0 16px; }
.price .amount { font-size: 3rem; font-weight: 800; font-family: var(--font-heading); color: white; }
.price .currency, .price .period {  color: var(--text-secondary); font-size: 1rem; }
.pricing-cards .description { margin-bottom: 32px; font-size: 0.95rem; }
.features-list {
    list-style: none;
    margin-bottom: 40px;
    flex: 1;
}
.features-list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
}
.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #a855f7;
    font-weight: bold;
}

/* Single CTA */
.final-cta { padding: 80px 0 120px; text-align: center; }
.cta-box { padding: 60px 40px; max-width: 800px; margin: 0 auto; }
.cta-box h2 { font-size: 2.5rem; margin-bottom: 16px; }
.cta-box p { margin-bottom: 32px; font-size: 1.1rem; }

/* Legal Pages Typography */
.legal-page {
    padding: 160px 24px 80px;
    max-width: 800px;
}
.legal-page h1 { font-size: 3rem; margin-bottom: 40px; }
.legal-page h2 { font-size: 1.5rem; margin-top: 40px; margin-bottom: 16px; color: white; }
.legal-page p { margin-bottom: 16px; font-size: 1.05rem; }
.legal-page ul { margin-left: 24px; margin-bottom: 24px; color: var(--text-secondary); }
.legal-page li { margin-bottom: 8px; }
.legal-page strong { color: white; }


/* Footer */
.site-footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand .brand-desc {
    margin-top: 16px;
    font-size: 0.95rem;
}
.footer-links h4 {
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: white;
}
.footer-links ul { list-style: none; }
.footer-links a { font-size: 0.9rem; color: var(--text-secondary); line-height: 2; }
.footer-links a:hover { color: white; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.legal-links {
    display: flex;
    gap: 24px;
    list-style: none;
}
.legal-links a {
    color: var(--text-secondary);
    transition: color 0.2s;
}
.legal-links a:hover {
    color: white;
}

/* Scroll-triggered animations */
.slide-up-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-up-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Hamburger Button */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
}
.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(10, 10, 11, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-nav.open {
    opacity: 1;
    pointer-events: all;
}
.mobile-nav ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-nav ul a {
    font-size: 1.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-secondary);
    padding: 8px 24px;
    display: block;
    transition: color 0.2s;
}
.mobile-nav ul a:hover {
    color: white;
}
.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-nav-cta {
    font-size: 1.1rem;
    padding: 14px 40px;
}

/* Footer grid update (4 columns) */
.footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
}

/* Post layout */
.post-container {
    padding-top: 120px;
    padding-bottom: 80px;
}
.post-header {
    max-width: 760px;
    margin: 0 auto 60px;
    padding-top: 40px;
}
.post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}
.post-back {
    color: #818cf8;
    font-weight: 500;
}
.post-back:hover { color: #a5b4fc; }
.post-date { color: var(--text-secondary); }
.post-category {
    background: rgba(99, 102, 241, 0.1);
    color: #a5b4fc;
    padding: 2px 10px;
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.post-title {
    font-size: 2.75rem;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.post-description {
    font-size: 1.2rem;
    line-height: 1.6;
}
.post-body {
    max-width: 760px;
    margin: 0 auto 80px;
    font-size: 1.05rem;
    line-height: 1.8;
}
.post-body h2 { font-size: 1.75rem; margin: 48px 0 16px; color: white; }
.post-body h3 { font-size: 1.35rem; margin: 32px 0 12px; color: white; }
.post-body p { margin-bottom: 20px; }
.post-body ul, .post-body ol { margin: 0 0 20px 24px; color: var(--text-secondary); }
.post-body li { margin-bottom: 8px; }
.post-body strong { color: white; }
.post-body a { color: #818cf8; border-bottom: 1px solid rgba(129, 140, 248, 0.3); }
.post-body a:hover { color: #a5b4fc; }
.post-body code {
    background: rgba(255,255,255,0.06);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #c084fc;
}
.post-body pre {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 20px;
    overflow-x: auto;
    margin-bottom: 24px;
}
.post-body pre code { background: none; padding: 0; }
.post-cta {
    max-width: 760px;
    margin: 0 auto 80px;
}
.post-related {
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 80px;
}
.post-related h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}
.related-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.related-card:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 85, 247, 0.3);
    color: white;
}
.related-card h4 { font-size: 1rem; color: white; line-height: 1.4; }
.related-category {
    font-size: 0.75rem;
    color: #a5b4fc;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.related-date { font-size: 0.8rem; color: var(--text-secondary); margin-top: auto; }

/* Responsive */
@media (max-width: 768px) {
    .headline { font-size: 2.5rem; }
    .hero { padding: 120px 0 60px; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .table-row {
        grid-template-columns: 1fr;
        gap: 8px;
        border-bottom: 2px solid var(--glass-border);
    }
    .col-us, .col-competitor, .col-wp { text-align: left; }
    .table-header { display: none; }
    .col-feature { font-weight: bold; color: white; margin-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 4px;}
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .post-title { font-size: 2rem; }
}

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

/* Demo Section */
.demo-section { padding: 80px 0; }
.demo-frame {
    aspect-ratio: 16 / 9;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.demo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(255,255,255,0.02);
}
.demo-play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
}
.demo-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(99, 102, 241, 0.1);
}
.demo-play-btn svg { margin-left: 4px; }
.demo-caption { font-size: 0.9rem; color: var(--text-secondary); }

/* Testimonials */
.testimonials { padding: 80px 0; }
.testimonial-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.testimonial-card blockquote p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; color: white; }
.testimonial-author span { font-size: 0.85rem; color: var(--text-secondary); }

/* FAQ */
.faq-section { padding: 80px 0; }
.faq-list { padding: 8px 0; }
.faq-item {
    border-bottom: 1px solid var(--glass-border);
    padding: 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-secondary);
    transition: transform 0.3s ease, color 0.2s;
    flex-shrink: 0;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: #818cf8;
}
.faq-item summary:hover { color: #a5b4fc; }
.faq-item > p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}
.faq-item > p code {
    background: rgba(255,255,255,0.06);
    padding: 1px 5px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #c084fc;
}

/* Newsletter */
.newsletter-section { padding: 60px 0; }
.newsletter-box {
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.newsletter-copy h2 { font-size: 1.75rem; margin-bottom: 8px; }
.newsletter-copy p { font-size: 0.95rem; }
.newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.newsletter-form input[type="email"] {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 0.95rem;
    min-width: 260px;
    outline: none;
    transition: border-color 0.2s;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input[type="email"]:focus { border-color: #818cf8; }
.newsletter-success {
    font-size: 0.95rem;
    color: #86efac;
    padding: 12px 0;
}
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Cross-sell */
.cross-sell { padding: 40px 0 80px; }
.cross-sell-box {
    background: linear-gradient(135deg, rgba(190, 24, 93, 0.08), rgba(219, 39, 119, 0.04));
    border: 1px solid rgba(219, 39, 119, 0.25);
    border-radius: 20px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.cross-sell-glow {
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: rgba(219, 39, 119, 0.15);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}
.cross-sell-copy { flex: 1; min-width: 280px; position: relative; }
.cross-sell-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #f472b6;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.cross-sell-tag {
    background: #db2777;
    color: white;
    padding: 1px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
}
.cross-sell-copy h2 { font-size: 2rem; margin-bottom: 12px; }
.cross-sell-copy p { font-size: 1rem; max-width: 540px; line-height: 1.6; }
.cross-sell-copy strong { color: #f9a8d4; }
.btn-pink {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: #db2777;
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 20px rgba(219, 39, 119, 0.3);
    position: relative;
    flex-shrink: 0;
}
.btn-pink:hover {
    background: #be185d;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(219, 39, 119, 0.4);
    color: white;
}

/* Responsive additions */
@media (max-width: 768px) {
    .newsletter-box { flex-direction: column; align-items: flex-start; }
    .newsletter-form { width: 100%; }
    .newsletter-form input[type="email"] { min-width: 0; width: 100%; }
    .cross-sell-box { padding: 32px 24px; }
    .cross-sell-copy h2 { font-size: 1.5rem; }
    .demo-frame { aspect-ratio: 4 / 3; }
}

/* Contact Modal */
.contact-modal {
    border: none;
    background: transparent;
    padding: 0;
    max-width: 480px;
    width: calc(100% - 32px);
    margin: auto;
}
.contact-modal::backdrop {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}
.contact-modal-box {
    padding: 32px;
    position: relative;
}
.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: color 0.2s, border-color 0.2s;
}
.modal-close-btn:hover { color: white; border-color: rgba(255,255,255,0.3); }
.contact-modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: white;
}
.contact-modal-intro {
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: white; }
.form-field input,
.form-field textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 10px 14px;
    color: white;
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-field input:focus,
.form-field textarea:focus { border-color: #818cf8; }
.form-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.85rem;
    color: #fca5a5;
}
.contact-success {
    text-align: center;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.contact-success h4 { font-size: 1.2rem; color: white; }
.contact-success p { font-size: 0.9rem; }
.contact-success strong { color: white; }
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: transparent;
    cursor: pointer;
    z-index: -1;
}
.modal-backdrop button { opacity: 0; position: absolute; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .blob, .float-anim, .pulse-glow, .pulse-btn, .slide-down,
    .fade-in-up, .stagger > *, .stagger-delayed, .fly-in {
        animation: none !important;
    }
    .slide-up-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .interactive-card, .hover-scale, .btn {
        transition: none !important;
    }
}
