/* ===== HYBRID DESIGN TOKENS ===== */
:root {
    /* CREA+ LIGHT THEME TOKENS */
    --crea-blue: #0A3D91;
    --crea-cyan: #1DA1F2;
    --crea-aqua: #11C2AA;
    --crea-dark: #1A1A1A;
    --crea-bg: #FFFFFF;
    --crea-bg-alt: #E8ECF1;
    --crea-text: #1A1A1A;
    --crea-text-muted: #555555;

    /* PULSE AI DARK THEME TOKENS (From previous) */
    --bg-void: #060609;
    --bg-dark: #0a0a10;
    --bg-card: rgba(18, 18, 30, 0.4);

    --purple-main: #8a2be2;
    --purple-light: #b35aff;
    --purple-neon: #d590ff;

    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-danger: #ff4d4d;
    --text-success: #00ff88;

    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;

    /* Glass / Shadows */
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-blur: blur(16px);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);

    /* Transitions */
    --transit-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transit-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;

    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    /* Body starts with Light Theme colors */
    background-color: var(--crea-bg);
    color: var(--crea-text);
    transition: background-color 0.8s ease, color 0.8s ease;
}

/* Global Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.text-center {
    text-align: center;
}

/* ===== HYBRID NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all var(--transit-smooth);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled-light {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled-dark {
    background: rgba(10, 10, 16, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ecosystem-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

body.dark-mode .logo-crea {
    color: var(--text-primary);
}

.logo-crea {
    color: var(--crea-blue);
    transition: color 0.5s;
}

.logo-crea .plus {
    color: var(--crea-cyan);
}

.logo-separator {
    font-weight: 400;
    color: #888;
    font-size: 1rem;
}

.logo-pulse {
    font-family: 'Outfit';
    font-weight: 900;
    color: var(--crea-text);
    transition: color 0.5s;
}

body.dark-mode .logo-pulse {
    color: var(--text-primary);
}

.logo-pulse .ai {
    color: var(--purple-main);
    margin-left: 2px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--crea-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transit-fast);
}

.nav-links a:hover {
    color: var(--crea-blue);
}

body.dark-mode .nav-links a {
    color: var(--text-secondary);
}

body.dark-mode .nav-links a:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

#navLogin {
    font-weight: 600;
    font-size: 0.9rem;
    transition: color var(--transit-fast);
    color: var(--crea-text);
}

body.dark-mode #navLogin {
    color: var(--text-primary);
}

.mobile-menu-btn {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--crea-text);
    transition: all var(--transit-fast);
}

body.dark-mode .mobile-menu-btn span {
    background: var(--text-primary);
}


/* ===== THEME LIGHT: CREA+ ===== */
.theme-light {
    background-color: var(--crea-bg);
    color: var(--crea-text);
}

.theme-light h1,
.theme-light h2,
.theme-light h3 {
    font-family: 'Poppins', sans-serif;
}

.text-crea-cyan {
    color: var(--crea-cyan);
}

.bg-crea-alt {
    background-color: var(--crea-bg-alt);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-crea {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.badge-crea {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(29, 161, 242, 0.1);
    color: var(--crea-cyan);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
    font-family: 'Poppins';
}

.theme-light .hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--crea-blue);
}

.theme-light .hero-subtitle {
    font-size: 1.2rem;
    color: var(--crea-text-muted);
    margin-bottom: 30px;
    max-width: 90%;
}

.crea-benefits {
    margin-bottom: 40px;
}

.crea-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    font-weight: 500;
}

.crea-check {
    color: var(--crea-aqua);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Crea Buttons */
.btn-crea {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--crea-cyan);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 36px;
    border-radius: 12px;
    transition: all var(--transit-smooth);
    box-shadow: 0 10px 20px rgba(29, 161, 242, 0.3);
    font-family: 'Poppins';
}

.btn-crea:hover {
    background: var(--crea-blue);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(10, 61, 145, 0.3);
}

.btn-crea-outline {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--crea-cyan);
    color: var(--crea-cyan);
    font-weight: 600;
    border-radius: 8px;
    font-family: 'Poppins';
    text-align: center;
    transition: all 0.3s;
}

.btn-crea-outline:hover {
    background: var(--crea-cyan);
    color: white;
}

/* Crea Imagery */
.crea-image-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.crea-img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 50%;
}

.crea-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(29, 161, 242, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.float-anim {
    animation: floatings 6s ease-in-out infinite;
}

@keyframes floatings {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Crea Cards */
.crea-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.crea-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
    transition: transform var(--transit-smooth), box-shadow var(--transit-smooth);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.crea-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(10, 61, 145, 0.1);
}

.crea-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: rgba(29, 161, 242, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.crea-card h3 {
    font-size: 1.4rem;
    color: var(--crea-blue);
    margin-bottom: 15px;
}

.crea-card p {
    color: var(--crea-text-muted);
    font-size: 0.95rem;
}


/* ===== TRANSITION BRIDGE ===== */
.transition-bridge {
    position: relative;
    padding: 150px 0;
    background: linear-gradient(180deg, var(--crea-bg-alt) 0%, var(--bg-void) 100%);
    color: white;
    overflow: hidden;
}

.bridge-title {
    font-size: 3.5rem;
    font-family: 'Poppins';
    font-weight: 800;
    color: var(--crea-dark);
    z-index: 2;
    position: relative;
}

.fade-text {
    color: var(--text-primary);
    transition: color 1s;
}

.scroll-indicator {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-secondary);
    opacity: 0.8;
}

.mouse {
    width: 30px;
    height: 45px;
    border: 2px solid var(--text-secondary);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 24px;
        opacity: 0;
    }
}


/* ===== THEME DARK: PULSE AI ===== */
.theme-dark {
    background-color: var(--bg-void);
    color: var(--text-primary);
}

.theme-dark h1,
.theme-dark h2,
.theme-dark h3 {
    font-family: 'Outfit';
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--purple-light) 50%, var(--purple-main) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-glow {
    text-shadow: 0 0 40px rgba(138, 43, 226, 0.4);
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 0;
    pointer-events: none;
}

.bg-glow-left {
    top: 100px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: rgba(138, 43, 226, 0.15);
}

.bg-glow-right {
    bottom: 100px;
    right: -300px;
    width: 800px;
    height: 800px;
    background: rgba(85, 26, 139, 0.12);
}

.badge-pulse {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(138, 43, 226, 0.15);
    color: var(--purple-neon);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
    font-family: 'Outfit';
}

.theme-dark .hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.theme-dark .hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Pulse specific components from before */
.brain-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    animation: floating 6s ease-in-out infinite;
    margin: 0 auto;
}

.brain-img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.4));
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.pulse-advantages {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.adv-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.adv-icon-sm {
    width: 40px;
    height: 40px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.adv-row h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.adv-row p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Pulse Buttons & Radar - Inherited logic from previous */
.btn-primary,
.btn-primary-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--purple-main), #5c18a2);
    color: white;
    font-weight: 700;
    border-radius: 8px;
    transition: all var(--transit-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Outfit';
    cursor: pointer;
}

.btn-primary::before,
.btn-primary-sm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--purple-light), var(--purple-main));
    opacity: 0;
    transition: opacity var(--transit-smooth);
    z-index: -1;
}

.btn-primary:hover,
.btn-primary-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:hover::before,
.btn-primary-sm:hover::before {
    opacity: 1;
}

.btn-primary-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-primary {
    padding: 16px 36px;
    font-size: 1.1rem;
    border-radius: 12px;
}

.btn-massive {
    padding: 20px 40px;
    font-size: 1.2rem;
    border-radius: 16px;
    width: 100%;
}

.glowing-btn,
.glowing-btn-large {
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
}

.radar-container {
    background: var(--bg-card);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.radar-header {
    background: rgba(10, 10, 15, 0.9);
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.radar-indicator {
    font-family: 'Outfit';
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.pulsing-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--purple-neon);
    animation: ping 2s infinite;
    margin-right: 8px;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.radar-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill {
    background: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--purple-neon);
    font-weight: 600;
}

.radar-insight {
    padding: 24px 30px;
    background: linear-gradient(90deg, rgba(138, 43, 226, 0.1), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    color: #dfdfff;
}

.mock-calendar {
    padding: 30px;
    background: #0d0d14;
    position: relative;
    overflow-x: auto;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    gap: 10px;
    opacity: 0.7;
}

.cal-day {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 5px;
    font-weight: 600;
}

.cal-item {
    font-size: 0.75rem;
    padding: 12px 10px;
    border-radius: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.status-blue {
    background: rgba(50, 100, 255, 0.1);
    border-color: rgba(50, 100, 255, 0.2);
    color: #8ab4f8;
}

.status-green {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.2);
    color: #81c995;
}

.status-red {
    background: rgba(255, 77, 77, 0.15);
    border-color: rgba(255, 77, 77, 0.3);
    color: #f28b82;
    position: relative;
}

.notification-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple-neon);
}

.cal-overlay-glass {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.cal-overlay-badge {
    background: rgba(20, 10, 35, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(138, 43, 226, 0.5);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.cal-overlay-badge .icon {
    font-size: 1.5rem;
    background: var(--purple-main);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}


/* ===== PRICING / BUNDLE SECTION ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.pricing-card {
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: transform var(--transit-smooth);
}

.card-light {
    background: #1a1a24;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-bundle {
    background: linear-gradient(180deg, rgba(30, 15, 50, 0.8), rgba(10, 5, 20, 0.95));
    border: 1px solid var(--purple-main);
    padding: 50px 40px;
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.2);
    overflow: hidden;
}

.bundle-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(138, 43, 226, 0.5);
    filter: blur(80px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--purple-main);
    color: white;
    font-family: 'Outfit';
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}

.plan-name {
    font-family: 'Outfit';
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.bundle-title {
    color: var(--purple-neon);
    font-size: 1.4rem;
}

.plan-price {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Outfit';
    margin-bottom: 15px;
    line-height: 1;
}

.plan-price span {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.plan-desc {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.plan-features {
    margin-bottom: 40px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.plan-features li strong {
    color: var(--text-primary);
    font-weight: 700;
    margin-left: 5px;
}

.plan-features li.disabled {
    color: #555;
    text-decoration: line-through;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 40px;
    text-align: center;
    background: #030305;
}

.footer-logo {
    font-family: 'Outfit';
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #555;
}

/* ===== UTILS & ANIMATIONS ===== */
.hidden-on-load {
    opacity: 0;
}

.fade-in {
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease-out;
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-crea .hero-content,
    .hero-pulse .hero-content {
        order: -1;
    }

    /* Text first on mobile */
    .hero-cta-group {
        justify-content: center;
        display: flex;
    }

    .crea-benefits li {
        justify-content: center;
    }

    .adv-row {
        text-align: left;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .card-bundle {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--crea-bg);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 40px;
        transition: left 0.3s ease;
    }

    body.dark-mode .nav-links {
        background: var(--bg-void);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
        display: flex;
    }

    .theme-light .hero-title,
    .theme-dark .hero-title {
        font-size: 3rem;
    }

    .crea-features-grid {
        grid-template-columns: 1fr;
    }

    .bridge-title {
        font-size: 2.2rem;
    }

    .radar-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cal-grid {
        display: flex;
        flex-direction: column;
    }

    .cal-day {
        display: none;
    }
}

/* ===== PULSE PRICING SECTION ===== */
.pulse-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pulse-card {
    background: rgba(15, 15, 25, 0.6);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.pulse-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.2);
}

.pulse-pro {
    background: linear-gradient(180deg, rgba(30, 15, 50, 0.8), rgba(10, 5, 20, 0.95));
    border-color: var(--purple-main);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.1);
}

.pulse-card-header {
    text-align: center;
    margin-bottom: 25px;
}
.pulse-card-title {
    font-family: 'Outfit';
    font-size: 1.5rem;
    color: var(--purple-neon);
    margin-bottom: 15px;
}
.pulse-price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}
.pulse-price span {
    font-size: 1.2rem;
    color: var(--text-secondary);
}
.pulse-ideal {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 25px;
    text-align: center;
}
.pulse-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}
.pulse-features li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.pulse-features li.disabled {
    opacity: 0.5;
    text-decoration: line-through;
}
.pulse-btn-container {
    text-align: center;
    margin-top: auto;
}

/* ===== AFFILIATES SECTION ===== */
.affiliates-section {
    background: linear-gradient(180deg, var(--bg-void) 0%, rgba(20, 10, 35, 0.8) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.affiliate-card {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    margin-top: 40px;
}
.affiliate-content h3 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.affiliate-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1.05rem;
}
.affiliate-highlight {
    background: rgba(138, 43, 226, 0.15);
    padding: 20px;
    border-left: 4px solid var(--purple-main);
    border-radius: 0 10px 10px 0;
    margin: 25px 0;
}
.affiliate-highlight h4 {
    margin-bottom: 10px;
    color: var(--purple-neon);
}
.affiliate-commission {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-success);
    line-height: 1;
    margin-bottom: 10px;
}
.espacio-hosting-logo {
    max-width: 250px;
    margin-top: 20px;
    display: block;
}
.pulse-project-preview {
    background: #000;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
}
.preview-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
}
.preview-logo {
    width: 40px;
    height: 40px;
    background: var(--purple-main);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.preview-info h5 {
    color: var(--purple-neon);
    margin: 0;
}
.preview-info p {
    font-size: 0.8rem;
    margin: 0;
    color: #888;
}

@media (max-width: 900px) {
    .affiliate-card {
        grid-template-columns: 1fr;
    }
}
