/* ===================================
   FIVERR BOT PRO - PROFESSIONAL LANDING PAGE
   Color Scheme: Fiverr Green (#1DBF73)
   =================================== */

/* === ROOT VARIABLES === */
:root {
    /* Fiverr Brand Colors */
    --fiverr-green: #1DBF73;
    --fiverr-green-dark: #19A463;
    --fiverr-green-light: #2ECC7F;

    /* Dark Theme Colors (from screenshot) */
    --dark-bg: #000000;
    --dark-bg-card: #161B22;
    --dark-bg-hover: #1C2128;
    --dark-border: #30363D;

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #E6EDF3;
    --text-muted: #8B949E;
    --text-danger: #FF4458;
    --text-success: #1DBF73;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(29, 191, 115, 0.3);
}

/* === GLOBAL RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Professional Background with Gradient Mesh */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(29, 191, 115, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(29, 191, 115, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(29, 191, 115, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

/* Grid Pattern Overlay */
/* Grid Pattern Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(29, 191, 115, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29, 191, 115, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;


    /* Ensure content is above background */
    .navbar,
    .hero-split,
    .social-proof-banner,
    .pricing-section,
    .faq-section,
    .footer {
        position: relative;
        z-index: 1;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* === NAVIGATION === */
.navbar {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dark-border);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 28px;
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--fiverr-green);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--fiverr-green), var(--fiverr-green-light));
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--fiverr-green-dark), var(--fiverr-green));
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(29, 191, 115, 0.5);
}

.btn-download {
    background: var(--fiverr-green);
    color: white;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    width: 100%;
    justify-content: center;
}

.btn-download:hover {
    background: var(--fiverr-green-dark);
    transform: scale(1.05);
}

/* === HERO SPLIT LAYOUT === */
.hero-split {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-card) 100%);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

/* === LEFT SIDE: PAIN POINTS === */
.pain-points-side {
    padding: var(--spacing-lg);
}

.badge-urgent {
    display: inline-block;
    background: rgba(255, 68, 88, 0.2);
    color: var(--text-danger);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(255, 68, 88, 0.3);
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #FFFFFF, #E6EDF3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-danger {
    color: var(--text-danger);
    -webkit-text-fill-color: var(--text-danger);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

/* Pain Items */
.pain-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.pain-item {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--dark-bg-card);
    border-left: 4px solid var(--text-danger);
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.pain-item:hover {
    background: var(--dark-bg-hover);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.pain-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.pain-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.impact {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Stats Danger */
.stats-danger {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.stat-danger-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 68, 88, 0.1);
    border: 2px solid rgba(255, 68, 88, 0.3);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.stat-danger-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--text-danger), #ff6b6b);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-danger);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-note {
    font-size: 11px;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 6px;
    opacity: 0.85;
}

/* === RIGHT SIDE: SOLUTION === */
.solution-side {
    padding: var(--spacing-xxl);
    background: var(--dark-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-border);
    box-shadow: var(--shadow-lg);
}

.solution-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: var(--spacing-xl);
    color: #ffffff;
}

.text-success {
    color: var(--fiverr-green);
}

/* Demo Video */
.demo-video-container {
    margin-bottom: var(--spacing-xl);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    background: var(--dark-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: linear-gradient(135deg, var(--dark-bg-card), var(--dark-bg));
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(29, 191, 115, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    z-index: 3;
    transition: all 0.3s;
}

.video-placeholder:hover .play-button {
    background: var(--fiverr-green);
}

.video-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

.video-duration {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.video-caption {
    text-align: center;
    margin-top: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

/* Quick Steps */
.quick-steps {
    margin-bottom: var(--spacing-xl);
}

.quick-steps h3 {
    font-size: 20px;
    margin-bottom: var(--spacing-md);
    color: #ffffff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
}

.step-card {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--dark-bg);
    border: 2px solid var(--dark-border);
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.step-card:hover {
    border-color: var(--fiverr-green);
    transform: translateY(-4px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--fiverr-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-weight: 700;
    font-size: 18px;
}

.step-text {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Before After Mini */
.results-preview h3 {
    font-size: 20px;
    margin-bottom: var(--spacing-md);
}

.before-after-mini {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--dark-bg);
    border-radius: var(--radius-md);
}

.before-col,
.after-col {
    padding: var(--spacing-sm);
}

.label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    color: var(--text-muted);
}

.before-col .label {
    color: var(--text-danger);
}

.after-col .label {
    color: var(--fiverr-green);
}

.before-after-mini ul {
    list-style: none;
}

.before-after-mini li {
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.arrow {
    font-size: 32px;
    color: var(--fiverr-green);
    display: flex;
    align-items: center;
}

/* === SOCIAL PROOF BANNER === */
.social-proof-banner {
    background: var(--dark-bg-card);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    padding: var(--spacing-lg) 0;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    text-align: center;
}

.proof-item {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.proof-item strong {
    color: var(--fiverr-green);
    font-weight: 700;
}

/* === PRICING SECTION === */
.pricing-section {
    padding: var(--spacing-xxl) 0;
    background: var(--dark-bg);
}

.section-header-center {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: #ffffff;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

.pricing-card-single {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--dark-bg-card);
    border: 2px solid var(--dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pricing-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl);
}

.pricing-left {
    border-right: 1px solid var(--dark-border);
    padding-right: var(--spacing-xl);
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.plan-price {
    margin-bottom: var(--spacing-sm);
}

.price {
    font-size: 56px;
    font-weight: 900;
    color: var(--fiverr-green);
    margin-right: 8px;
    animation: promoBlink 0.8s ease-in-out infinite alternate;
}

.period {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 600;
    animation: promoBlink 0.8s ease-in-out infinite alternate;
}

.plan-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.plan-features {
    list-style: none;
}

.plan-features li {
    padding: var(--spacing-sm);
    font-size: 16px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.check {
    color: var(--fiverr-green);
    font-weight: 700;
    font-size: 20px;
}

/* Download Box */
.download-box {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(29, 191, 115, 0.1), rgba(29, 191, 115, 0.05));
    border: 2px dashed var(--fiverr-green);
    border-radius: var(--radius-md);
}

.download-icon {
    font-size: 56px;
    margin-bottom: var(--spacing-sm);
}

.download-box h4 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.download-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.badge {
    padding: 6px 12px;
    background: rgba(29, 191, 115, 0.2);
    border: 1px solid rgba(29, 191, 115, 0.3);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--fiverr-green);
}

.download-help {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: var(--spacing-md);
}

.link {
    color: var(--fiverr-green);
    text-decoration: none;
    font-weight: 600;
}

.link:hover {
    text-decoration: underline;
}

/* ROI Calculator Inline */
.roi-calculator-inline {
    padding: var(--spacing-lg);
    background: var(--dark-bg);
    border-top: 1px solid var(--dark-border);
    text-align: center;
}

.roi-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Trust Section */
.trust-section {
    margin-top: var(--spacing-xxl);
    text-align: center;
}

.trust-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.testimonials-mini {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.testimonial-mini {
    padding: var(--spacing-md);
    background: var(--dark-bg-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    text-align: left;
}

.stars {
    font-size: 14px;
    margin-bottom: var(--spacing-sm);
}

.testimonial-mini p {
    font-size: 14px;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.author {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

/* === FAQ SECTION === */
.faq-section {
    padding: var(--spacing-xxl) 0;
    background: var(--dark-bg-card);
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: var(--spacing-xxl);
    color: #ffffff;

}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.faq-item {
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--fiverr-green);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-q h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-icon {
    color: var(--fiverr-green);
    font-size: 24px;
    font-weight: 700;
    display: none;
}

.faq-a {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--dark-border);
    display: block;
}

.faq-item.active .faq-a {
    display: block;
}

.faq-a p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === FOOTER === */
.footer {
    background: var(--dark-bg-card);
    border-top: 1px solid var(--dark-border);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--fiverr-green);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--dark-border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* === RESPONSIVE === */

/* Tablet Landscape - 1024px */
@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .pricing-main {
        grid-template-columns: 1fr;
    }

    .pricing-left {
        border-right: none;
        border-bottom: 1px solid var(--dark-border);
        padding-right: 0;
        padding-bottom: var(--spacing-lg);
    }

    .testimonials-mini {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet - 768px */
@media (max-width: 768px) {

    /* Container adjustments */
    .container,
    .container-wide {
        padding: 0 var(--spacing-sm);
    }

    /* Hero section */
    .hero-split {
        padding: var(--spacing-xl) 0;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .solution-side {
        padding: var(--spacing-lg);
    }

    .solution-title {
        font-size: 24px;
    }

    /* Section titles */
    .section-title,
    .section-title-center {
        font-size: 32px;
    }

    /* Proof stats */
    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .proof-item {
        font-size: 14px;
    }

    /* Steps grid */
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials */
    .testimonials-mini {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Navigation - show links on mobile with smaller size */
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 4px;
        padding: 4px 8px;
    }

    .logo {
        display: flex;
        font-size: 6px;
        gap: 15px;
        flex-shrink: 0;
        align-items: center;
    }

    .logo-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 6px;
        height: 6px;
        font-size: 5px;
        line-height: 1;
        vertical-align: middle;
    }

    .nav-links {
        display: flex;
        flex-wrap: nowrap;
        gap: 2px;
        font-size: 6px;
        align-items: center;
        flex-shrink: 1;
        min-width: 0;
    }

    .nav-links a {
        white-space: nowrap;
        padding: 1px 2px;
        font-size: 6px;
    }

    .btn-primary {
        padding: 0px;
        font-size: 2px;
        white-space: nowrap;
        flex-shrink: 0;
        margin-left: auto;
    }

    .nav-cta {
        margin-left: auto;
        padding-left: 100px;
    }

    .cta-button {
        padding: 3px 6px;
        font-size: 9px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Force Free Trial banner to stay horizontal on mobile */
    .solution-badge {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .solution-badge img {
        flex-shrink: 0;
        width: 60px !important;
        height: 60px !important;
    }

    .solution-badge>div {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .solution-badge span {
        font-size: 16px !important;
        white-space: nowrap !important;
    }

    /* Stats danger */
    .stats-danger {
        grid-template-columns: 1fr;
    }

    /* Countdown */
    .countdown-display {
        gap: 8px !important;
    }

    .countdown-item {
        min-width: 70px !important;
        padding: 12px 15px !important;
    }

    .countdown-value {
        font-size: 28px !important;
    }

    .countdown-separator {
        font-size: 28px !important;
    }

    /* Live chat widget */
    .live-chat-widget {
        bottom: 20px !important;
        right: 20px !important;
    }

    .chat-button {
        width: 56px;
        height: 56px;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {

    /* Typography */
    .hero-title {
        font-size: 28px;
        margin-bottom: var(--spacing-sm);
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: var(--spacing-md);
    }

    .solution-title {
        font-size: 22px;
    }

    .section-title,
    .section-title-center {
        font-size: 26px;
    }

    /* Navbar */
    .navbar {
        padding: var(--spacing-xs) 0;
    }

    .logo {
        font-size: 18px;
    }

    .logo-icon {
        font-size: 24px;
    }

    .btn-primary {
        padding: 6px 10px;
        font-size: 11px;
    }

    /* Solution badge */
    .solution-badge {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        text-align: center;
    }

    .solution-badge img {
        width: 80px !important;
        height: 80px !important;
    }

    .solution-badge div {
        align-items: center !important;
    }

    .gradient-promo,
    .limited-time {
        font-size: 22px !important;
    }

    /* Badge urgent */
    .badge-urgent {
        font-size: 12px;
        padding: 6px 12px;
    }

    .badge-urgent span:last-child {
        font-size: 14px !important;
    }

    /* Pain items */
    .pain-item {
        padding: var(--spacing-sm);
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .pain-icon {
        font-size: 28px;
    }

    .pain-content h3 {
        font-size: 16px;
    }

    .impact {
        font-size: 13px;
    }

    /* Stats */
    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }

    .stat-note {
        font-size: 10px;
    }

    /* Proof stats - stack vertically */
    .proof-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
    }

    .proof-item {
        font-size: 13px;
        padding: var(--spacing-xs) 0;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
    }

    .step-card {
        padding: var(--spacing-sm);
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .step-text {
        font-size: 14px;
    }

    /* Before/After */
    .before-after-mini {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        padding: var(--spacing-sm);
    }

    .arrow {
        transform: rotate(90deg);
        font-size: 28px;
        margin: var(--spacing-xl) 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Pricing card */
    .pricing-section {
        padding: var(--spacing-xl) 0;
    }

    .pricing-card-single {
        margin: 0 var(--spacing-xs);
    }

    .pricing-main {
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }

    .pricing-left {
        padding-right: 0;
        padding-bottom: var(--spacing-md);
    }

    .plan-name {
        font-size: 20px;
    }

    .price {
        font-size: 42px;
    }

    .period {
        font-size: 16px;
    }

    .plan-features li {
        font-size: 14px;
        padding: var(--spacing-xs);
    }

    .download-box {
        padding: var(--spacing-md);
    }

    .download-icon {
        font-size: 42px;
    }

    .download-box h4 {
        font-size: 20px;
    }

    .btn-download {
        padding: 14px 24px;
        font-size: 16px;
    }

    .trust-badges {
        flex-wrap: wrap;
    }

    .roi-calculator-inline {
        padding: var(--spacing-md);
    }

    .roi-text {
        font-size: 14px;
    }

    /* Section header padding for countdown */
    .section-header-center {
        padding: 0 var(--spacing-sm);
    }

    /* Countdown timer - 2x2 Grid Layout on Mobile */
    .countdown-timer {
        padding: 0 var(--spacing-sm);
        max-width: 100%;
    }

    .countdown-label {
        flex-direction: column !important;
        gap: 6px !important;
    }

    .countdown-label span {
        font-size: 13px !important;
    }

    .countdown-label span:first-child {
        font-size: 16px !important;
    }

    .countdown-display {
        gap: 8px !important;
        flex-wrap: wrap !important;
        justify-content: space-around !important;
        max-width: 100% !important;
    }

    .countdown-item {
        width: 45% !important;
        min-width: 140px !important;
        max-width: 160px !important;
        padding: 12px 10px !important;
        flex: 0 0 45% !important;
    }

    .countdown-value {
        font-size: 24px !important;
        font-weight: 900 !important;
    }

    .countdown-unit {
        font-size: 9px !important;
    }

    .countdown-separator {
        display: none !important;
    }

    /* Testimonials */
    .trust-title {
        font-size: 16px;
    }

    .testimonial-mini {
        padding: var(--spacing-sm);
    }

    .testimonial-mini p {
        font-size: 13px;
    }

    .author {
        font-size: 11px;
    }

    /* FAQ */
    .faq-section {
        padding: var(--spacing-xl) 0;
    }

    .faq-item {
        padding: var(--spacing-sm);
    }

    .faq-q h4 {
        font-size: 14px;
    }

    .faq-a p {
        font-size: 13px;
    }

    /* Footer */
    .footer {
        padding: var(--spacing-md) 0;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    /* Chat widget */
    .live-chat-widget {
        bottom: 16px !important;
        right: 16px !important;
    }

    .chat-button {
        width: 50px;
        height: 50px;
    }

    .chat-button svg,
    .chat-icon {
        width: 26px;
        height: 26px;
    }

    .chat-badge {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }

    .chat-tooltip {
        display: none;
    }

    /* Video */
    .video-title {
        font-size: 16px;
    }

    .video-duration {
        font-size: 12px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .video-caption {
        font-size: 12px;
    }

    /* Spacing adjustments */
    .hero-split,
    .pricing-section,
    .faq-section {
        padding: var(--spacing-lg) 0;
    }

    .section-header-center {
        margin-bottom: var(--spacing-lg);
    }
}

/* Live Chat Widget - Same as before but complete */

.live-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.chat-button svg,
.chat-icon {
    width: 32px;
    height: 32px;
    fill: white;
}

.chat-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: chatPulse 2s infinite;
}

@keyframes chatPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid var(--dark-bg);
    animation: badgeBounce 2s infinite;
}

@keyframes badgeBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.chat-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #f5f5f5;
    color: #000000;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 14px;
    font-weight: 600;
    animation: showTooltip 5s ease-in-out infinite;
}

@keyframes showTooltip {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    60% {
        opacity: 1;
        transform: translateY(0);
    }

    70% {
        opacity: 0;
        transform: translateY(10px);
    }
}

.chat-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #f5f5f5;
    transform: rotate(45deg);
}

.live-chat-widget:hover .chat-tooltip {
    opacity: 1;
    transform: translateY(0);
    animation: none;
}

@keyframes showTooltip {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    60% {
        opacity: 1;
        transform: translateY(0);
    }

    70% {
        opacity: 0;
        transform: translateY(10px);
    }
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 450px;
    background: var(--dark-bg-card);
    border: 2px solid var(--dark-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.chat-status {
    font-size: 14px;
}

.chat-status strong {
    display: block;
    font-size: 16px;
    margin-bottom: 2px;
}

.chat-status span {
    font-size: 12px;
    opacity: 0.9;
}

.chat-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.chat-body {
    flex: 1;
    padding: var(--spacing-md);
    overflow-y: auto;
    background: var(--dark-bg);
}

.chat-message {
    background: var(--dark-bg-card);
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: var(--spacing-sm);
    max-width: 80%;
    border: 1px solid var(--dark-border);
}

.chat-message.support {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
}

.chat-message-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.chat-message-time {
    font-size: 11px;
    color: var(--text-muted);
}

.chat-input-area {
    padding: var(--spacing-md);
    border-top: 1px solid var(--dark-border);
    display: flex;
    gap: 8px;
}

.chat-input {
    flex: 1;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    padding: 12px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
}

.chat-input:focus {
    outline: none;
    border-color: #25D366;
}

.chat-send {
    background: #25D366;
    border: none;
    color: white;
    padding: 0 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.chat-send:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.chat-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: var(--spacing-sm);
}

.quick-action-btn {
    background: var(--dark-bg-card);
    border: 1px solid var(--dark-border);
    color: var(--text-secondary);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.quick-action-btn:hover {
    background: var(--dark-bg-hover);
    border-color: #25D366;
    color: #25D366;
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--spacing-md);
}

/* Consolidated Styles */

.solution-badge {
    /* Resetting forced styles to allow inline control */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    width: auto;
    height: auto;
}

@keyframes promoBlink {
    0% {
        opacity: 0.8;
        filter: brightness(100%);
        transform: scale(1);
    }

    100% {
        opacity: 1;
        filter: brightness(110%);
        transform: scale(1.02);
    }
}

.gradient-promo {
    font-weight: 900;
    font-size: 30px;
    line-height: 1.2;
    color: #FF4458;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: promoBlink 0.8s ease-in-out infinite alternate;
    display: block;
    margin-left: 0;
}

.solution-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

/* Emoji Blink Animation */
.blink-emoji {
    animation: promoBlink 0.8s ease-in-out infinite alternate;
}

/* Countdown Timer */
.countdown-timer {
    text-align: center;
    margin: 30px 0;
}

.countdown-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-danger);
    margin-bottom: 15px;
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--dark-bg-card);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    border: 2px solid var(--fiverr-green);
    min-width: 80px;
}

.countdown-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--fiverr-green);
    line-height: 1;
}

.countdown-unit {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 5px;
}

.countdown-separator {
    font-size: 30px;
    font-weight: 700;
    color: var(--fiverr-green);
}

/* Added missing blink animation */
@keyframes promoBlink {
    0% {
        opacity: 0.8;
        filter: brightness(100%);
        transform: scale(1);
    }

    100% {
        opacity: 1;
        filter: brightness(130%);
        transform: scale(1.02);
        text-shadow: 0 0 10px rgba(255, 68, 88, 0.6);
    }
}

.blink-emoji {
    animation: promoBlink 0.8s ease-in-out infinite alternate;
}

.blink-text {
    animation: promoBlink 0.8s ease-in-out infinite alternate;
}

/* FORCE FIX COUNTDOWN - styles below */

.countdown-timer,
.countdown-display,
.countdown-item,
.countdown-value,
.countdown-label,
.countdown-unit {
    visibility: visible !important;
}

.countdown-display {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
}

.countdown-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: #161B22 !important;
    border: 2px solid #1DBF73 !important;
    border-radius: 12px !important;
    padding: 15px 25px !important;
    min-width: 90px !important;
}

.countdown-label {
    color: #FF4458 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    display: block !important;
}

.countdown-value {
    font-size: 42px !important;
    font-weight: 900 !important;
    color: #1DBF73 !important;
    text-shadow: 0 0 10px rgba(29, 191, 115, 0.3) !important;
    line-height: 1.2 !important;
}

.countdown-unit {
    font-size: 14px !important;
    text-transform: uppercase !important;
    color: #E6EDF3 !important;
    margin-top: 5px !important;
    font-weight: 600 !important;
}

.countdown-separator {
    font-size: 40px !important;
    color: #1DBF73 !important;
    font-weight: 700 !important;
    margin-top: -20px !important;
}



/* SUPER STRONG BLINK FIX */
@keyframes promoBlinkFast {
    0% {
        opacity: 0.8;
        transform: scale(1);
        filter: brightness(100%);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
        filter: brightness(140%);
        text-shadow: 0 0 15px rgba(255, 68, 88, 0.9);
    }

    100% {
        opacity: 0.8;
        transform: scale(1);
        filter: brightness(100%);
    }
}

.blink-emoji,
.blink-text {
    animation: promoBlinkFast 1s ease-in-out infinite alternate !important;
}



/* NAVIGATION FIX */
html {
    scroll-behavior: smooth !important;
}

#pricing {
    scroll-margin-top: 100px !important;
}