/* ============================================================
   HYDRUS SUPPORT PAGE — REDESIGN PREMIUM 2026
   Paleta: Deep Void + Violet (#7c3aed) + Gold (#fbbf24)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ────────────────────────────────────────────────── */
:root {
    --bg-void:      #06010f;
    --bg-deep:      #0a0118;
    --bg-card:      rgba(14, 6, 30, 0.85);
    --bg-glass:     rgba(255,255,255,0.03);
    --primary:      #7c3aed;
    --primary-glow: rgba(124, 58, 237, 0.35);
    --primary-dim:  rgba(124, 58, 237, 0.15);
    --accent:       #fbbf24;
    --accent-glow:  rgba(251, 191, 36, 0.3);
    --accent-dim:   rgba(251, 191, 36, 0.12);
    --violet-mid:   #a78bfa;
    --text-white:   #ffffff;
    --text-dim:     #c4b5fd;
    --text-muted:   #8b7aa8;
    --text-faint:   #5c4d75;
    --border:       rgba(255,255,255,0.06);
    --border-violet:rgba(124, 58, 237, 0.25);
    --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
    --font-display: 'Chakra Petch', sans-serif;
    --font-body:    'Inter', sans-serif;
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-void);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── CANVAS DE PARTÍCULAS ──────────────────────────────────── */
#particles-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* ── UTILITÁRIOS ───────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, #f97316 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.section-label span {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid rgba(251, 191, 36, 0.2);
    padding: 0.45rem 1.2rem;
    border-radius: 100px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}


/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse 100% 60% at 70% 0%, rgba(124,58,237,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 60% 50% at 10% 90%, rgba(251,191,36,0.05) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124,58,237,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124,58,237,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 100% 100% at 60% 40%, black 20%, transparent 80%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.hero-orb--left {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
    left: -20%; top: -10%;
    animation: float-orb 10s ease-in-out infinite;
}

.hero-orb--right {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(251,191,36,0.07) 0%, transparent 70%);
    right: -5%; bottom: -10%;
    animation: float-orb 13s ease-in-out infinite reverse;
}

@keyframes float-orb {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-30px) scale(1.04); }
}

/* ── HERO SPLIT LAYOUT ───────────────────────────────────── */
.hero-split {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 8rem 5rem;
    animation: hero-enter 1s var(--ease-smooth) both;
}

@keyframes hero-enter {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── HERO COPY (left) ────────────────────────────────────── */
.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.logo-wrapper { margin-bottom: 0.2rem; }

.main-logo {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 0 16px rgba(124,58,237,0.3));
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--violet-mid);
    background: rgba(167,139,250,0.07);
    border: 1px solid rgba(167,139,250,0.2);
    padding: 0.45rem 1.2rem;
    border-radius: 100px;
}

.pulse-dot {
    width: 7px; height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.5); opacity: 0.5; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 3.5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 440px;
}

/* ── STATS ROW ───────────────────────────────────────────── */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    width: 100%;
    margin: 0.5rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}

.stat-unit {
    font-size: 1.2rem;
    color: var(--accent);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-sep {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

/* ── SCROLL CTA ──────────────────────────────────────────── */
.scroll-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary) 0%, #5b21b6 100%);
    padding: 0.9rem 2rem;
    border-radius: 12px;
    box-shadow: 0 0 24px rgba(124,58,237,0.35);
    transition: all 0.3s var(--ease-smooth);
}

.scroll-cta i { transition: transform 0.3s; }

.scroll-cta:hover {
    box-shadow: 0 0 36px rgba(124,58,237,0.55);
    transform: translateY(-2px);
}

.scroll-cta:hover i { transform: translateX(4px); }

/* ── HERO VISUAL (right) ─────────────────────────────────── */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ── STATUS DASHBOARD ────────────────────────────────────── */
.status-dashboard {
    position: relative;
    width: 100%;
    max-width: 420px;
}

/* Card principal */
.dash-main-card {
    background: rgba(14, 6, 30, 0.7);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    padding: 1.8rem;
    backdrop-filter: blur(24px);
    box-shadow:
        0 0 0 1px rgba(124,58,237,0.1),
        0 24px 48px rgba(0,0,0,0.5),
        0 0 60px rgba(124,58,237,0.06);
    animation: dash-float 6s ease-in-out infinite;
}

@keyframes dash-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.dash-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.dash-header-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.dash-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dash-dot--green {
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: pulse 2s ease-in-out infinite;
}

.dash-card-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.dash-live-tag {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
}

/* Status rows */
.dash-status-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dash-status-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dash-status-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.83rem;
    color: var(--text-muted);
    flex: 1;
}

.dash-status-label i {
    color: var(--violet-mid);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.dash-status-badge {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    flex-shrink: 0;
}

.dash-status-badge--ok {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
}

/* Uptime bar */
.dash-uptime-bar {
    flex: 1;
    height: 5px;
    background: rgba(255,255,255,0.06);
    border-radius: 100px;
    overflow: hidden;
}

.dash-uptime-fill {
    display: block;
    height: 100%;
    width: 99.9%;
    background: linear-gradient(90deg, var(--primary), #a78bfa);
    border-radius: 100px;
}

.dash-uptime-pct {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--violet-mid);
    flex-shrink: 0;
}

/* Float cards */
.dash-float-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: rgba(14, 6, 30, 0.75);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 1rem 1.3rem;
    backdrop-filter: blur(20px);
    position: absolute;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.dash-float-card--ticket {
    bottom: -2.5rem;
    left: -2rem;
    animation: dash-float 7s ease-in-out infinite 1s;
}

.dash-float-card--backup {
    top: -2rem;
    right: -2rem;
    animation: dash-float 8s ease-in-out infinite 2s;
}

.dash-float-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.dash-float-icon--purple {
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.25);
    color: var(--violet-mid);
}

.dash-float-icon--gold {
    background: rgba(251,191,36,0.12);
    border: 1px solid rgba(251,191,36,0.25);
    color: var(--accent);
}

.dash-float-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.dash-float-value {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}

.dash-float-label {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Wrapper precisa de espaço para os float cards absolutos */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 3rem 2.5rem;
}


/* ════════════════════════════════════════════════════════════
   PLANS SECTION
   ════════════════════════════════════════════════════════════ */
.plans-section {
    position: relative;
    z-index: 1;
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-void) 100%);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

/* ── PLAN CARD ────────────────────────────────────────────── */
.plan-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
    transition: transform 0.4s var(--ease-smooth), border-color 0.3s;
    backdrop-filter: blur(20px);
    cursor: default;
}

.plan-card:hover {
    border-color: var(--border-violet);
}

.plan-card--featured {
    border-color: rgba(251,191,36,0.3);
    background: linear-gradient(160deg, rgba(16,6,36,0.95) 0%, rgba(251,191,36,0.04) 100%);
    box-shadow:
        0 0 0 1px rgba(251,191,36,0.2),
        0 40px 80px rgba(0,0,0,0.5),
        0 0 60px rgba(251,191,36,0.06);
    transform: translateY(-12px);
}

.plan-card--featured:hover {
    border-color: rgba(251,191,36,0.5);
}

/* ── GLOW BLOB ─────────────────────────────────────────────── */
.card-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    background: rgba(124,58,237,0.12);
}

.card-glow--gold {
    background: rgba(251,191,36,0.15);
}

.card-glow--purple {
    background: rgba(124,58,237,0.2);
}

/* ── FEATURED BADGE ─────────────────────────────────────────── */
.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0a0118;
    background: var(--accent);
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    box-shadow: 0 0 16px var(--accent-glow);
}

.featured-badge i { font-size: 0.8rem; }

/* ── PLAN TOP ─────────────────────────────────────────────── */
.plan-top {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.plan-stage {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.plan-stage--gold { color: var(--accent); }

.plan-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(124,58,237,0.1);
    border: 1px solid rgba(124,58,237,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    transition: all 0.3s;
}

.plan-card:hover .plan-icon-wrap { background: rgba(124,58,237,0.18); }

.plan-icon-wrap--gold {
    background: rgba(251,191,36,0.1);
    border-color: rgba(251,191,36,0.25);
    color: var(--accent);
}

.plan-icon-wrap--purple {
    background: rgba(124,58,237,0.15);
    border-color: rgba(124,58,237,0.3);
    color: var(--violet-mid);
}

.plan-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-white);
    margin-top: 0.2rem;
}

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

/* ── PRICE BLOCK ──────────────────────────────────────────── */
.plan-price-block {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.1rem;
    line-height: 1;
}

.price-currency {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    align-self: flex-start;
    padding-top: 0.5rem;
}

.price-value {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -2px;
}

.price-cents {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dim);
    align-self: flex-end;
    padding-bottom: 0.3rem;
}

.price-period {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── DIVIDER ──────────────────────────────────────────────── */
.plan-divider {
    height: 1px;
    background: var(--border);
}

.plan-divider--gold {
    background: linear-gradient(90deg, transparent, rgba(251,191,36,0.3), transparent);
}

/* ── FEATURE LIST ─────────────────────────────────────────── */
.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.plan-features li:hover { color: var(--text-dim); }

.plan-features li i {
    font-size: 1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.plan-card--featured .plan-features li i {
    color: var(--accent);
}

.feature-highlight {
    color: var(--text-dim) !important;
    font-size: 0.9rem;
}

.feature-highlight i {
    color: var(--accent) !important;
}

/* ── PLAN BUTTON ──────────────────────────────────────────── */
.btn-plan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: var(--text-white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn-plan::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-plan:hover::before { opacity: 1; }
.btn-plan:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.btn-plan i { transition: transform 0.3s; }
.btn-plan:hover i { transform: translateX(4px); }

.btn-plan--featured {
    background: linear-gradient(135deg, var(--accent) 0%, #f59e0b 100%);
    border: none;
    color: #070111;
    font-weight: 700;
    box-shadow: 0 0 30px rgba(251,191,36,0.3);
}

.btn-plan--featured:hover {
    box-shadow: 0 0 40px rgba(251,191,36,0.5);
    transform: translateY(-2px);
}

.btn-plan--purple {
    background: linear-gradient(135deg, var(--primary) 0%, #6d28d9 100%);
    border: none;
    box-shadow: 0 0 24px rgba(124,58,237,0.3);
}

.btn-plan--purple:hover {
    box-shadow: 0 0 36px rgba(124,58,237,0.5);
}

/* ════════════════════════════════════════════════════════════
   METHODOLOGY SECTION
   ════════════════════════════════════════════════════════════ */
.methodology-section {
    position: relative;
    z-index: 1;
    padding: 8rem 0;
    background: var(--bg-void);
    border-top: 1px solid var(--border);
}

.steps-flow {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.step-item {
    flex: 1;
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(124,58,237,0.2);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--primary-dim);
    border: 1px solid var(--border-violet);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--violet-mid);
}

.step-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
}

.step-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 220px;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5.5rem;
    color: var(--text-faint);
    font-size: 1.2rem;
    flex-shrink: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* ════════════════════════════════════════════════════════════
   ADDONS SECTION
   ════════════════════════════════════════════════════════════ */
.addons-section {
    position: relative;
    z-index: 1;
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 100%);
    border-top: 1px solid var(--border);
}

.addon-card-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.addon-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-violet);
    border-radius: 28px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.addon-card::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.addon-card:hover {
    border-color: rgba(124,58,237,0.45);
    box-shadow: 0 20px 60px rgba(124,58,237,0.12);
}

.addon-left {
    display: flex;
    gap: 2rem;
    flex: 1;
}

.addon-icon {
    flex-shrink: 0;
    width: 70px; height: 70px;
    border-radius: 20px;
    background: var(--primary-dim);
    border: 1px solid var(--border-violet);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--violet-mid);
}

.addon-info {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.addon-tag {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--violet-mid);
}

.addon-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
}

.addon-info > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 360px;
}

.addon-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.addon-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.addon-features li i {
    color: var(--primary);
    font-size: 0.95rem;
}

.addon-right {
    flex-shrink: 0;
}

.addon-price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
    min-width: 200px;
}

.addon-price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.addon-price {
    display: flex;
    align-items: baseline;
    gap: 0.1rem;
    line-height: 1;
}

.addon-price .price-value { font-size: 3.2rem; }
.addon-price .price-cents { font-size: 1.4rem; }

.addon-period {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.btn-addon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
    padding: 1rem 1.8rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, #5b21b6 100%);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 0 24px rgba(124,58,237,0.3);
}

.btn-addon i { transition: transform 0.3s; }
.btn-addon:hover {
    box-shadow: 0 0 36px rgba(124,58,237,0.5);
    transform: translateY(-2px);
}
.btn-addon:hover i { transform: translateX(4px); }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
    background: var(--bg-void);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
}

.footer-logo {
    max-width: 100px;
    height: auto;
    opacity: 0.5;
    filter: grayscale(1);
}

.site-footer p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-note {
    font-size: 0.78rem !important;
    color: var(--text-faint) !important;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .plan-card--featured {
        transform: none;
        order: -1;
    }

    .steps-flow {
        flex-direction: column;
        gap: 2rem;
    }

    .step-connector {
        padding-top: 0;
        transform: rotate(90deg);
        align-self: flex-start;
        margin-left: 1.2rem;
    }

    .step-item { width: 100%; }
    .step-content p { max-width: 100%; }

    .addon-card {
        flex-direction: column;
        gap: 2rem;
    }

    .addon-left { flex-direction: column; gap: 1.5rem; }

    .addon-right { width: 100%; }
    .addon-price-box { min-width: unset; width: 100%; }

    /* Hero split → coluna única */
    .hero-split {
        grid-template-columns: 1fr;
        padding: 6rem 2rem 4rem;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-copy { align-items: center; }
    .hero-subtitle { max-width: 100%; }

    .orbit-ring--3, .satellite--3 { display: none; }
    .orbit-ring--2 { width: 220px; height: 220px; }
    .satellite--2 { width: 220px; height: 220px; margin: -110px 0 0 -110px; }
    .orbit-ring--1 { width: 130px; height: 130px; }
    .satellite--1 { width: 130px; height: 130px; margin: -65px 0 0 -65px; }
    .orbit-system { width: 300px; height: 300px; }
}

@media (max-width: 768px) {
    .hero-title { letter-spacing: -0.5px; }
    .plan-card { padding: 2rem 1.5rem; }
    .addon-card { padding: 2rem 1.5rem; }
    .hero-stats { gap: 1rem; }
    .methodology-section, .addons-section, .plans-section { padding: 5rem 0; }
}

@media (max-width: 480px) {
    .addon-left { flex-direction: column; }
    .hero-split { padding: 5rem 1.5rem 3rem; }
    .orbit-system { width: 240px; height: 240px; }
}
