:root {
    /* Colors - Light Mode */
    --bg-page: #ffffff;
    /* White */
    --bg-surface: #f9fafb;
    /* Gray 50 */
    --bg-surface-elevated: #ffffff;
    /* White */
    --bg-surface-highlight: #f3f4f6;
    /* Gray 100 */

    --text-primary: #111827;
    /* Gray 900 */
    --text-secondary: #4b5563;
    /* Gray 600 */
    --text-tertiary: #6b7280;
    /* Gray 500 */

    --primary: #2563eb;
    /* Blue 600 */
    --primary-hover: #1d4ed8;
    /* Blue 700 */
    --primary-glow: rgba(37, 99, 235, 0.2);

    --accent: #7c3aed;
    /* Violet 600 */
    --accent-glow: rgba(124, 58, 237, 0.2);

    --success: #059669;
    /* Emerald 600 */
    --warning: #d97706;
    /* Amber 600 */
    --danger: #dc2626;
    /* Red 600 */

    --border: #e5e7eb;
    /* Gray 200 */
    --border-hover: #d1d5db;
    /* Gray 300 */

    --bg-card: #ffffff;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 72px;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-page);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border: 2px solid var(--bg-page);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-tertiary);
}

/* Text Selection */
::selection {
    background: var(--primary);
    color: white;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', 'Inter', sans-serif;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-primary);
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

.text-gradient {
    color: var(--primary);
}

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

.hidden-mobile {
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-hover);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    display: flex;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo svg {
    width: 32px;
    height: 32px;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-cta {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
}

/* Tech Stack Bar */
.tech-stack {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0.7;
}

.tech-stack-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-tertiary);
    letter-spacing: 0.05em;
}

.tech-stack-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
}

.tech-stack-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

/* Background blob effect removed for flat design */

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.hero-screenshot-container {
    position: relative;
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 0.5rem;
}

.hero-screenshot {
    border-radius: 8px;
    overflow: hidden;
    display: block;
}

/* Floating Notification */
.floating-notif {
    position: absolute;
    bottom: -30px;
    left: -20px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    max-width: 320px;
}

.notif-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Problem Section */
.problem-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.problem-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vs-card {
    background: var(--bg-page);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.vs-card.bad {
    border-left: 4px solid var(--danger);
}

.vs-card.good {
    border-left: 4px solid var(--success);
    background: rgba(16, 185, 129, 0.02);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Terminal */
.terminal {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 3rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.terminal-header {
    background: #f9fafb;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 0.5rem;
}

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

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.terminal-body {
    padding: 1.5rem;
    color: var(--text-primary);
    overflow-x: auto;
}

.line {
    margin-bottom: 0.5rem;
    display: block;
}

.prompt {
    color: var(--success);
    margin-right: 0.5rem;
}

.dim {
    color: var(--text-tertiary);
}

.warn {
    color: var(--warning);
}

.err {
    color: var(--danger);
}

.info {
    color: var(--primary);
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--bg-surface-highlight);
    color: var(--text-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 1px solid var(--border);
}

.step-code {
    background: #f3f4f6;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.85rem;
    margin-top: 1rem;
    color: var(--success);
    display: inline-block;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

@media (max-width: 1150px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
}

.pricing-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.pricing-card.highlight {
    border-color: var(--primary);
    background: var(--bg-surface);
    position: relative;
    border-width: 2px;
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 1.5rem 0 0.5rem;
    line-height: 1;
}

.period {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.features-list {
    text-align: left;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.check {
    color: var(--success);
    font-weight: bold;
}

.cross {
    color: var(--text-tertiary);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    margin-top: 5rem;
    background: var(--bg-surface);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    :root {
        --header-height: 64px;
    }

    .hero-grid,
    .problem-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .tech-stack {
        align-items: center;
        text-align: center;
    }

    .tech-stack-icons {
        justify-content: center;
    }

    .problem-content {
        order: 1;
    }

    .problem-visual {
        order: 2;
    }
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-desktop {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-surface);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-desktop.active {
        transform: translateY(0);
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
    }

    .hero {
        padding-top: calc(var(--header-height) + 2rem);
        padding-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .floating-notif {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1.5rem;
        width: 100%;
        max-width: 100%;
        animation: none;
        transform: none !important;
    }

    /* Scroll offset for anchor links to account for sticky header */
    section[id] {
        scroll-margin-top: calc(var(--header-height) + 1rem);
    }

    /* PRO Value sections responsive */
    .container>div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.85rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    .price {
        font-size: 2.75rem;
    }

    .pricing-card {
        padding: 1.75rem;
    }

    .container {
        padding: 0 1rem;
    }

    .terminal {
        font-size: 0.75rem;
    }

    .terminal-body {
        padding: 1rem;
    }
}

/* =============================================== */
/* SCROLL ANIMATIONS */
/* =============================================== */

/* Fade-in up animation for sections */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for grid children */
.stagger-children>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.stagger-children.visible>*:nth-child(1) {
    transition-delay: 0.05s;
}

.stagger-children.visible>*:nth-child(2) {
    transition-delay: 0.1s;
}

.stagger-children.visible>*:nth-child(3) {
    transition-delay: 0.15s;
}

.stagger-children.visible>*:nth-child(4) {
    transition-delay: 0.2s;
}

.stagger-children.visible>*:nth-child(5) {
    transition-delay: 0.25s;
}

.stagger-children.visible>*:nth-child(6) {
    transition-delay: 0.3s;
}

.stagger-children.visible>* {
    opacity: 1;
    transform: translateY(0);
}

/* Scale-in animation */
.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* =============================================== */
/* STICKY CTA BAR */
/* =============================================== */

.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    padding: 0.75rem 0;
    z-index: 999;
    transition: bottom 0.3s ease-out;
    box-shadow: 0 -10px 40px -10px rgba(0, 0, 0, 0.1);
}

.sticky-cta.visible {
    bottom: 0;
}

.sticky-cta-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.sticky-cta-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.sticky-cta-text strong {
    color: var(--text-primary);
}

.sticky-cta .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
}

/* Hide on very small screens */
@media (max-width: 480px) {
    .sticky-cta-text {
        display: none;
    }

    .sticky-cta-content {
        gap: 0.75rem;
    }
}

/* =============================================== */
/* MICRO-INTERACTIONS */
/* =============================================== */

/* Link hover underline effect */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s ease-out;
}

.nav-link:hover::after {
    width: 100%;
}

/* Button press effect */
.btn:active {
    transform: translateY(1px) scale(0.98);
}

/* Card hover glow */
.feature-card:hover {
    box-shadow:
        0 10px 30px -10px rgba(0, 0, 0, 0.5),
        0 0 0 1px var(--primary),
        0 0 30px -10px var(--primary-glow);
}

/* Pricing card hover */
.pricing-card:not(.highlight):hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.15);
}

.pricing-card.highlight {
    box-shadow: 0 10px 30px -5px rgba(37, 99, 235, 0.1);
}

.pricing-card.highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px -12px rgba(37, 99, 235, 0.2);
}

/* Keyboard shortcut hint */
.kbd {
    display: inline-block;
    padding: 0.15rem 0.4rem;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Scarcity Animation */
.pulse-animation {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }

    70% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }

    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

/* =============================================== */
/* FAQ ACCORDION */
/* =============================================== */

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    user-select: none;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-tertiary);
    transition: transform 0.3s ease, color 0.2s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =============================================== */
/* ANIMATED COUNTERS */
/* =============================================== */

.counter {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

/* Stats row for future use */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* =============================================== */
/* VIDEO HOVER THUMBNAILS */
/* =============================================== */

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px -15px rgba(0, 0, 0, 0.5);
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: var(--bg-surface);
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: transform 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.video-play-btn svg {
    width: 28px;
    height: 28px;
    fill: var(--danger);
    margin-left: 4px;
    /* optical centering */
}

/* =============================================== */
/* PAGE LOAD ANIMATIONS */
/* =============================================== */

/* Hero entrance animations */
.hero-content {
    animation: heroFadeIn 0.8s ease-out;
}

.hero-visual {
    animation: heroSlideIn 0.9s ease-out 0.2s both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Trust badges stagger */
.trust-badges .trust-item {
    animation: fadeUp 0.5s ease-out both;
}

.trust-badges .trust-item:nth-child(1) {
    animation-delay: 0.4s;
}

.trust-badges .trust-item:nth-child(2) {
    animation-delay: 0.5s;
}

.trust-badges .trust-item:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================== */
/* PARALLAX EFFECTS */
/* =============================================== */

/* Parallax background removed for flat design */

/* =============================================== */
/* SHARE BUTTON */
/* =============================================== */

.share-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 998;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.share-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.share-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.share-btn:hover svg {
    color: white;
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 140px;
    right: 20px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    z-index: 1001;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.toast.visible {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    border-left: 3px solid var(--success);
}

/* Hide share button on mobile when sticky CTA is visible */
@media (max-width: 480px) {
    .share-btn {
        bottom: 70px;
        right: 12px;
        width: 40px;
        height: 40px;
    }
}

/* =============================================== */
/* SMOOTH SECTION TRANSITIONS */
/* =============================================== */

section {
    position: relative;
}

/* Subtle gradient dividers between sections */
.section-divider {
    height: 1px;
    background: var(--border);
}