/* ============================================================
   Assisting AI - Website Styles
   3D Graphics · Glassmorphism · Vibrant Colors · SEO-optimized
   ============================================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --primary-glow: rgba(124, 58, 237, 0.5);
    --secondary: #06b6d4;
    --secondary-glow: rgba(6, 182, 212, 0.4);
    --accent: #f59e0b;
    --accent-glow: rgba(245, 158, 11, 0.4);
    --bg: #09090f;
    --bg-card: rgba(20, 20, 35, 0.7);
    --bg-card-solid: #14141f;
    --bg-card-hover: rgba(35, 35, 55, 0.8);
    --text: #ededf0;
    --text-muted: #b0b0c0;
    --text-heading: #ffffff;
    --border: rgba(124, 58, 237, 0.18);
    --border-glow: rgba(124, 58, 237, 0.35);
    --success: #22c55e;
    --warning: #eab308;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.15);
    --max-width: 1200px;
    --glass-bg: rgba(20, 20, 35, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Ambient mesh gradient background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(124, 58, 237, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 90% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
}

a:hover {
    color: #c4b5fd;
    text-shadow: 0 0 8px rgba(124, 58, 237, 0.4);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   NAVIGATION - Frosted glass
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(9, 9, 15, 0.85);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--glass-border);
    padding: 14px 0;
    transition: box-shadow 0.3s;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    transition: transform 0.3s;
}

.nav-logo:hover {
    transform: scale(1.03);
    color: var(--text-heading);
}

.logo-img {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.4));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s, text-shadow 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-heading);
    text-shadow: 0 0 12px rgba(124, 58, 237, 0.3);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
    border-radius: 2px;
}

/* ============================================================
   BUTTONS - 3D with glow, depth & shimmer
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    border: 2px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #9333ea);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}

/* Shimmer sweep effect */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #7c3aed);
    color: white;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5), 0 0 60px rgba(124, 58, 237, 0.15);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border-glow);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(124, 58, 237, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* ============================================================
   HERO - 3D perspective + floating orbs
   ============================================================ */
.hero {
    padding: 140px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Animated background orbs */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 70%);
    top: -100px;
    left: -200px;
    border-radius: 50%;
    filter: blur(80px);
    animation: float-orb 8s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15), transparent 70%);
    bottom: -100px;
    right: -150px;
    border-radius: 50%;
    filter: blur(80px);
    animation: float-orb 10s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.15));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.1);
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.1); }
    50% { box-shadow: 0 0 30px rgba(124, 58, 237, 0.25); }
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e0d4ff 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-subtitle strong {
    color: var(--secondary);
    font-weight: 700;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 24px;
}

.proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-heading), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
}

/* ============================================================
   APP MOCKUP - 3D perspective + floating animation
   ============================================================ */
.hero-visual {
    perspective: 1000px;
}

.app-mockup {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(124, 58, 237, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: rotateY(-5deg) rotateX(3deg);
    transition: transform 0.6s cubic-bezier(.4,0,.2,1), box-shadow 0.6s;
    animation: mockup-float 6s ease-in-out infinite;
}

.app-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg) translateY(-8px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(124, 58, 237, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@keyframes mockup-float {
    0%, 100% { transform: rotateY(-5deg) rotateX(3deg) translateY(0); }
    50% { transform: rotateY(-5deg) rotateX(3deg) translateY(-12px); }
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--glass-border);
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 6px currentColor;
}

.mockup-dot.red { background: #ff5f57; color: #ff5f57; }
.mockup-dot.yellow { background: #febc2e; color: #febc2e; }
.mockup-dot.green { background: #28c840; color: #28c840; }

.mockup-title {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-left: 8px;
}

.mockup-body {
    padding: 20px;
}

.mockup-transcription,
.mockup-response {
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    position: relative;
}

.mockup-transcription {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(124, 58, 237, 0.04));
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-left: 3px solid var(--primary);
}

.mockup-response {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.04));
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-left: 3px solid var(--success);
}

.mockup-body .label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mockup-body p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.mockup-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-top: 8px;
    border-top: 1px solid var(--glass-border);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(34, 197, 94, 0.6); }
    50% { opacity: 0.5; box-shadow: 0 0 20px rgba(34, 197, 94, 0.8); }
}

/* ============================================================
   SECTIONS - Common
   ============================================================ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-heading);
    text-align: center;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* ============================================================
   PROBLEM CARDS - 3D tilt + gradient border hover
   ============================================================ */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}

/* Gradient border glow on hover */
.problem-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-card:hover {
    transform: translateY(-6px) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(124, 58, 237, 0.1);
}

.problem-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.3));
}

.problem-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* ============================================================
   FEATURES GRID - Glass cards with 3D hover
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}

/* Corner gradient shimmer */
.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06), transparent 60%);
    transition: opacity 0.4s;
    opacity: 0;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(124, 58, 237, 0.08);
}

.feature-highlight {
    grid-column: span 3;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(6, 182, 212, 0.05));
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.06);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.3));
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    position: relative;
    z-index: 1;
}

/* ============================================================
   STEPS - 3D numbered badges with glow ring
   ============================================================ */
.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    justify-content: center;
}

.step-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px 24px;
    flex: 1;
    max-width: 260px;
    text-align: center;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(124, 58, 237, 0.1);
    border-color: var(--border-glow);
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-weight: 800;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: -1;
    opacity: 0.3;
    filter: blur(6px);
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.step-arrow {
    color: var(--primary-light);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 60px;
    text-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}

/* ============================================================
   COMPARISON TABLE - Glass with highlight glow
   ============================================================ */
.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.92rem;
}

.comparison-table th {
    background: rgba(0, 0, 0, 0.4);
    font-weight: 700;
    color: var(--text-heading);
}

.comparison-table .highlight-col {
    background: rgba(124, 58, 237, 0.08);
    color: var(--text-heading);
    font-weight: 500;
}

.comparison-table th.highlight-col {
    background: linear-gradient(135deg, var(--primary), #9333ea);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.comparison-table tr:hover td {
    background: rgba(124, 58, 237, 0.04);
}

.comparison-table tr:hover td.highlight-col {
    background: rgba(124, 58, 237, 0.12);
}

/* ============================================================
   PRICING - 3D cards with perspective + animated glow
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    perspective: 1200px;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.5s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}

/* Animated gradient border ring on hover */
.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(6, 182, 212, 0.2), rgba(124, 58, 237, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(124, 58, 237, 0.1);
}

/* Popular card - always glowing */
.pricing-popular {
    border-color: var(--primary);
    position: relative;
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(124, 58, 237, 0.2), 0 20px 50px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(20, 20, 35, 0.8));
}

.pricing-popular::before {
    opacity: 1 !important;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 200%;
    animation: gradient-rotate 3s linear infinite;
}

@keyframes gradient-rotate {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.pricing-popular:hover {
    transform: scale(1.05) translateY(-8px) rotateX(2deg);
    box-shadow: 0 0 80px rgba(124, 58, 237, 0.3), 0 30px 60px rgba(0, 0, 0, 0.4);
}

.pricing-badge {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.pricing-popular .pricing-badge {
    background: linear-gradient(135deg, var(--primary), #9333ea);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.pricing-price {
    margin-bottom: 4px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-light);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-period {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* ============================================================
   TESTIMONIALS - Glass cards with quote decoration
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    position: relative;
}

/* Quote decoration */
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(124, 58, 237, 0.12);
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(124, 58, 237, 0.06);
    border-color: var(--border-glow);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 16px;
    text-shadow: 0 0 10px var(--accent-glow);
}

.testimonial-card > p {
    font-size: 0.95rem;
    color: var(--text);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author strong {
    display: block;
    color: var(--text-heading);
    font-size: 0.9rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ============================================================
   FAQ - Glowing accordion
   ============================================================ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
}

.faq-item:hover {
    border-color: var(--border-glow);
}

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.1);
}

.faq-item summary {
    padding: 18px 24px;
    font-weight: 600;
    color: var(--text-heading);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-item summary:hover {
    background: rgba(124, 58, 237, 0.06);
}

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 300;
    transition: transform 0.3s, color 0.3s;
    text-shadow: 0 0 8px rgba(124, 58, 237, 0.3);
}

.faq-item[open] summary::after {
    content: '\2212';
    color: var(--secondary);
}

.faq-item p {
    padding: 0 24px 18px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============================================================
   CTA SECTION - Vibrant gradient + 3D orb
   ============================================================ */
.section-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(6, 182, 212, 0.08), rgba(124, 58, 237, 0.05));
    border-top: 1px solid rgba(124, 58, 237, 0.25);
    border-bottom: 1px solid rgba(124, 58, 237, 0.25);
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.section-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.section-cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

/* ============================================================
   FOOTER - Gradient top border
   ============================================================ */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid transparent;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, var(--primary), var(--secondary), var(--primary), transparent 90%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-brand .logo-img {
    height: 28px;
    filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.3));
}

.footer-brand .logo-text {
    font-size: 1.2rem;
    color: var(--text-heading);
}

.footer-brand p {
    margin-top: 12px;
    line-height: 1.6;
}

.footer-parent {
    margin-top: 16px !important;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-parent a {
    color: var(--primary-light);
    font-weight: 600;
}

.footer-links h4 {
    color: var(--text-heading);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    font-size: 0.88rem;
    padding: 4px 0;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
    text-shadow: 0 0 8px rgba(124, 58, 237, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-bottom a {
    color: var(--primary-light);
}

/* ============================================================
   DECORATIVE 3D ORBS between sections
   ============================================================ */
.section-problem,
.section-features,
.section-comparison,
.section-pricing,
.section-testimonials,
.section-faq {
    position: relative;
}

.section-problem::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08), transparent 70%);
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.section-features::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08), transparent 70%);
    left: -150px;
    top: 30%;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.section-pricing::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06), transparent 70%);
    right: -100px;
    bottom: 20%;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-proof {
        justify-content: center;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .app-mockup {
        transform: none;
        animation: none;
    }

    .app-mockup:hover {
        transform: translateY(-8px);
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-highlight {
        grid-column: span 2;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(9, 9, 15, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--glass-border);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .problem-grid,
    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .feature-highlight {
        grid-column: span 1;
    }

    .pricing-popular {
        transform: none;
    }

    .pricing-popular:hover {
        transform: translateY(-4px);
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin-top: 0;
    }

    .step-card {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
        font-size: 0.82rem;
    }

    /* Reduce orb sizes on mobile for perf */
    .hero::before, .hero::after,
    .section-problem::after,
    .section-features::before,
    .section-pricing::after {
        width: 200px;
        height: 200px;
    }
}

/* ============================================================
   BLOG STYLES
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(124, 58, 237, 0.1);
    border-color: var(--border-glow);
}

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
}

.blog-card-img-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(6,182,212,0.08));
    border-bottom: 1px solid var(--glass-border);
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-tag {
    padding: 3px 10px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-light);
}

.blog-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-body h3 a {
    color: var(--text-heading);
    transition: color 0.3s;
}

.blog-card-body h3 a:hover {
    color: var(--primary-light);
}

.blog-card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.blog-read-more {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s, color 0.3s;
}

.blog-read-more:hover {
    gap: 10px;
    color: #c4b5fd;
}

/* Blog Article Content */
.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 48px;
}

.article-header h1 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-meta {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.88rem;
    flex-wrap: wrap;
}

.article-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 40px 0 16px;
    padding-left: 16px;
    border-left: 3px solid var(--primary);
}

.article-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 28px 0 12px;
}

.article-body p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

.article-body ul, .article-body ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.article-body li {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.article-body strong {
    color: var(--text-heading);
}

.article-body a {
    color: var(--primary-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-body blockquote {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin: 24px 0;
    font-style: italic;
    color: var(--text-muted);
}

.article-cta {
    background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(6,182,212,0.08));
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    margin: 48px 0;
}

.article-cta h3 {
    margin-bottom: 12px !important;
}

.article-cta p {
    margin-bottom: 20px !important;
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.about-stat {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.about-stat:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-stat .stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-heading), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.about-value-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
}

.about-value-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2), 0 0 20px rgba(124,58,237,0.08);
}

.about-value-card .value-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px rgba(124,58,237,0.3));
}

.about-value-card h3 {
    color: var(--text-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .article-header h1 {
        font-size: 1.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-values {
        grid-template-columns: 1fr;
    }
}
