/* =============================================
   VARIABLES & BASE
============================================= */
:root {
    --primary: #2F6FED;
    --primary-dark: #1e3a5f;
    --primary-light: #5B8DEF;
    --primary-glow: rgba(47, 111, 237, 0.25);
    --primary-subtle: rgba(47, 111, 237, 0.08);
    --dark-bg: #0a0e16;
    --dark-2: #10141f;
    --dark-3: #161c2a;
    --dark-4: #1d2436;
    --text-primary: #f0f2f5;
    --text-muted: #8892a0;
    --text-dim: #555f6e;
    --border: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(47, 111, 237, 0.35);
    --success: #22c55e;
    --warning: #f59e0b;
    --radius: 14px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* =============================================
   NAVBAR
============================================= */
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 0;
    background: transparent;
    transition: background .4s ease, box-shadow .4s ease, padding .3s ease;
}

#mainNav.scrolled {
    background: rgba(12, 13, 15, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding .3s ease;
}

#mainNav.scrolled .navbar-inner {
    padding: 12px 24px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 4px 14px var(--primary-glow);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.nav-logo-mark::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}

.nav-logo-text {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.nav-logo-text span {
    color: var(--primary);
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 8px;
    transition: color .2s, background .2s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* CTA buttons */
.btn-nav-ghost {
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 9px;
    border: 1.5px solid var(--border);
    color: var(--text-primary);
    background: transparent;
    text-decoration: none;
    transition: border-color .2s, background .2s;
}

.btn-nav-ghost:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.btn-nav-primary {
    font-size: 0.88rem;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 16px var(--primary-glow);
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap;
}

.btn-nav-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(47, 111, 237, 0.45);
    color: #fff;
}

/* Mobile toggle */
.nav-toggler {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px;
}

/* Mobile menu */
.nav-mobile {
    display: none;
    background: rgba(12, 13, 15, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
}

.nav-mobile.open {
    display: block;
}

.nav-mobile a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 4px;
    border-bottom: 1px solid var(--border);
    transition: color .2s;
}

.nav-mobile a:last-child {
    border-bottom: none;
}

.nav-mobile a:hover {
    color: var(--primary);
}

/* =============================================
   HERO
============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
    background: var(--dark-bg);
}

/* Gradient mesh background */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(47, 111, 237, 0.13) 0%, transparent 65%);
    border-radius: 50%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(47, 111, 237, 0.07) 0%, transparent 65%);
    border-radius: 50%;
}

/* Subtle grid lines */
.hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left col */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-subtle);
    border: 1px solid rgba(47, 111, 237, 0.2);
    color: var(--primary-light);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .2;
    }
}

.hero-title {
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--text-primary);
    letter-spacing: -1.5px;
    margin-bottom: 22px;
}

.hero-title .line-accent {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .line-outline {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.18);
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-desc strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* CTA row */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 52px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 6px 24px var(--primary-glow);
    transition: transform .25s, box-shadow .25s;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(47, 111, 237, 0.5);
    color: #fff;
}

.btn-hero-primary i {
    font-size: 1.1rem;
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--dark-3);
    color: var(--text-primary);
    padding: 14px 26px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid var(--border);
    text-decoration: none;
    transition: border-color .25s, background .25s;
}

.btn-hero-ghost:hover {
    border-color: var(--border-hover);
    background: var(--dark-4);
    color: var(--text-primary);
}

/* Trust row */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-trust-label {
    font-size: 0.78rem;
    color: var(--text-dim);
    font-weight: 500;
    margin-right: 4px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-pill i {
    color: var(--primary);
    font-size: 0.78rem;
}

/* ---- STATS ROW ---- */
.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 52px;
}

.hero-stat {
    background: var(--dark-2);
    padding: 22px 20px;
    text-align: center;
}

.hero-stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 5px;
}

.hero-stat-num .accent {
    color: var(--primary);
}

.hero-stat-label {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- HERO RIGHT: DASHBOARD MOCK ---- */
.hero-visual {
    position: relative;
}

.hero-visual-inner {
    position: relative;
}

/* Glow ring behind card */
.visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(ellipse, rgba(47, 111, 237, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.dash-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(47, 111, 237, 0.08),
        0 24px 80px rgba(0, 0, 0, 0.55),
        0 0 60px rgba(47, 111, 237, 0.06);
    position: relative;
    z-index: 1;
}

/* Window chrome */
.dash-chrome {
    background: var(--dark-3);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
}

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

.chrome-dot.r {
    background: #ff5f57;
}

.chrome-dot.y {
    background: #febc2e;
}

.chrome-dot.g {
    background: #28c840;
}

.chrome-title {
    margin-left: 10px;
    font-size: 0.76rem;
    color: var(--text-dim);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.chrome-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: var(--success);
    font-weight: 600;
}

.chrome-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    animation: blink 2s infinite;
}

/* Dash content */
.dash-content {
    padding: 16px;
}

/* KPI row */
.kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.kpi {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 13px 12px;
}

.kpi-label {
    font-size: 0.63rem;
    color: var(--text-dim);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 5px;
}

.kpi-val {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 3px;
}

.kpi-delta {
    font-size: 0.64rem;
    font-weight: 600;
}

.kpi-delta.up {
    color: var(--success);
}

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

/* Chart */
.chart-wrap {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 14px 10px;
    margin-bottom: 14px;
}

.chart-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.chart-head-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.chart-head-val {
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 700;
}

.chart-bars-wrap {
    display: flex;
    gap: 5px;
    align-items: flex-end;
    height: 64px;
}

.c-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(47, 111, 237, 0.25) 100%);
    transition: height .4s ease;
    position: relative;
}

.c-bar.active {
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
}

.c-bar-label {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    color: var(--text-dim);
    white-space: nowrap;
}

.chart-bars-outer {
    padding-bottom: 18px;
}

/* Table */
.mini-table {
    width: 100%;
    border-collapse: collapse;
}

.mt-head th {
    font-size: 0.6rem;
    color: var(--text-dim);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 7px 10px;
    background: var(--dark-3);
    border-bottom: 1px solid var(--border);
}

.mt-head th:last-child {
    text-align: right;
}

.mini-table td {
    padding: 8px 10px;
    font-size: 0.7rem;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mini-table tr:last-child td {
    border-bottom: none;
}

.td-price {
    text-align: right;
    color: var(--primary);
    font-weight: 700;
}

.td-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    border-radius: 10px;
    font-size: 0.58rem;
    font-weight: 700;
}

.badge-ok {
    background: rgba(34, 197, 94, 0.12);
    color: var(--success);
}

.badge-low {
    background: rgba(245, 158, 11, 0.12);
    color: var(--warning);
}

/* Floating chips */
.float-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 2;
    white-space: nowrap;
}

.chip-top {
    top: -18px;
    right: -20px;
    border-color: rgba(34, 197, 94, 0.2);
    animation: float1 4s ease-in-out infinite;
}

.chip-bottom {
    bottom: -16px;
    left: -20px;
    border-color: rgba(47, 111, 237, 0.2);
    animation: float2 4s ease-in-out infinite 1s;
}

.chip-icon {
    font-size: 1rem;
}

@keyframes float1 {

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

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

@keyframes float2 {

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

    50% {
        transform: translateY(6px)
    }
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 991px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-toggler {
        display: block;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .hero {
        padding-top: 100px;
    }
}

@media (max-width: 576px) {
    .hero-stats-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-title {
        letter-spacing: -1px;
    }
}

/* =============================================
   SECTION COMMONS
============================================= */
.section-wrap {
    padding: 100px 24px;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap-: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--primary);
    margin-bottom: 14px;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    margin-right: 8px;
    vertical-align: middle;
}

.section-title {
    font-size: clamp(1.9rem, 3vw, 2.9rem);
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.section-title span {
    color: var(--primary);
}

.section-sub {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 560px;
}

/* =============================================
   FEATURES SECTION
============================================= */
#features {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

/* Subtle top separator line glow */
#features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(47, 111, 237, 0.3), transparent);
}

/* Featured card (full-width top) */
.feat-hero-card {
    background: linear-gradient(135deg, var(--dark-3) 0%, rgba(47, 111, 237, 0.06) 100%);
    border: 1px solid rgba(47, 111, 237, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px 44px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
}

.feat-hero-card:hover {
    border-color: rgba(47, 111, 237, 0.4);
    box-shadow: 0 0 60px rgba(47, 111, 237, 0.08), 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feat-hero-card::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(47, 111, 237, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.feat-hero-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px var(--primary-glow);
}

.feat-hero-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.feat-hero-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 22px;
}

.feat-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--dark-4);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 5px 13px;
    font-size: 0.77rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: border-color .2s, color .2s;
}

.feat-pill i {
    color: var(--primary);
    font-size: 0.72rem;
}

.feat-pill:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

/* Cloud animation visual in hero card right col */
.feat-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 200px;
}

.cloud-ring {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1.5px solid rgba(47, 111, 237, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin-slow 18s linear infinite;
    position: relative;
}

.cloud-ring::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.cloud-ring-2 {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1.5px solid rgba(47, 111, 237, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin-slow 10s linear infinite reverse;
    position: relative;
}

.cloud-ring-2::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-light);
    box-shadow: 0 0 8px var(--primary-light);
}

.cloud-center {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(47, 111, 237, 0.2), rgba(47, 111, 237, 0.05));
    border: 1px solid rgba(47, 111, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

/* Orbit nodes */
.orbit-node {
    position: absolute;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

.orbit-node.n1 {
    top: 10px;
    right: -10px;
}

.orbit-node.n2 {
    bottom: 20px;
    right: -20px;
}

.orbit-node.n3 {
    bottom: 10px;
    left: -10px;
}

/* Grid of 6 cards (2x3) */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feat-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 24px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

/* Top accent line — hidden by default, revealed on hover */
.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.feat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(47, 111, 237, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 40px rgba(47, 111, 237, 0.05);
}

.feat-card:hover::before {
    transform: scaleX(1);
}

/* Inner glow on hover */
.feat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(47, 111, 237, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
}

.feat-card:hover::after {
    opacity: 1;
}

.feat-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    transition: transform .3s;
}

.feat-card:hover .feat-icon-wrap {
    transform: scale(1.1) rotate(-4deg);
}

.feat-card-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.feat-card-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

.feat-card-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .3s, transform .3s;
    position: relative;
    z-index: 1;
}

.feat-card:hover .feat-card-link {
    opacity: 1;
    transform: translateX(0);
}

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

    .feat-hero-card {
        grid-template-columns: 1fr;
    }

    .feat-hero-visual {
        display: none;
    }
}

@media (max-width: 576px) {
    .feat-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   NUBE & LOCAL SECTION
============================================= */
#deployment {
    background: var(--dark-2);
    position: relative;
    overflow: hidden;
}

#deployment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(47, 111, 237, 0.2), transparent);
}

/* Toggle switch */
.deploy-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.deploy-toggle-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: color .3s;
    cursor: pointer;
    user-select: none;
}

.deploy-toggle-label.active {
    color: var(--text-primary);
}

.toggle-switch {
    position: relative;
    width: 58px;
    height: 30px;
    background: var(--dark-4);
    border: 1px solid var(--border);
    border-radius: 30px;
    cursor: pointer;
    transition: background .3s;
}

.toggle-switch.local {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
}

.toggle-knob {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 2px 8px var(--primary-glow);
    transition: transform .35s cubic-bezier(.68, -.55, .27, 1.55), background .3s;
}

.toggle-switch.local .toggle-knob {
    transform: translateX(28px);
    background: linear-gradient(135deg, var(--success), #16a34a);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
}

/* Comparison grid */
.deploy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

/* Cards */
.deploy-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.deploy-card:hover {
    transform: translateY(-4px);
}

.deploy-card.cloud {
    background: linear-gradient(160deg, var(--dark-3) 0%, rgba(47, 111, 237, 0.04) 100%);
    border-color: rgba(47, 111, 237, 0.2);
}

.deploy-card.cloud:hover {
    border-color: rgba(47, 111, 237, 0.4);
    box-shadow: 0 20px 60px rgba(47, 111, 237, 0.08), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.deploy-card.local {
    background: linear-gradient(160deg, var(--dark-3) 0%, rgba(34, 197, 94, 0.04) 100%);
    border-color: rgba(34, 197, 94, 0.15);
}

.deploy-card.local:hover {
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.06), 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Card header */
.deploy-head {
    padding: 28px 30px 22px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.deploy-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.cloud .deploy-icon-box {
    background: linear-gradient(135deg, rgba(47, 111, 237, 0.2), rgba(47, 111, 237, 0.06));
}

.local .deploy-icon-box {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.04));
}

.deploy-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.cloud .deploy-badge {
    background: rgba(47, 111, 237, 0.12);
    color: var(--primary-light);
}

.local .deploy-badge {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.deploy-head-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.deploy-head-sub {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Card body: checklist */
.deploy-body {
    padding: 22px 30px 28px;
}

.deploy-list {
    list-style: none;
}

.deploy-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.88rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.deploy-list li:last-child {
    border-bottom: none;
}

.dl-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    margin-top: 1px;
}

.cloud .dl-icon {
    background: rgba(47, 111, 237, 0.12);
    color: var(--primary);
}

.local .dl-icon {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.dl-text strong {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 1px;
}

.dl-text span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Bottom CTA inside card */
.deploy-foot {
    padding: 0 30px 28px;
}

.btn-deploy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s, opacity .2s;
}

.btn-deploy.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 18px var(--primary-glow);
}

.btn-deploy.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(47, 111, 237, 0.45);
    color: #fff;
}

.btn-deploy.ghost {
    background: var(--dark-4);
    border: 1px solid var(--border);
    color: var(--text-primary);
}

.btn-deploy.ghost:hover {
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.06);
    color: var(--text-primary);
}

/* Center VS divider */
.deploy-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.vs-line {
    width: 1px;
    height: 60px;
    background: var(--border);
}

.vs-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--dark-3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-dim);
}

/* Highlight strip */
.deploy-highlight {
    margin-top: 32px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.dh-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.dh-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    margin-bottom: 3px;
}

.dh-text span {
    font-size: 0.84rem;
    color: var(--text-muted);
}

.dh-badge {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(47, 111, 237, 0.1);
    border: 1px solid rgba(47, 111, 237, 0.2);
    color: var(--primary-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .deploy-grid {
        grid-template-columns: 1fr;
    }

    .dh-badge {
        margin-left: 0;
    }
}

/* =============================================
   MÓDULOS SECTION
============================================= */
#modules {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

#modules::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(47, 111, 237, 0.25), transparent);
}

/* Ambient glow */
#modules::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(47, 111, 237, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.modules-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 24px;
    align-items: start;
    margin-top: 52px;
}

/* ── Left: Tab list ── */
.mod-tabs {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mod-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--radius);
    background: var(--dark-2);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
}

/* Left accent bar */
.mod-tab::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
    transform: scaleY(0);
    transform-origin: center;
    transition: transform .3s ease;
    border-radius: 0 2px 2px 0;
}

.mod-tab:hover {
    border-color: rgba(47, 111, 237, 0.2);
    background: var(--dark-3);
    transform: translateX(2px);
}

.mod-tab.active {
    background: linear-gradient(135deg, rgba(47, 111, 237, 0.1), rgba(47, 111, 237, 0.04));
    border-color: rgba(47, 111, 237, 0.3);
    transform: translateX(4px);
}

.mod-tab.active::before {
    transform: scaleY(1);
}

.mod-tab-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: var(--dark-4);
    border: 1px solid var(--border);
    transition: background .25s, border-color .25s, transform .25s;
}

.mod-tab.active .mod-tab-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: 0 4px 14px var(--primary-glow);
}

.mod-tab-info {
    flex: 1;
    min-width: 0;
}

.mod-tab-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.mod-tab-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mod-tab-arrow {
    color: var(--text-dim);
    font-size: 0.85rem;
    transition: color .25s, transform .25s;
    flex-shrink: 0;
}

.mod-tab.active .mod-tab-arrow {
    color: var(--primary);
    transform: translateX(2px);
}

/* ── Right: Panel ── */
.mod-panel {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: sticky;
    top: 88px;
    transition: border-color .3s;
}

.mod-panel:has(.panel-visible) {
    border-color: rgba(47, 111, 237, 0.2);
}

/* Panel top bar */
.mod-panel-header {
    padding: 24px 28px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: linear-gradient(135deg, var(--dark-3), rgba(47, 111, 237, 0.03));
}

.panel-icon-big {
    width: 56px;
    height: 56px;
    border-radius: 15px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px var(--primary-glow);
}

.panel-header-text {}

.panel-tag {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 5px;
}

.panel-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: -0.4px;
}

.panel-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Panel body: feature list */
.mod-panel-body {
    padding: 22px 28px 26px;
}

.panel-feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 22px;
}

.panel-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 13px;
    border-radius: 10px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    transition: border-color .2s;
}

.panel-feat-item:hover {
    border-color: rgba(47, 111, 237, 0.2);
}

.pfi-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    flex-shrink: 0;
    background: rgba(47, 111, 237, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 800;
}

.pfi-text {
    font-size: 0.8rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
}

/* Panel CTA */
.panel-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(47, 111, 237, 0.1), rgba(47, 111, 237, 0.04));
    border: 1px solid rgba(47, 111, 237, 0.2);
    flex-wrap: wrap;
    gap: 12px;
}

.panel-cta-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.panel-cta-text strong {
    color: var(--text-primary);
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.btn-panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 9px 18px;
    border-radius: 9px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-panel-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(47, 111, 237, 0.45);
    color: #fff;
}

/* Fade transition for panel content */
.panel-content {
    animation: panelIn .35s ease;
}

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

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

/* Progress bar (modules count) */
.mod-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.mod-progress-bar {
    flex: 1;
    height: 3px;
    background: var(--dark-4);
    border-radius: 3px;
    overflow: hidden;
}

.mod-progress-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: width .4s ease;
}

.mod-progress-label {
    font-size: 0.72rem;
    color: var(--text-dim);
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .modules-layout {
        grid-template-columns: 1fr;
    }

    .mod-panel {
        position: static;
    }

    .panel-feat-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   ¿POR QUÉ ODAMIC? SECTION
============================================= */
#why {
    background: var(--dark-2);
    position: relative;
    overflow: hidden;
}

#why::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(47, 111, 237, 0.2), transparent);
}

#why::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(47, 111, 237, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

/* Big number cards top row */
.why-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.why-num-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, transform .3s;
}

.why-num-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.why-num-card:hover {
    border-color: rgba(47, 111, 237, 0.25);
    transform: translateY(-4px);
}

.why-num-card:hover::before {
    transform: scaleX(1);
}

.wn-number {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.wn-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.4;
}

/* Why cards grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.why-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color .3s, transform .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 90%, rgba(47, 111, 237, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
}

.why-card:hover {
    border-color: rgba(47, 111, 237, 0.22);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.why-card:hover::after {
    opacity: 1;
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: transform .3s;
}

.why-card:hover .why-icon {
    transform: scale(1.12) rotate(-5deg);
}

.why-card-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
}

.why-card-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}

.why-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(47, 111, 237, 0.08);
    border: 1px solid rgba(47, 111, 237, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
    align-self: flex-start;
}

@media (max-width: 991px) {
    .why-numbers {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-numbers {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================
   PRICING SECTION
============================================= */
#pricing {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

#pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(47, 111, 237, 0.25), transparent);
}

#pricing::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -150px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(47, 111, 237, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

/* Billing toggle */
.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.ptog-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: color .2s;
}

.ptog-label.active {
    color: var(--text-primary);
}

.ptog-switch {
    width: 52px;
    height: 28px;
    background: var(--dark-4);
    border: 1px solid var(--border);
    border-radius: 28px;
    cursor: pointer;
    position: relative;
    transition: background .3s;
}

.ptog-switch.annual {
    background: rgba(47, 111, 237, 0.15);
    border-color: rgba(47, 111, 237, 0.3);
}

.ptog-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 2px 6px var(--primary-glow);
    transition: transform .35s cubic-bezier(.68, -.55, .27, 1.55);
}

.ptog-switch.annual .ptog-knob {
    transform: translateX(24px);
}

.ptog-save {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: var(--success);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
}

/* Pricing grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: start;
    max-width: 800px;
    margin: 0 auto;
}

.price-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    position: relative;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.price-card.featured {
    background: linear-gradient(160deg, var(--dark-3) 0%, rgba(47, 111, 237, 0.05) 100%);
    border-color: rgba(47, 111, 237, 0.3);
    transform: scale(1.02);
}

.price-card.featured:hover {
    transform: scale(1.02) translateY(-6px);
    box-shadow: 0 24px 60px rgba(47, 111, 237, 0.12);
}

.plan-ribbon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    text-align: center;
    padding: 7px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.plan-head {
    padding: 28px 26px 20px;
    border-bottom: 1px solid var(--border);
}

.plan-name {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.plan-price-row {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 6px;
}

.plan-currency {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.plan-amount {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-primary);
    letter-spacing: -2px;
    transition: all .3s;
}

.plan-amount.primary {
    color: var(--primary);
}

.plan-period {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.plan-tagline {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.plan-body {
    padding: 20px 26px;
}

.plan-feat-list {
    list-style: none;
    margin-bottom: 22px;
}

.plan-feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.86rem;
    color: var(--text-primary);
}

.plan-feat-list li:last-child {
    border-bottom: none;
}

.plan-feat-list li.off {
    color: var(--text-dim);
}

.pfl-icon {
    width: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 0.75rem;
}

.pfl-icon.ok {
    color: var(--success);
}

.pfl-icon.off {
    color: var(--text-dim);
}

.pfl-icon.star {
    color: var(--primary);
}

.btn-plan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all .25s;
}

.btn-plan.ghost {
    background: var(--dark-4);
    border: 1.5px solid var(--border);
    color: var(--text-primary);
}

.btn-plan.ghost:hover {
    border-color: rgba(47, 111, 237, 0.3);
    background: rgba(47, 111, 237, 0.06);
    color: var(--text-primary);
}

.btn-plan.solid {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 18px var(--primary-glow);
}

.btn-plan.solid:hover {
    box-shadow: 0 8px 28px rgba(47, 111, 237, 0.5);
    transform: translateY(-1px);
    color: #fff;
}

.btn-plan.outline {
    background: transparent;
    border: 1.5px solid rgba(47, 111, 237, 0.3);
    color: var(--primary);
}

.btn-plan.outline:hover {
    background: rgba(47, 111, 237, 0.08);
    color: var(--primary);
}

/* FAQ strip below pricing */
.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.pnote-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.pnote-item i {
    color: var(--primary);
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: none;
    }
}

/* =============================================
   CTA FINAL SECTION
============================================= */
#cta-final {
    background: var(--dark-2);
    position: relative;
    overflow: hidden;
    padding: 100px 24px;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(47, 111, 237, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.cta-inner-wrap {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(47, 111, 237, 0.08);
    border: 1px solid rgba(47, 111, 237, 0.2);
    color: var(--primary-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.cta-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.cta-title span {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.cta-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.csp-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.csp-item i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* =============================================
   FOOTER
============================================= */
#footer {
    background: var(--dark-bg);
    border-top: 1px solid var(--border);
    padding: 60px 24px 28px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
}

/* Brand col */
.footer-brand-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 14px 0 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: none;
    transition: border-color .2s, color .2s, background .2s;
}

.social-btn:hover {
    border-color: rgba(47, 111, 237, 0.3);
    color: var(--primary);
    background: rgba(47, 111, 237, 0.06);
}

/* Link cols */
.footer-col-title {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    font-size: 0.86rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links .fl-new {
    font-size: 0.6rem;
    font-weight: 800;
    background: rgba(47, 111, 237, 0.15);
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--text-dim);
}

.footer-copy span {
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.82rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: color .2s;
}

.footer-legal a:hover {
    color: var(--text-muted);
}

.footer-made {
    font-size: 0.78rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-made span {
    color: var(--primary);
}

@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

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

/* =============================================
   EN LA NUBE SECTION (reemplaza Nube & Local)
============================================= */
#deployment {
    background: var(--dark-2);
    position: relative;
    overflow: hidden;
}

#deployment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(47, 111, 237, 0.25), transparent);
}

#deployment::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(47, 111, 237, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

/* ── Hero cloud card ── */
.cloud-hero-wrap {
    margin-bottom: 24px;
}

.cloud-hero-card {
    background: linear-gradient(135deg, var(--dark-3) 0%, rgba(47, 111, 237, 0.05) 100%);
    border: 1px solid rgba(47, 111, 237, 0.2);
    border-radius: var(--radius-lg);
    padding: 48px 48px 48px 44px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
}

.cloud-hero-card:hover {
    border-color: rgba(47, 111, 237, 0.35);
    box-shadow: 0 20px 60px rgba(47, 111, 237, 0.07), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cloud-hero-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(47, 111, 237, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cloud-main-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(47, 111, 237, 0.1);
    border: 1px solid rgba(47, 111, 237, 0.2);
    color: var(--primary-light);
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.cloud-main-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.cloud-main-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

/* Stats inside hero card */
.cloud-stat-row {
    display: flex;
    gap: 0;
    background: var(--dark-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.cloud-stat {
    flex: 1;
    padding: 18px 16px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.cloud-stat:last-child {
    border-right: none;
}

.cloud-stat-num {
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.cloud-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* ── Device mockup ── */
.cloud-hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-wrap {
    position: relative;
    width: 100%;
    max-width: 340px;
}

.device-laptop {
    background: var(--dark-4);
    border: 1px solid var(--border);
    border-radius: 12px 12px 0 0;
    padding: 8px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(47, 111, 237, 0.08);
}

.device-screen {
    background: var(--dark-bg);
    border-radius: 6px;
    overflow: hidden;
}

.device-topbar {
    background: var(--dark-3);
    padding: 7px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.device-dots {
    display: flex;
    gap: 4px;
}

.device-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.device-dots span:first-child {
    background: #ff5f57;
}

.device-dots span:nth-child(2) {
    background: #febc2e;
}

.device-dots span:nth-child(3) {
    background: #28c840;
}

.device-url {
    flex: 1;
    background: var(--dark-4);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.6rem;
    color: var(--text-dim);
    text-align: center;
}

.device-lock {
    font-size: 0.65rem;
    color: var(--success);
}

.device-content {
    padding: 10px;
}

.dc-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 10px;
}

.dc-kpi {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 7px 8px;
}

.dc-kpi.alert {
    border-color: rgba(245, 158, 11, 0.2);
}

.dc-kpi-l {
    font-size: 0.52rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.dc-kpi-v {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text-primary);
}

.dc-kpi.alert .dc-kpi-v {
    color: var(--warning);
}

.dc-bar-wrap {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 44px;
    margin-bottom: 8px;
}

.dc-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(180deg, var(--primary), rgba(47, 111, 237, 0.2));
}

.dc-bar.active {
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
}

.dc-sync {
    font-size: 0.58rem;
    color: var(--success);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dc-sync i {
    animation: spin-slow 2s linear infinite;
}

.device-base {
    height: 10px;
    background: var(--dark-3);
    border-radius: 0 0 4px 4px;
    margin: 0 -8px;
    border-top: 1px solid var(--border);
}

.device-foot {
    height: 6px;
    background: var(--dark-4);
    border-radius: 0 0 12px 12px;
    margin: 0 20px;
    border: 1px solid var(--border);
    border-top: none;
}

/* Floating badges on device */
.device-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

.device-badge i {
    color: var(--primary);
}

.b1 {
    top: 10px;
    right: -30px;
    animation: float1 4s ease-in-out infinite;
    border-color: rgba(47, 111, 237, 0.2);
}

.b2 {
    bottom: 40px;
    right: -36px;
    animation: float2 4s ease-in-out infinite 0.8s;
    border-color: rgba(47, 111, 237, 0.15);
}

.b3 {
    bottom: -10px;
    left: -30px;
    animation: float1 4s ease-in-out infinite 1.5s;
    border-color: rgba(34, 197, 94, 0.2);
}

.b3 i {
    color: var(--success);
}

/* ── 6 benefit cards grid ── */
.cloud-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.cloud-benefit-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 24px;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
}

.cloud-benefit-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.cloud-benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(47, 111, 237, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.cloud-benefit-card:hover::before {
    transform: scaleX(1);
}

.cbc-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 14px;
    transition: transform .3s;
}

.cloud-benefit-card:hover .cbc-icon {
    transform: scale(1.1) rotate(-5deg);
}

.cbc-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cbc-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.65;
}

@media (max-width: 991px) {
    .cloud-hero-card {
        grid-template-columns: 1fr;
    }

    .cloud-hero-right {
        display: none;
    }

    .cloud-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cloud-benefits-grid {
        grid-template-columns: 1fr;
    }

    .cloud-stat-row {
        flex-direction: column;
    }

    .cloud-stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .cloud-stat:last-child {
        border-bottom: none;
    }
}

/* =============================================
   PRICING — nuevos elementos
============================================= */
.plan-limits-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
    padding: 14px;
    border-radius: 10px;
    background: var(--dark-bg);
    border: 1px solid var(--border);
}

.plan-limit {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
}

.plan-limit i {
    color: var(--primary);
    font-size: 0.82rem;
}

.price-card.featured .plan-limit i {
    color: var(--primary-light);
}

.plan-modules-label {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-dim);
    margin-bottom: 10px;
}

/* Comparison table */
.pricing-compare {
    margin-top: 36px;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.pc-header,
.pc-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

.pc-row:last-child {
    border-bottom: none;
}

.pc-header {
    background: var(--dark-3);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pc-header .pc-plan {
    color: var(--text-muted);
}

.pc-header .pc-plan span {
    display: block;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.pc-header .pc-plan.highlight {
    color: var(--text-primary);
    background: rgba(47, 111, 237, 0.06);
}

.pc-feature,
.pc-val,
.pc-plan {
    padding: 11px 16px;
    font-size: 0.84rem;
    display: flex;
    align-items: center;
}

.pc-feature {
    color: var(--text-muted);
    font-size: 0.83rem;
}

.pc-val {
    justify-content: center;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.82rem;
}

.pc-val.highlight {
    background: rgba(47, 111, 237, 0.04);
}

.pc-plan {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 2px;
}

.pc-row:hover {
    background: rgba(255, 255, 255, 0.015);
}

.text-success {
    color: var(--success) !important;
}

.text-muted-val {
    color: var(--text-dim) !important;
}

@media (max-width: 767px) {
    .pricing-compare {
        display: none;
    }

    .plan-limits-row {
        flex-direction: column;
        gap: 6px;
    }
}

/* =============================================
   PLAN PROMO STRIP
============================================= */
.plan-promo {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: linear-gradient(135deg, rgba(47, 111, 237, 0.12), rgba(47, 111, 237, 0.05));
    border: 1px solid rgba(47, 111, 237, 0.3);
    border-radius: 10px;
    padding: 12px 14px;
    margin: 12px 0 14px;
    position: relative;
    overflow: hidden;
}

.plan-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px 2px 0 0;
}

.plan-promo-alt {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(139, 92, 246, 0.03));
    border-color: rgba(139, 92, 246, 0.25);
}

.plan-promo-alt::before {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.plan-promo-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    animation: float1 3s ease-in-out infinite;
}

.plan-promo-title {
    font-size: 0.73rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--primary);
    margin-bottom: 3px;
}

.plan-promo-alt .plan-promo-title {
    color: #a78bfa;
}

.plan-promo-desc {
    font-size: 0.82rem;
    color: var(--text-primary);
    line-height: 1.45;
    margin-bottom: 4px;
}

.plan-promo-desc strong {
    color: var(--primary);
    font-weight: 800;
}

.plan-promo-alt .plan-promo-desc strong {
    color: #a78bfa;
}

.plan-promo-total {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--success);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.plan-promo-total::before {
    content: '✓';
    font-size: 0.65rem;
}