/* Shared Blindersoe product landing theme — matches site dark glass aesthetic */
:root {
    --primary: #0a0a0a;
    --secondary: #111111;
    --accent: #1a1a1a;
    --highlight: #ff6b9d;
    --success: #c147e9;
    --info: #8b5cf6;
    --danger: #ff4757;
    --light: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-strong: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-strong: 0 25px 50px rgba(0, 0, 0, 0.7);
    --gradient-primary: linear-gradient(135deg, #ff6b9d 0%, #c147e9 50%, #8b5cf6 100%);
    --gradient-accent: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
    --product-accent: var(--highlight);
    --product-accent-soft: rgba(255, 107, 157, 0.15);
}

/* Per-page accent (stand out while staying on-brand) */
body.theme-leads { --product-accent: #00e5ff; --product-accent-soft: rgba(0, 229, 255, 0.12); }
body.theme-agents { --product-accent: #a78bfa; --product-accent-soft: rgba(167, 139, 250, 0.15); }
body.theme-backoffice { --product-accent: #34d399; --product-accent-soft: rgba(52, 211, 153, 0.12); }

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, var(--product-accent-soft) 0%, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(193, 71, 233, 0.12) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    z-index: -10;
    animation: meshShift 24s ease-in-out infinite;
}

@keyframes meshShift {
    0%, 100% { opacity: 1; filter: hue-rotate(0deg); }
    50% { opacity: 0.92; filter: hue-rotate(12deg); }
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/svg%3E");
    z-index: -9;
    pointer-events: none;
}

.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--product-accent);
    transition: box-shadow 0.3s ease;
}

.navbar-brand img:hover {
    box-shadow: 0 0 24px var(--product-accent);
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    margin: 0 0.2rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--product-accent) !important;
    background: var(--product-accent-soft);
}

.btn-primary-custom {
    background: var(--gradient-accent);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.35);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.45);
}

.btn-outline-custom {
    border: 2px solid var(--product-accent);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-custom:hover {
    background: var(--product-accent);
    color: #0a0a0a;
    transform: translateY(-2px);
}

.btn-small { padding: 10px 22px; font-size: 0.9rem; }

.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 4rem 0 3rem;
    position: relative;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--product-accent);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--product-accent);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 36rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero-visual-wrap {
    position: relative;
    border-radius: 24px;
    padding: 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-strong);
}

.hero-visual-wrap::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, var(--product-accent), transparent 40%, var(--success));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
}

.section-padding { padding: 4rem 0; }

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title.gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--product-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.82rem;
    margin-bottom: 0.75rem;
    display: block;
}

.section-lead {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 42rem;
}

.service-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.75rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.service-card:hover {
    background: var(--glass-strong);
    border-color: rgba(255, 107, 157, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(255, 107, 157, 0.12);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.service-card p, .service-card li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-icon { margin-bottom: 1rem; }

.cta-panel {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.12) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
}

.cta-panel h2 { margin-bottom: 1rem; }

.bg-slab { background: rgba(255, 255, 255, 0.02); }

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    animation: waPulse 2s infinite;
}

.whatsapp-float i { color: white; font-size: 1.7rem; }

@keyframes waPulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55), 0 0 0 10px rgba(37, 211, 102, 0.08); }
}

.footer-social-link {
    color: #b0b0b0;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover { color: var(--highlight); }

.step-list { counter-reset: step; list-style: none; padding: 0; }
.step-list li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}
.step-list li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}
.fade-in-up.animate { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
    .hero { min-height: auto; padding: 2rem 0; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .section-padding { padding: 3rem 0; }
}
