/* ============================================================
   Assisting AI - Website Styles
   Clean · White · Burgundy & Teal accent · Professional
   ============================================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B1E3F;
    --primary-dark: #6E1732;
    --primary-light: #A83A5B;
    --primary-glow: rgba(139, 30, 63, 0.12);
    --secondary: #0D9488;
    --secondary-glow: rgba(13, 148, 136, 0.1);
    --accent: #f59e0b;
    --accent-glow: rgba(245, 158, 11, 0.1);
    --bg: #ffffff;
    --bg-card: #ffffff;
    --bg-card-solid: #f8fafc;
    --bg-card-hover: #f1f5f9;
    --text: #334155;
    --text-muted: #64748b;
    --text-heading: #0f172a;
    --border: #e2e8f0;
    --border-glow: rgba(139, 30, 63, 0.3);
    --success: #22c55e;
    --warning: #eab308;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
    --shadow-glow: 0 0 20px rgba(139, 30, 63, 0.06);
    --max-width: 1200px;
    --glass-bg: #ffffff;
    --glass-border: #e2e8f0;
}

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;
}

/* Subtle background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(139, 30, 63, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 90% 80%, rgba(13, 148, 136, 0.02) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--primary-dark);
}

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(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--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;
}

.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;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-heading);
}

.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-heading);
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 2px;
    transform-origin: center;
}

/* Hamburger → X when menu open */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   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: var(--primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(139, 30, 63, 0.25);
}

/* 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.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(139, 30, 63, 0.35);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(139, 30, 63, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--text-heading);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(139, 30, 63, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 30, 63, 0.1);
}

.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;
}

/* Subtle background accent */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 30, 63, 0.06), transparent 70%);
    top: -100px;
    left: -200px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: float-orb 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.04), transparent 70%);
    bottom: -100px;
    right: -150px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: float-orb 26s ease-in-out infinite reverse;
}

@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: rgba(139, 30, 63, 0.06);
    border: 1px solid rgba(139, 30, 63, 0.15);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 600;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.15;
    margin-bottom: 20px;
}

.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-video {
    margin-top: 24px;
    display: flex;
    justify-content: flex-start;
}

.hero-video iframe {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* ============================================================
   APP MOCKUP - 3D perspective + floating animation
   ============================================================ */
.hero-visual {
    perspective: 1000px;
}

.app-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    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 20px 60px rgba(0, 0, 0, 0.1);
}

@keyframes mockup-float {
    0%, 100% { transform: rotateY(-5deg) rotateX(3deg) translateY(0); }
    50% { transform: rotateY(-5deg) rotateX(3deg) translateY(-12px); }
}

/* ============================================================
   DESIGN PASS — animated hero sheen, 3D card tilt, scroll reveals
   (CSS-only; JS in main.js just toggles classes / sets --rx/--ry)
   ============================================================ */

/* Slow drifting gradient sheen behind the hero (very subtle) */
.hero {
    background-image:
        radial-gradient(1200px 600px at 15% 12%, rgba(139, 30, 63, 0.05), transparent 60%),
        radial-gradient(1000px 520px at 85% 88%, rgba(13, 148, 136, 0.045), transparent 60%);
    background-size: 200% 200%;
    animation: hero-sheen 24s ease-in-out infinite;
}
@keyframes hero-sheen {
    0%, 100% { background-position: 0% 50%, 100% 50%; }
    50%      { background-position: 100% 50%, 0% 50%; }
}

/* Interactive 3D tilt — JS sets --rx / --ry on pointer move */
.card-3d {
    transform-style: preserve-3d;
    will-change: transform;
}
.card-3d.tilting {
    transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-6px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.2s ease;
}

/* Scroll reveal (class added by JS so no-JS users see everything) */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(.4,0,.2,1), transform 0.6s cubic-bezier(.4,0,.2,1);
    will-change: opacity, transform;
}
.reveal.in-view {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .hero { animation: none; }
    .hero::before, .hero::after { animation: none; }
    .app-mockup { animation: none; }
    .card-3d.tilting { transform: translateY(-6px); }
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-card-solid);
    border-bottom: 1px solid var(--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: rgba(139, 30, 63, 0.04);
    border: 1px solid rgba(139, 30, 63, 0.12);
    border-left: 3px solid var(--primary);
}

.mockup-response {
    background: rgba(34, 197, 94, 0.04);
    border: 1px solid rgba(34, 197, 94, 0.12);
    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;
}

.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(--bg-card);
    border: 1px solid var(--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);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.problem-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.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(--bg-card);
    border: 1px solid var(--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(139, 30, 63, 0.03), 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);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.feature-highlight {
    grid-column: span 3;
    background: rgba(139, 30, 63, 0.03);
    border-color: rgba(139, 30, 63, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.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(--bg-card);
    border: 1px solid var(--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 12px 32px rgba(0, 0, 0, 0.06);
    border-color: var(--border-glow);
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    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 12px rgba(139, 30, 63, 0.25);
    position: relative;
}

.step-number::after {
    display: none;
}

.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);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 60px;
}

/* ============================================================
   PLATFORM LOGOS - Brand icon grid
   ============================================================ */
.platform-verified {
    font-size: 0.82rem;
    color: var(--accent);
    margin-bottom: 36px;
    opacity: 0.85;
    letter-spacing: 0.01em;
}

.platform-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px 32px;
}

.platform-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: default;
}

.platform-logo-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.platform-logo-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.platform-logo-item:hover .platform-logo-icon {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 6px 20px rgba(0,0,0,0.28);
}

.platform-logo-item span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
}

@media (max-width: 480px) {
    .platform-logos { gap: 20px 20px; }
    .platform-logo-icon { width: 48px; height: 48px; }
}

/* ============================================================
   COMPARISON TABLE - Glass with highlight glow
   ============================================================ */
.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* Fade hint to show there's more content to scroll on mobile */
    background-image: linear-gradient(to right, white, white),
                      linear-gradient(to right, white, white),
                      linear-gradient(to right, rgba(0,0,0,0.06), transparent),
                      linear-gradient(to left,  rgba(0,0,0,0.06), transparent);
    background-position: left center, right center, left center, right center;
    background-repeat: no-repeat;
    background-color: white;
    background-size: 20px 100%, 20px 100%, 10px 100%, 10px 100%;
    background-attachment: local, local, scroll, scroll;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
}

.comparison-table th {
    background: var(--bg-card-solid);
    font-weight: 700;
    color: var(--text-heading);
}

.comparison-table .highlight-col {
    background: rgba(139, 30, 63, 0.04);
    color: var(--text-heading);
    font-weight: 500;
}

.comparison-table th.highlight-col {
    background: var(--primary);
    color: white;
}

.comparison-table tr:hover td {
    background: var(--bg-card-solid);
}

.comparison-table tr:hover td.highlight-col {
    background: rgba(139, 30, 63, 0.06);
}

/* ============================================================
   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(--bg-card);
    border: 1px solid var(--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;
}

.pricing-card::before {
    display: none;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

/* Popular card */
.pricing-popular {
    border-color: var(--primary);
    position: relative;
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(139, 30, 63, 0.1);
    background: rgba(139, 30, 63, 0.02);
}

.pricing-popular:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 16px 48px rgba(139, 30, 63, 0.15);
}

.pricing-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(139, 30, 63, 0.06);
    border: 1px solid rgba(139, 30, 63, 0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.pricing-popular .pricing-badge {
    background: var(--primary);
    border-color: transparent;
    color: white;
    box-shadow: 0 2px 8px rgba(139, 30, 63, 0.3);
}

.pricing-price {
    margin-bottom: 4px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-heading);
}

.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 var(--border);
}

.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(--bg-card);
    border: 1px solid var(--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(139, 30, 63, 0.08);
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 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(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--bg-card);
}

.faq-item:hover {
    border-color: var(--border-glow);
}

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(139, 30, 63, 0.06);
}

.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(139, 30, 63, 0.03);
}

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 300;
    transition: transform 0.3s, color 0.3s;
}

.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: var(--bg-card-solid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 30, 63, 0.04), 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;
    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 var(--border);
    background: var(--bg-card-solid);
    position: relative;
}

.footer::before {
    display: none;
}

.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;
}

.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 var(--border);
}

.footer-parent a {
    color: var(--primary);
    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);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-bottom a {
    color: var(--primary);
}

/* ============================================================
   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(139, 30, 63, 0.04), 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(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a::after {
        display: none;
    }

    /* Adjust badge position for mobile stacked nav */
    .nav-badge-new {
        position: static;
        display: inline-block;
        margin-left: 6px;
        vertical-align: middle;
    }

    .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(--bg-card);
    border: 1px solid var(--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 12px 32px rgba(0, 0, 0, 0.06);
    border-color: var(--border-glow);
}

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--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(139, 30, 63, 0.06), rgba(13, 148, 136, 0.04));
    border-bottom: 1px solid var(--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(139, 30, 63, 0.08);
    border: 1px solid rgba(139, 30, 63, 0.15);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

.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);
}

.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);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s, color 0.3s;
}

.blog-read-more:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* 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;
    color: var(--text-heading);
}

.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);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-body blockquote {
    background: var(--bg-card-solid);
    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: var(--bg-card-solid);
    border: 1px solid var(--border);
    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(--bg-card);
    border: 1px solid var(--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 8px 24px rgba(0, 0, 0, 0.06);
}

.about-stat .stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.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(--bg-card);
    border: 1px solid var(--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 12px 32px rgba(0, 0, 0, 0.06);
}

.about-value-card .value-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.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;
    }
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #8B1E3F, #0D9488);
    color: #fff;
    text-align: center;
    padding: 10px 48px 10px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    z-index: 1002;
}

/* Strikethrough original price row */
.price-was-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    justify-content: center;
}
.price-was-row del {
    color: var(--text-muted);
    font-size: 1.05rem;
    opacity: 0.75;
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    text-decoration-thickness: 2px;
}
.price-now-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
}
.discount-tag {
    background: #ef4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.announcement-bar strong { font-weight: 700; }
.announcement-close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.7;
    padding: 4px 6px;
    line-height: 1;
}
.announcement-close:hover { opacity: 1; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}
.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
    padding: 12px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.stat-suffix {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-left: 2px;
}
.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}
@media (max-width: 640px) {
    .stat-item { padding: 10px 20px; }
    .stat-num { font-size: 1.7rem; }
    .stat-divider { display: none; }
    .stats-row { gap: 0; }
}

/* ============================================================
   TESTIMONIAL AVATARS
   ============================================================ */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-heading);
}
.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}
.trust-badge svg { color: var(--accent); opacity: 0.8; flex-shrink: 0; }

/* ============================================================
   GUARANTEE SECTION
   ============================================================ */
.section-guarantee { padding-top: 0; }
.guarantee-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 32px 40px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
}
.guarantee-icon { font-size: 2.5rem; flex-shrink: 0; line-height: 1; }
.guarantee-text h3 { font-size: 1.1rem; color: var(--text-heading); margin-bottom: 8px; font-weight: 700; }
.guarantee-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.guarantee-text a { color: var(--accent); }
@media (max-width: 600px) {
    .guarantee-box { flex-direction: column; padding: 24px 20px; }
}

/* ============================================================
   PURCHASE TOAST NOTIFICATION
   ============================================================ */
.purchase-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.28);
    z-index: 9000;
    max-width: 300px;
    animation-duration: 0.4s;
    animation-fill-mode: both;
}
.purchase-toast.toast-in { animation-name: toastSlideIn; }
.purchase-toast.toast-out { animation-name: toastSlideOut; }
@keyframes toastSlideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes toastSlideOut {
    from { opacity: 1; transform: translateX(0); }
    to   { opacity: 0; transform: translateX(-30px); }
}
.purchase-toast-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.purchase-toast-text { font-size: 0.78rem; line-height: 1.4; color: var(--text-muted); }
.purchase-toast-text strong { color: var(--text-heading); font-size: 0.82rem; }
@media (max-width: 480px) {
    .purchase-toast { left: 12px; bottom: 12px; max-width: calc(100vw - 24px); }
}

/* ============================================================
   Login Popup (shows after 1 min for non-logged-in visitors)
   ============================================================ */

.login-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.login-popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.login-popup {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.login-popup-overlay.active .login-popup {
    transform: translateY(0);
}

.login-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-muted);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.login-popup-close:hover {
    background: var(--bg-card-hover);
    color: var(--text-heading);
}

.login-popup-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.login-popup h3 {
    font-size: 1.4rem;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.login-popup p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.login-popup-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.login-popup-actions .btn {
    flex: 1;
    max-width: 180px;
}

.login-popup-skip {
    display: block;
    margin: 16px auto 0 auto;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    cursor: pointer;
    background: none;
    border: none;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.login-popup-skip:hover {
    color: var(--text);
}

/* ============================================================
   Promo Banner (fetched from admin panel)
   ============================================================ */

.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    padding: 12px 48px 12px 20px;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 500;
    z-index: 1002;
    animation: promoSlideDown 0.4s ease;
}

@keyframes promoSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

.promo-banner.promo-festive {
    background: linear-gradient(90deg, #f59e0b 0%, #f97316 50%, #ef4444 100%);
    color: #fff;
}

.promo-banner.promo-discount {
    background: linear-gradient(90deg, #8B1E3F 0%, #0D9488 100%);
    color: #fff;
}

.promo-banner.promo-announcement {
    background: var(--primary);
    color: #fff;
}

.promo-banner.promo-info {
    background: #f0f9ff;
    color: #0c4a6e;
    border-bottom: 1px solid #bae6fd;
}

.promo-banner a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 700;
}

.promo-banner-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: inherit;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.promo-banner-close:hover {
    background: rgba(255,255,255,0.35);
}

.promo-banner .promo-emoji {
    margin-right: 6px;
}

.promo-banner .promo-code {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 4px;
}

/* ============================================================
   RESPONSIVE SUPPLEMENTS
   Comprehensive mobile / tablet polish across all breakpoints
   ============================================================ */

/* ---- 1024px: Testimonials to 2-column on tablet landscape ---- */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---- 768px: Tablet portrait additions ---- */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Pricing card comfort on tablet */
    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-price .amount {
        font-size: 2.8rem;
    }

    /* Hero video responsive */
    .hero-video {
        justify-content: center;
    }

    /* Stats strip tighter padding */
    .stat-item {
        padding: 10px 24px;
    }

    /* FAQ panel padding */
    .faq-item summary {
        padding: 14px 20px;
        font-size: 0.92rem;
    }

    .faq-item p {
        padding: 0 20px 14px;
    }

    /* CTA section */
    .section-cta h2 {
        font-size: 1.8rem;
    }

    /* Trust badges comfortable wrap */
    .trust-badges {
        gap: 10px 16px;
    }

    /* Platform logos 4-per-row hint */
    .platform-logos {
        gap: 12px 24px;
    }
}

/* ---- 480px: Small phones ---- */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* Hero */
    .hero {
        padding: 96px 0 48px;
    }

    .hero h1 {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.97rem;
        margin-bottom: 24px;
    }

    /* Stack CTAs full-width on small phones */
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* Hero video small screens */
    .hero-video iframe {
        max-width: 100%;
    }

    /* Sections */
    .section {
        padding: 48px 0;
    }

    .section-title {
        font-size: 1.45rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 36px;
    }

    /* Pricing */
    .pricing-card {
        padding: 28px 20px;
    }

    .pricing-price .amount {
        font-size: 2.5rem;
    }

    /* Testimonials 1-col on tiny screen */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    /* Comparison table horizontal scroll */
    .comparison-table-wrapper {
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 0.76rem;
    }

    /* Steps */
    .step-card {
        padding: 24px 20px;
    }

    .step-number {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    /* Platform logos tighter */
    .platform-logo-icon {
        width: 52px;
        height: 52px;
    }

    .platform-logos {
        gap: 10px 14px;
    }

    .platform-logo-item span {
        font-size: 0.7rem;
    }

    /* CTA section */
    .section-cta h2 {
        font-size: 1.5rem;
    }

    .section-cta p {
        font-size: 0.9rem;
    }

    /* Footer tighter */
    .footer-brand p {
        font-size: 0.82rem;
    }

    .footer-links h4 {
        font-size: 0.88rem;
    }

    .footer-links a {
        font-size: 0.82rem;
    }

    /* Announcement / promo bars */
    .announcement-bar {
        font-size: 0.78rem;
        padding: 8px 44px 8px 12px;
    }

    .promo-banner {
        font-size: 0.82rem;
        padding: 10px 44px 10px 16px;
    }

    /* Trust badges */
    .trust-badges {
        gap: 8px 12px;
    }

    .trust-badge {
        font-size: 0.78rem;
    }

    /* Login popup */
    .login-popup {
        padding: 28px 20px;
        width: 95%;
    }

    .login-popup-actions {
        flex-direction: column;
    }

    .login-popup-actions .btn {
        max-width: none;
    }

    /* Stats strip */
    .stat-item {
        padding: 8px 16px;
    }

    .stat-num {
        font-size: 1.6rem;
    }
}

/* ---- 375px: Very small phones (iPhone SE / Galaxy A) ---- */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.45rem;
    }

    /* Hide wordmark text on tiny screens, keep logo img */
    .nav-logo span {
        display: none;
    }

    .pricing-price .amount {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 13px 22px;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .platform-logo-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
}

/* NEW badge for nav links — neon yellow flag at bottom-right */
.nav-badge-new {
    position: absolute;
    bottom: -10px;
    right: -14px;
    background: #c8ff00;
    color: #000;
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 1px 4px;
    border-radius: 3px;
    text-transform: uppercase;
    line-height: 1.3;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 1px 4px rgba(200, 255, 0, 0.35);
    z-index: 1;
}
