/* ========================================
   AutomatizaNegocios — Design System
   ======================================== */
:root {
    --navy: #0f172a;
    --navy-light: #1e293b;
    --text: #475569;
    --text-light: #94a3b8;
    --heading: #0f172a;
    --white: #ffffff;
    --bg: #f8fafc;
    --bg-card: #ffffff;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --green: #10b981;
    --green-dark: #059669;
    --green-light: #d1fae5;
    --blue: #3b82f6;
    --blue-light: #dbeafe;
    --purple: #8b5cf6;
    --purple-light: #ede9fe;
    --cyan: #06b6d4;
    --cyan-light: #cffafe;
    --orange: #f97316;
    --orange-light: #ffedd5;
    --red: #ef4444;
    --gradient: linear-gradient(135deg, #10b981, #06b6d4);
    --gradient2: linear-gradient(135deg, #3b82f6, #8b5cf6);
    --shadow: 0 4px 20px rgba(0, 0, 0, .06);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, .08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, .1);
    --radius: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden
}

img {
    max-width: 100%
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem
}

.text-center {
    text-align: center
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all .3s
}

.navbar.scrolled {
    box-shadow: var(--shadow)
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 0
}

.logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, .3)
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy)
}

.logo-text em {
    font-style: normal;
    color: var(--green)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: .95rem;
    transition: color .2s
}

.nav-links a:hover {
    color: var(--green)
}

.btn-nav-cta {
    background: var(--gradient) !important;
    color: #fff !important;
    border: none;
    border-radius: 10px;
    padding: .6rem 1.5rem;
    font-weight: 700;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: all .3s;
    box-shadow: 0 4px 15px rgba(16, 185, 129, .25)
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, .35)
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--navy);
    cursor: pointer
}

/* ============ BUTTONS ============ */
.btn-primary {
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: .95rem 2.2rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: all .3s;
    cursor: pointer
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, .3)
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: .9rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: all .3s
}

.btn-secondary:hover {
    border-color: var(--green);
    color: var(--green);
    background: rgba(16, 185, 129, .03)
}

.btn-glow {
    animation: glow-pulse 3s infinite
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, .25)
    }

    50% {
        box-shadow: 0 8px 30px rgba(16, 185, 129, .45)
    }
}

/* ============ HERO ============ */
.hero {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%)
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .5
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(16, 185, 129, .08);
    top: -200px;
    right: -200px
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, .06);
    bottom: -100px;
    left: -150px
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(139, 92, 246, .05);
    top: 50%;
    left: 40%
}

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

.hero-content {
    position: relative;
    z-index: 2
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--green-light);
    color: var(--green-dark);
    border-radius: 50px;
    padding: .4rem 1.2rem;
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(16, 185, 129, .2)
}

.dot-pulse {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(.8)
    }
}

.hero h1 {
    font-size: 3.6rem;
    font-weight: 900;
    color: var(--heading);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -.02em
}

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

.hero-desc {
    font-size: 1.18rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 520px
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: .88rem;
    color: var(--text-light)
}

.trust-avatars {
    display: flex
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    margin-right: -8px;
    border: 2px solid #fff
}

/* Phone Mockup */
.hero-visual {
    position: relative;
    z-index: 2
}

.phone-mockup {
    background: var(--white);
    border-radius: 30px;
    padding: 16px;
    border: 3px solid var(--border);
    max-width: 320px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2
}

.phone-notch {
    width: 120px;
    height: 6px;
    background: var(--border);
    border-radius: 10px;
    margin: 0 auto 14px
}

.phone-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 14px
}

.phone-avatar-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: .85rem
}

.phone-name {
    font-weight: 700;
    font-size: .95rem;
    color: var(--heading)
}

.phone-status {
    font-size: .72rem;
    color: var(--green)
}

.chat-bubble {
    padding: 10px 14px;
    border-radius: 16px;
    margin-bottom: 8px;
    font-size: .84rem;
    line-height: 1.5;
    max-width: 88%;
    animation: fadeInUp .5s ease both
}

.chat-received {
    background: var(--bg);
    border-bottom-left-radius: 4px;
    color: var(--heading)
}

.chat-sent {
    background: var(--green);
    color: #fff;
    margin-left: auto;
    border-bottom-right-radius: 4px
}

.chat-bubble:nth-child(3) {
    animation-delay: .2s
}

.chat-bubble:nth-child(4) {
    animation-delay: .4s
}

.chat-bubble:nth-child(5) {
    animation-delay: .6s
}

.chat-bubble:nth-child(6) {
    animation-delay: .8s
}

.chat-time {
    font-size: .7rem;
    color: var(--text-light);
    text-align: right;
    margin-top: 4px
}

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

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

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: .6rem 1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--heading);
    z-index: 3;
    border: 1px solid var(--border);
    animation: float 3s ease-in-out infinite
}

.fc-1 {
    top: 15%;
    right: -10%;
    animation-delay: 0s
}

.fc-1 i {
    color: var(--green)
}

.fc-2 {
    bottom: 25%;
    left: -5%;
    animation-delay: 1s
}

.fc-2 i {
    color: var(--blue)
}

.fc-3 {
    top: 50%;
    right: -15%;
    animation-delay: 2s
}

.fc-3 i {
    color: var(--orange)
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

/* ============ STATS ============ */
.stats-bar {
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--border);
    background: var(--white)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center
}

.stat-item h3 {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--heading)
}

.stat-item h3 .accent,
.stat-item h3 span {
    color: var(--green)
}

.stat-item p {
    font-size: .9rem;
    color: var(--text-light);
    margin-top: .2rem
}

/* ============ SECTIONS ============ */
section {
    padding: 6rem 0
}

.section-alt {
    background: var(--bg)
}

.section-white {
    background: var(--white)
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1rem;
    padding: .35rem .9rem;
    border-radius: 6px
}

.badge-green {
    background: var(--green-light);
    color: var(--green-dark)
}

.badge-blue {
    background: var(--blue-light);
    color: var(--blue)
}

.badge-purple {
    background: var(--purple-light);
    color: var(--purple)
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: .8rem;
    letter-spacing: -.02em
}

.section-desc {
    font-size: 1.08rem;
    color: var(--text);
    max-width: 600px;
    margin-bottom: 2.5rem
}

.text-center .section-desc {
    margin-left: auto;
    margin-right: auto
}

/* ============ FEATURE CARDS ============ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    text-align: left
}

.fc-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0
}

.fc-gradient.green {
    background: var(--gradient)
}

.fc-gradient.blue {
    background: var(--gradient2)
}

.fc-gradient.purple {
    background: linear-gradient(135deg, #8b5cf6, #ec4899)
}

.fc-gradient.cyan {
    background: linear-gradient(135deg, #06b6d4, #3b82f6)
}

.fc-gradient.orange {
    background: linear-gradient(135deg, #f97316, #ef4444)
}

.fc-gradient.teal {
    background: linear-gradient(135deg, #14b8a6, #10b981)
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.2rem
}

.fi-green {
    background: var(--green-light);
    color: var(--green)
}

.fi-blue {
    background: var(--blue-light);
    color: var(--blue)
}

.fi-purple {
    background: var(--purple-light);
    color: var(--purple)
}

.fi-cyan {
    background: var(--cyan-light);
    color: var(--cyan)
}

.fi-orange {
    background: var(--orange-light);
    color: var(--orange)
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: .5rem
}

.feature-card p {
    font-size: .9rem;
    color: var(--text);
    margin: 0;
    line-height: 1.65
}

/* ============ TECH GRID ============ */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem
}

.tech-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all .3s
}

.tech-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--green)
}

.tech-icon {
    font-size: 2rem;
    margin-bottom: .6rem;
    color: var(--green)
}

.tech-item span {
    font-weight: 600;
    color: var(--heading);
    font-size: .9rem
}

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

.step-card {
    text-align: center;
    position: relative
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: 0 8px 25px rgba(16, 185, 129, .25)
}

.step-line {
    position: absolute;
    top: 28px;
    left: 55%;
    width: calc(100% - 10%);
    height: 2px;
    background: var(--border);
    z-index: -1
}

.step-card:last-child .step-line {
    display: none
}

.step-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: .5rem
}

.step-card p {
    font-size: .92rem;
    color: var(--text);
    line-height: 1.6
}

/* ============ PRICING ============ */
.pricing-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto
}

.pricing-4 {
    grid-template-columns: repeat(4, 1fr)
}

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

.price-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all .3s
}

.price-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px)
}

.price-card.featured {
    border-color: var(--green);
    box-shadow: 0 10px 40px rgba(16, 185, 129, .12)
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--gradient);
    color: #fff;
    font-size: .65rem;
    font-weight: 800;
    padding: .3rem 2.5rem;
    transform: rotate(45deg);
    letter-spacing: .05em;
    display: flex;
    align-items: center;
    gap: .3rem
}

.price-label-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    padding: .2rem .8rem;
    border-radius: 4px;
    margin-bottom: .5rem
}

.price-label-tag.partner {
    background: var(--cyan-light);
    color: var(--cyan)
}

.price-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: .3rem
}

.price-old {
    font-size: .9rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: .2rem
}

.price-amount {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--heading);
    margin: .2rem 0
}

.price-amount small {
    font-size: .85rem;
    font-weight: 400;
    color: var(--text-light)
}

.price-usd {
    font-size: .82rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-weight: 500
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left
}

.price-features li {
    padding: .45rem 0;
    font-size: .88rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: .5rem;
    border-bottom: 1px solid var(--border-light)
}

.price-features li:last-child {
    border: none
}

.price-features li i.fa-check {
    color: var(--green)
}

.price-features li i.fa-times {
    color: #cbd5e1
}

.btn-price {
    display: block;
    width: 100%;
    text-align: center;
    padding: .85rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: all .3s;
    border: none;
    cursor: pointer
}

.btn-price-green {
    background: var(--gradient);
    color: #fff
}

.btn-price-green:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, .3);
    transform: translateY(-2px)
}

.btn-price-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--border)
}

.btn-price-outline:hover {
    border-color: var(--green);
    color: var(--green);
    background: rgba(16, 185, 129, .03)
}

.pricing-divider {
    text-align: center;
    margin: 3.5rem 0 1.5rem;
    position: relative
}

.pricing-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: var(--border)
}

.pricing-divider span {
    background: var(--white);
    padding: 0 1.5rem;
    position: relative;
    color: var(--text-light);
    font-weight: 600;
    font-size: .9rem
}

.section-alt .pricing-divider span {
    background: var(--bg)
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all .3s;
    text-align: left
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px)
}

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: .8rem;
    font-size: .9rem
}

.testimonial-text {
    color: var(--text);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: .92rem
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .8rem
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    flex-shrink: 0
}

.testimonial-name {
    font-weight: 700;
    color: var(--heading);
    font-size: .9rem
}

.testimonial-role {
    font-size: .8rem;
    color: var(--text-light)
}

/* ============ FAQ ============ */
.faq-list {
    margin-top: 2rem
}

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

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

.faq-q {
    padding: 1rem 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--heading);
    font-weight: 600;
    font-size: .92rem;
    transition: background .2s
}

.faq-q:hover {
    background: var(--bg)
}

.faq-q i {
    transition: transform .3s;
    color: var(--text-light);
    font-size: .75rem
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: all .3s ease
}

.faq-a p {
    padding: 0 1.2rem 1rem;
    font-size: .9rem;
    line-height: 1.7;
    color: var(--text)
}

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

.faq-item.open .faq-q i {
    transform: rotate(180deg)
}

/* ============ CTA ============ */
.cta-section {
    padding: 5rem 0
}

.cta-box {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 4.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, .15), transparent 70%);
    pointer-events: none
}

.cta-box h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    position: relative
}

.cta-box p {
    color: rgba(255, 255, 255, .6);
    font-size: 1.08rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative
}

/* ============ FOOTER ============ */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .5);
    padding: 4rem 0 1.5rem
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem
}

footer h4 {
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .05em
}

footer a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    font-size: .9rem;
    transition: color .2s;
    display: block;
    margin-bottom: .5rem
}

footer a:hover {
    color: #fff
}

.footer-brand p {
    font-size: .9rem;
    line-height: 1.7;
    margin-top: .8rem;
    max-width: 280px
}

.footer-social {
    display: flex;
    gap: .6rem;
    margin-top: 1rem
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    font-size: .9rem;
    transition: all .2s
}

.footer-social a:hover {
    background: var(--green);
    color: #fff
}

.newsletter-form {
    display: flex;
    gap: .5rem
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: .6rem 1rem;
    color: #fff;
    font-size: .88rem;
    outline: none;
    font-family: inherit
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .3)
}

.newsletter-form button {
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: .6rem 1.2rem;
    font-weight: 700;
    font-size: .85rem;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit
}

.newsletter-form button:hover {
    background: var(--green-dark)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem
}

.footer-bottom a {
    display: inline;
    margin: 0
}

/* ============ WA FLOAT ============ */
.wa-float-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: .8rem;
    z-index: 1000
}

.wa-float-label {
    background: #1e293b;
    color: #fff;
    padding: .5rem 1rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
    animation: wa-label-in 1s ease .5s both;
    cursor: pointer;
    pointer-events: none
}

@keyframes wa-label-in {
    from {
        opacity: 0;
        transform: translateX(20px)
    }

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

@media(max-width:480px) {
    .wa-float-label {
        display: none
    }
}

.wa-float {
    position: relative;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, .35);
    z-index: 1000;
    text-decoration: none;
    transition: all .3s;
    animation: wa-pulse 2s infinite
}

.wa-float:hover {
    transform: scale(1.1);
    color: #fff
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .4)
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
    }
}

/* ============ COUNTRY SELECTOR ============ */
.country-selector {
    position: relative
}

.country-btn {
    display: flex;
    align-items: center;
    gap: .4rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: .4rem .8rem;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 600;
    color: var(--heading);
    transition: all .2s;
    font-family: inherit
}

.country-btn:hover {
    border-color: var(--green);
    background: var(--green-light)
}

.country-flag {
    font-size: 1.1rem
}

.country-code {
    font-size: .78rem;
    font-weight: 700
}

.country-btn i {
    font-size: .6rem;
    color: var(--text-light);
    transition: transform .2s
}

.country-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 280px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    z-index: 200;
    max-height: 360px;
    overflow-y: auto;
    display: none;
    animation: fadeInUp .2s ease
}

.country-dropdown.show {
    display: block
}

.country-search {
    padding: .6rem;
    border-bottom: 1px solid var(--border)
}

.country-search input {
    width: 100%;
    padding: .5rem .8rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: .85rem;
    outline: none;
    font-family: inherit;
    transition: border .2s
}

.country-search input:focus {
    border-color: var(--green)
}

.country-group-label {
    padding: .35rem .8rem;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-light);
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1
}

.country-group-label:first-of-type {
    border-top: none
}

.country-option {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem .8rem;
    text-decoration: none;
    color: var(--text);
    font-size: .85rem;
    transition: background .15s;
    cursor: pointer
}

.country-option:hover {
    background: var(--green-light);
    color: var(--green-dark)
}

.country-option.selected {
    background: var(--green-light);
    color: var(--green-dark);
    font-weight: 600
}

.co-flag {
    font-size: 1.15rem
}

.co-name {
    flex: 1;
    font-weight: 500
}

.co-currency {
    font-size: .72rem;
    color: var(--text-light);
    background: var(--bg);
    padding: .15rem .5rem;
    border-radius: 4px;
    font-weight: 600
}

.country-dropdown::-webkit-scrollbar {
    width: 4px
}

.country-dropdown::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px
}

/* Mobile controls */
.mobile-controls {
    display: none;
    align-items: center;
    gap: .5rem
}

.country-btn-mobile {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer
}

/* Active nav link */
.nav-links a.active {
    color: var(--green) !important;
    font-weight: 700
}

/* ============ DOCS PAGES ============ */
.docs-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem
}

.docs-hero {
    text-align: center;
    padding: 2rem 0 3rem
}

.docs-hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: .6rem;
    letter-spacing: -.02em;
    color: var(--heading)
}

.docs-hero h1 em {
    color: var(--green);
    font-style: normal
}

.docs-hero p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto .8rem
}

.docs-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--green-light);
    color: var(--green-dark);
    padding: .4rem 1rem;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 1.2rem
}

.docs-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--heading)
}

.docs-section-title i {
    color: var(--green)
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-top: .5rem
}

.docs-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all .25s;
    position: relative
}

.docs-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green)
}

.docs-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: .8rem
}

.docs-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .3rem;
    color: var(--heading)
}

.docs-card p {
    font-size: .84rem;
    color: var(--text-light);
    flex: 1
}

.docs-card .docs-arrow {
    color: var(--green);
    font-size: .78rem;
    margin-top: .8rem;
    display: flex;
    align-items: center;
    gap: .3rem;
    font-weight: 600
}

.docs-overview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: .8rem
}

.docs-ov {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem;
    text-align: center;
    transition: transform .2s
}

.docs-ov:hover {
    transform: translateY(-2px)
}

.docs-ov .icon {
    font-size: 1.8rem;
    margin-bottom: .5rem
}

.docs-ov h4 {
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: .2rem;
    color: var(--heading)
}

.docs-ov p {
    font-size: .78rem;
    color: var(--text-light)
}

.docs-alert {
    padding: .8rem 1rem;
    border-radius: 8px;
    font-size: .85rem;
    margin: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    background: var(--green-light);
    border-left: 3px solid var(--green);
    color: #166534;
    line-height: 1.6
}

.docs-footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-light);
    font-size: .82rem;
    border-top: 1px solid var(--border);
    margin-top: 3rem
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 1rem;
    transition: color .2s
}

.back-link:hover {
    color: var(--green-dark)
}

/* Docs content page styles */
.doc-content {
    max-width: 820px;
    margin: 0 auto
}

.doc-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--heading);
    margin: 2.5rem 0 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: .5rem
}

.doc-content h2 i {
    color: var(--green);
    font-size: 1.1rem
}

.doc-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--heading);
    margin: 1.5rem 0 .8rem
}

.doc-content p {
    font-size: .92rem;
    line-height: 1.7;
    margin-bottom: 1rem
}

.doc-content ul,
.doc-content ol {
    margin: .8rem 0 1.2rem 1.5rem;
    font-size: .92rem
}

.doc-content li {
    margin-bottom: .4rem;
    line-height: 1.6
}

.doc-content code {
    font-family: 'JetBrains Mono', monospace;
    background: var(--bg);
    padding: .15rem .5rem;
    border-radius: 4px;
    font-size: .82rem;
    border: 1px solid var(--border)
}

.doc-content pre {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    overflow-x: auto;
    margin: 1rem 0 1.5rem;
    font-size: .82rem;
    line-height: 1.7;
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, .08)
}

.doc-content pre code {
    background: transparent;
    border: none;
    padding: 0;
    color: inherit
}

.doc-content .alert {
    padding: .8rem 1rem;
    border-radius: 8px;
    font-size: .88rem;
    margin: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    line-height: 1.6
}

.doc-content .alert-info {
    background: var(--blue-light);
    border: 1px solid rgba(59, 130, 246, .2);
    color: #1d4ed8
}

.doc-content .alert-warning {
    background: var(--orange-light);
    border: 1px solid rgba(249, 115, 22, .2);
    color: #c2410c
}

.doc-content .alert-success {
    background: var(--green-light);
    border: 1px solid rgba(16, 185, 129, .2);
    color: var(--green-dark)
}

.doc-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: .85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden
}

.doc-content thead th {
    background: var(--bg);
    color: var(--heading);
    padding: .6rem .8rem;
    text-align: left;
    font-weight: 700;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-bottom: 1px solid var(--border)
}

.doc-content tbody td {
    padding: .5rem .8rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text)
}

.doc-content tbody tr:hover td {
    background: rgba(16, 185, 129, .02)
}

/* ============ PROMO BAR ============ */
.promo-bar {
    background: linear-gradient(90deg, #0f172a, #1e293b);
    color: #fff;
    padding: .55rem 1rem;
    text-align: center;
    font-size: .82rem;
    position: relative;
    z-index: 101;
    overflow: hidden
}

.promo-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, .08), transparent);
    animation: promoShine 4s infinite
}

@keyframes promoShine {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(100%)
    }
}

.promo-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    flex-wrap: wrap
}

.promo-bar strong {
    color: var(--green)
}

.promo-bar a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--green)
}

.promo-countdown {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: rgba(255, 255, 255, .08);
    padding: .2rem .7rem;
    border-radius: 6px;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    font-size: .78rem
}

.promo-countdown span {
    background: var(--green);
    color: #fff;
    padding: .1rem .35rem;
    border-radius: 4px;
    min-width: 24px;
    text-align: center;
    font-size: .75rem
}

.promo-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .4);
    cursor: pointer;
    font-size: .9rem;
    padding: .2rem;
    margin-left: .5rem;
    transition: color .2s
}

.promo-close:hover {
    color: #fff
}

.promo-bar.hidden {
    display: none
}

.has-promo .navbar {
    top: 36px
}

.has-promo .hero {
    padding-top: 11rem
}

/* ============ ANIMATED GRADIENT TEXT ============ */
.gradient-text-animated {
    background: linear-gradient(270deg, #10b981, #06b6d4, #3b82f6, #8b5cf6, #10b981);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

/* ============ TRUST LOGOS ============ */
.trust-section {
    padding: 3rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border)
}

.trust-label {
    text-align: center;
    font-size: .78rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    margin-bottom: 1.5rem
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: .45;
    filter: grayscale(1);
    transition: all .4s
}

.trust-logos:hover {
    opacity: .7;
    filter: grayscale(.3)
}

.trust-logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    white-space: nowrap
}

.trust-logo i {
    font-size: 1.6rem
}

.trust-logo span {
    font-size: .95rem;
    font-weight: 700
}

/* ============ SCREENSHOTS/DEMO ============ */
.screenshots-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg) 0%, #fff 100%)
}

.screenshots-tabs {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap
}

.ss-tab {
    padding: .5rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all .2s;
    font-family: inherit
}

.ss-tab:hover {
    border-color: var(--green);
    color: var(--green)
}

.ss-tab.active {
    background: var(--gradient);
    color: #fff;
    border-color: transparent
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto
}

.ss-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .3s;
    box-shadow: var(--shadow)
}

.ss-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl)
}

.ss-browser-bar {
    background: var(--navy);
    padding: .5rem .8rem;
    display: flex;
    align-items: center;
    gap: .4rem
}

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

.ss-dot:nth-child(1) {
    background: #ef4444
}

.ss-dot:nth-child(2) {
    background: #f59e0b
}

.ss-dot:nth-child(3) {
    background: #10b981
}

.ss-url {
    flex: 1;
    background: rgba(255, 255, 255, .06);
    border-radius: 4px;
    padding: .2rem .6rem;
    font-size: .68rem;
    color: rgba(255, 255, 255, .4);
    margin-left: .5rem;
    font-family: 'JetBrains Mono', monospace
}

.ss-body {
    padding: 1.5rem;
    min-height: 180px;
    background: var(--bg);
    position: relative;
    overflow: hidden
}

.ss-body .ss-placeholder {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.ss-widget {
    background: var(--white);
    border-radius: 8px;
    padding: .8rem;
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04)
}

.ss-widget-row {
    display: flex;
    gap: .5rem;
    align-items: center
}

.ss-widget-bar {
    height: 6px;
    border-radius: 3px;
    background: var(--green-light)
}

.ss-widget-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem
}

.ss-label {
    font-size: .72rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: .3rem
}

.ss-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--heading)
}

.ss-caption {
    text-align: center;
    font-size: .82rem;
    color: var(--text-light);
    font-weight: 600;
    padding: .8rem;
    border-top: 1px solid var(--border)
}

/* ============ COMPARISON TABLE ============ */
.compare-section {
    padding: 5rem 0;
    background: var(--white)
}

.compare-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    font-size: .88rem
}

.compare-table thead th {
    background: var(--bg);
    padding: .8rem 1rem;
    font-weight: 700;
    color: var(--heading);
    text-align: center;
    border-bottom: 2px solid var(--border);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .04em
}

.compare-table thead th:first-child {
    text-align: left;
    width: 40%
}

.compare-table thead th.highlight {
    background: var(--green);
    color: #fff;
    font-size: .85rem;
    position: relative
}

.compare-table tbody td {
    padding: .65rem 1rem;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
    color: var(--text)
}

.compare-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--heading)
}

.compare-table tbody td.highlight {
    background: rgba(16, 185, 129, .03)
}

.compare-table tbody tr:last-child td {
    border-bottom: none
}

.compare-table .check-yes {
    color: var(--green);
    font-weight: 700;
    font-size: 1rem
}

.compare-table .check-no {
    color: #cbd5e1;
    font-size: 1rem
}

.compare-table .check-partial {
    color: var(--orange);
    font-size: .85rem
}

/* ============ RESULTS/IMPACT ============ */
.results-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    position: relative;
    overflow: hidden
}

.results-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, .12), transparent 70%);
    pointer-events: none
}

.results-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, .08), transparent 70%);
    pointer-events: none
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2
}

.result-card {
    text-align: center;
    padding: 2rem 1rem;
    position: relative
}

.result-card::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, .08)
}

.result-card:last-child::after {
    display: none
}

.result-icon {
    width: 56px;
    height: 56px;
    background: rgba(16, 185, 129, .12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--green);
    margin: 0 auto .8rem;
    border: 1px solid rgba(16, 185, 129, .15)
}

.result-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: .3rem;
    line-height: 1;
    background: linear-gradient(135deg, #fff, var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.result-label {
    font-size: .88rem;
    color: rgba(255, 255, 255, .5);
    font-weight: 500
}

/* ============ GUARANTEE ============ */
.guarantee-section {
    padding: 4rem 0;
    background: var(--bg)
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--green-light);
    box-shadow: var(--shadow)
}

.guarantee-shield {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    box-shadow: 0 8px 30px rgba(16, 185, 129, .25);
    position: relative
}

.guarantee-shield::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(16, 185, 129, .25);
    animation: spinSlow 20s linear infinite
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg)
    }
}

.guarantee-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: .5rem
}

.guarantee-content p {
    font-size: .95rem;
    color: var(--text);
    line-height: 1.7
}

.guarantee-content strong {
    color: var(--green)
}

/* ============ SCROLL INDICATOR ============ */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    color: var(--text-light);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease .5s both
}

.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid var(--border);
    border-radius: 12px;
    position: relative
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--green);
    border-radius: 2px;
    animation: scrollDown 2s ease infinite
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0)
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px)
    }
}

/* ============ RESPONSIVE ============ */

/* -- Tablet landscape -- */
@media(max-width:1024px) {
    .pricing-4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .tech-grid {
        grid-template-columns: repeat(4, 1fr)
    }

    .hero h1 {
        font-size: 3rem
    }

    .hero-desc {
        font-size: 1.05rem
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .result-card::after {
        display: none
    }

    .compare-table {
        font-size: .82rem
    }
}

/* -- Tablet portrait / small screens -- */
@media(max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center
    }

    .hero h1 {
        font-size: 2.4rem
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto
    }

    .hero {
        padding: 8rem 0 4rem
    }

    .has-promo .hero {
        padding-top: 9rem
    }

    .hero-actions {
        justify-content: center
    }

    .hero-trust {
        justify-content: center
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .testimonials-grid,
    .steps-grid {
        grid-template-columns: 1fr
    }

    .pricing-4,
    .pricing-2 {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: var(--shadow-lg)
    }

    .nav-links.show {
        display: flex
    }

    .mobile-toggle {
        display: block
    }

    .mobile-controls {
        display: flex
    }

    .country-selector {
        display: none
    }

    .country-dropdown {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 50vh;
        border-radius: 20px 20px 0 0;
        border: none;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, .15)
    }

    .footer-bottom {
        flex-direction: column;
        gap: .5rem;
        text-align: center
    }

    .phone-mockup {
        max-width: 280px;
        margin: 2rem auto 0
    }

    .floating-card {
        display: none
    }

    .step-line {
        display: none
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .hero-visual {
        order: -1
    }

    .cta-box {
        padding: 3rem 2rem
    }

    .cta-box h2 {
        font-size: 1.8rem
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        max-width: 500px
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem
    }

    .guarantee-shield {
        width: 80px;
        height: 80px;
        font-size: 2rem
    }

    .scroll-indicator {
        display: none
    }

    .compare-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    section {
        padding: 4rem 0
    }
}

/* -- Mobile -- */
@media(max-width:480px) {
    .container {
        padding: 0 1rem
    }

    .hero h1 {
        font-size: 1.85rem;
        line-height: 1.15
    }

    .hero-desc {
        font-size: .95rem
    }

    .hero {
        padding: 7rem 0 3rem
    }

    .has-promo .hero {
        padding-top: 8rem
    }

    .has-promo .navbar {
        top: 32px
    }

    .section-title {
        font-size: 1.6rem
    }

    .section-desc {
        font-size: .95rem
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem
    }

    .stat-item h3 {
        font-size: 1.8rem
    }

    .stat-item p {
        font-size: .78rem
    }

    .features-grid {
        grid-template-columns: 1fr
    }

    .feature-card {
        padding: 1.5rem
    }

    .promo-bar {
        font-size: .72rem;
        padding: .4rem .6rem
    }

    .promo-inner {
        gap: .4rem
    }

    .promo-countdown {
        display: none
    }

    .promo-bar a {
        font-size: .7rem
    }

    .logo-text {
        font-size: 1.1rem
    }

    .logo-icon {
        width: 34px;
        height: 34px;
        font-size: .95rem
    }

    .phone-mockup {
        max-width: 260px
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: .8rem
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center
    }

    .btn-lg {
        padding: .9rem 2rem;
        font-size: 1rem
    }

    .price-card {
        padding: 2rem 1.5rem
    }

    .price-amount {
        font-size: 2rem
    }

    .testimonial-card {
        padding: 1.5rem
    }

    .cta-box {
        padding: 2.5rem 1.5rem
    }

    .cta-box h2 {
        font-size: 1.5rem
    }

    .cta-box p {
        font-size: .92rem
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem
    }

    .result-card {
        padding: 1.2rem .5rem
    }

    .result-card::after {
        display: none
    }

    .result-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem
    }

    .result-number {
        font-size: 1.8rem
    }

    .result-label {
        font-size: .78rem
    }

    .trust-logos {
        gap: 1.2rem
    }

    .trust-logo {
        font-size: 1rem
    }

    .trust-logo i {
        font-size: 1.2rem
    }

    .trust-logo span {
        font-size: .75rem
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    footer {
        padding: 3rem 0 1.5rem
    }

    footer h4 {
        font-size: .85rem
    }

    .newsletter-form {
        flex-direction: column
    }

    .newsletter-form button {
        width: 100%
    }

    .faq-q {
        font-size: .85rem;
        padding: .85rem 1rem
    }

    .faq-a p {
        padding: 0 1rem .8rem;
        font-size: .85rem
    }

    .compare-table thead th,
    .compare-table tbody td {
        padding: .45rem .5rem;
        font-size: .75rem
    }

    .ss-tab {
        padding: .4rem .8rem;
        font-size: .78rem
    }

    .wa-float-wrapper {
        bottom: 18px;
        right: 18px
    }

    .wa-float {
        width: 52px;
        height: 52px;
        font-size: 1.5rem
    }

    .wa-float-label {
        display: none
    }

    .steps-grid {
        gap: 1.5rem
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem
    }

    .tech-item {
        padding: 1rem .8rem
    }

    .navbar-inner {
        padding: .6rem 0
    }
}

/* -- Ultra small screens (iPhone SE, etc.) -- */
@media(max-width:360px) {
    .hero h1 {
        font-size: 1.55rem
    }

    .hero-desc {
        font-size: .88rem
    }

    .logo-text {
        font-size: .95rem
    }

    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: .85rem;
        border-radius: 9px
    }

    .section-title {
        font-size: 1.4rem
    }

    .stat-item h3 {
        font-size: 1.5rem
    }

    .stats-grid {
        gap: .8rem
    }

    .price-amount {
        font-size: 1.7rem
    }

    .price-card {
        padding: 1.5rem 1rem
    }

    .result-number {
        font-size: 1.5rem
    }

    .cta-box h2 {
        font-size: 1.3rem
    }

    .phone-mockup {
        max-width: 230px
    }

    .country-btn-mobile {
        width: 32px;
        height: 32px;
        font-size: 1rem
    }

    .mobile-toggle {
        font-size: 1.2rem
    }

    .promo-bar span {
        font-size: .68rem
    }
}