/* ============================================
   IA Strategic Blueprint Ã¢â‚¬â€ Landing Page CSS
   V3: Rich visual differentiation per section
   Bewos palette: Navy #0A3D5C + Orange #FF8C00
   ============================================ */

/* --- Design Tokens --- */
:root {
    --bp-primary: #0A3D5C;
    --bp-primary-dark: #062838;
    --bp-primary-deeper: #041E2A;
    --bp-secondary: #FF8C00;
    --bp-secondary-light: #FFA033;
    --bp-secondary-dark: #CC7000;
    --bp-secondary-glow: rgba(255, 140, 0, 0.3);
    --bp-secondary-subtle: rgba(255, 140, 0, 0.08);
    --bp-white: #FFFFFF;
    --bp-off-white: #F5F7FA;
    --bp-gray-light: #E1E8ED;
    --bp-gray-medium: #8899A6;
    --bp-gray: #5A6C7D;
    --bp-text: #2C3E50;
    --bp-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --bp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --bp-container: 1100px;
    --bp-radius: 16px;
    --bp-radius-sm: 10px;
    --bp-radius-lg: 24px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.bp-body {
    font-family: var(--bp-font);
    background: var(--bp-primary-deeper);
    color: var(--bp-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.bp-container {
    max-width: var(--bp-container);
    margin: 0 auto;
    padding: 0 24px;
}

.bp-accent-text {
    background: linear-gradient(135deg, var(--bp-secondary), var(--bp-secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================================
   TOP BAR
   ================================================ */
.bp-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    background: rgba(4, 30, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--bp-transition);
}

.bp-topbar.scrolled {
    padding: 10px 0;
    background: rgba(4, 30, 42, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.bp-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bp-logo-img {
    height: 38px;
    width: auto;
    opacity: 0.95;
    transition: var(--bp-transition);
}

.bp-logo-img:hover {
    opacity: 1;
}

.bp-topbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: linear-gradient(135deg, var(--bp-secondary), var(--bp-secondary-light));
    color: var(--bp-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px var(--bp-secondary-glow);
    transition: var(--bp-transition);
}

.bp-topbar-cta:hover {
    background: linear-gradient(135deg, var(--bp-secondary-dark), var(--bp-secondary));
    transform: translateY(-1px);
    box-shadow: 0 8px 30px var(--bp-secondary-glow);
}

/* ================================================
   HERO Ã¢â‚¬â€ Gradient + animated grid + floating shapes
   ================================================ */
.bp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
    background: linear-gradient(160deg, #0D4A6B 0%, var(--bp-primary-deeper) 50%, #020D14 100%);
}

/* Large animated glow orbs */
.bp-hero::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -8%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 55%);
    animation: heroFloat 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.bp-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(10, 100, 160, 0.2) 0%, transparent 55%);
    animation: heroFloat 10s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

@keyframes heroFloat {
    0% {
        opacity: 0.5;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 1;
        transform: translate(20px, -20px) scale(1.08);
    }
}

.bp-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 140, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 140, 0, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 80%);
    animation: gridPulse 6s ease-in-out infinite;
    pointer-events: none;
}

/* Floating decorative shapes in hero */
.bp-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.bp-hero-shape {
    position: absolute;
    border: 1.5px solid rgba(255, 140, 0, 0.12);
    border-radius: 12px;
    animation: shapeFloat 12s ease-in-out infinite;
}

.bp-hero-shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 15%;
    right: 8%;
    animation-delay: 0s;
    border-radius: 50%;
}

.bp-hero-shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    border-radius: 20px;
    border-color: rgba(10, 100, 160, 0.15);
}

.bp-hero-shape:nth-child(3) {
    width: 50px;
    height: 50px;
    top: 30%;
    right: 25%;
    animation-delay: 4s;
    border-radius: 50%;
}

.bp-hero-shape:nth-child(4) {
    width: 160px;
    height: 160px;
    top: 40%;
    right: 5%;
    animation-delay: 1s;
    border-radius: 30px;
    border-color: rgba(255, 140, 0, 0.06);
}

.bp-hero-shape:nth-child(5) {
    width: 40px;
    height: 40px;
    top: 75%;
    right: 30%;
    animation-delay: 3s;
    border-radius: 8px;
}

@keyframes shapeFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.8;
    }
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.5;
    }
}

.bp-hero>.bp-container {
    width: 100%;
}

.bp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin-left: 0;
    margin-right: auto;
}

.bp-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    width: 100%;
    max-width: none;
}

.bp-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: right center;
    mix-blend-mode: lighten;
    /* Difuminado mÃƒÂ¡s agresivo hacia la derecha para proteger la legibilidad del texto */
    -webkit-mask-image: linear-gradient(to right, transparent 50%, black 65%);
    mask-image: linear-gradient(to right, transparent 50%, black 65%);
}

.bp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.12), rgba(255, 140, 0, 0.04));
    border: 1px solid rgba(255, 140, 0, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bp-secondary-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease both;
}

.bp-hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--bp-secondary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--bp-secondary-glow);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.6;
        transform: scale(1.4);
    }
}

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

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

.bp-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--bp-white);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s 0.15s ease both;
}

.bp-hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 680px;
    animation: fadeInUp 0.8s 0.3s ease both;
}

.bp-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.45s ease both;
}

/* ================================================
   BUTTONS
   ================================================ */
.bp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--bp-font);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--bp-transition);
    position: relative;
    overflow: hidden;
}

.bp-btn-primary {
    background: linear-gradient(135deg, var(--bp-secondary), var(--bp-secondary-light));
    color: var(--bp-white);
    box-shadow: 0 6px 20px var(--bp-secondary-glow);
}

.bp-btn-primary:hover {
    background: linear-gradient(135deg, var(--bp-secondary-dark), var(--bp-secondary));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.4);
}

.bp-btn-ghost {
    background: transparent;
    color: var(--bp-white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.bp-btn-ghost:hover {
    border-color: var(--bp-secondary);
    color: var(--bp-secondary-light);
    background: rgba(255, 140, 0, 0.06);
    transform: translateY(-3px);
}

.bp-btn-icon {
    transition: transform 0.3s ease;
}

.bp-btn:hover .bp-btn-icon {
    transform: translateX(3px);
}

/* ================================================
   SECTION BASES
   ================================================ */
.bp-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.bp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bp-secondary);
    margin-bottom: 20px;
}

.bp-section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--bp-secondary), var(--bp-secondary-light));
    border-radius: 2px;
}

.bp-section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--bp-white);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.bp-section-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 60px;
}

/* Large ISO 42001 Seal (Right Visual) */
.bp-iso-large-seal {
    position: relative;
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 0 auto;
    /* Negative top margin to lift the seal */
}

.bp-seal-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 140, 0, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bp-seal-ring-1 {
    width: 100%;
    height: 100%;
    border-top-color: var(--bp-secondary);
    animation: bpSpin 15s linear infinite;
}

.bp-seal-ring-2 {
    width: 80%;
    height: 80%;
    border-bottom-color: rgba(255, 255, 255, 0.5);
    animation: bpSpin 10s linear infinite reverse;
}

.bp-seal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 65%;
    height: 65%;
    background: radial-gradient(circle, rgba(10, 61, 92, 0.6) 0%, rgba(2, 13, 20, 0) 100%);
    border-radius: 50%;
    text-align: center;
    z-index: 2;
}

.bp-seal-content svg {
    margin-bottom: 8px;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.4));
}

.bp-seal-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--bp-white);
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.bp-seal-subtitle {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--bp-secondary);
    letter-spacing: 0.15em;
}

.bp-iso-seal-description {
    text-align: center;
    margin-top: 32px;
    font-size: 0.95rem;
    color: var(--bp-white);
    font-weight: 600;
    line-height: 1.5;
}

.bp-iso-seal-description span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin-top: 6px;
    max-width: 360px;
    line-height: 1.4;
    margin-left: auto;
    margin-right: auto;
}

@keyframes bpSpin {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ================================================
   BLOCK 2 Ã¢â‚¬â€ SERVICE PILLARS
   Distinct: Dark navy base + diagonal pattern overlay
   ================================================ */
.bp-section-service {
    background: linear-gradient(180deg, var(--bp-primary-dark) 0%, var(--bp-primary-deeper) 100%);
}

/* Diagonal lines pattern */
.bp-section-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 40px,
            rgba(255, 140, 0, 0.02) 40px, rgba(255, 140, 0, 0.02) 41px);
    pointer-events: none;
}

/* Side accent image area */
.bp-service-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.bp-service-visual {
    width: 320px;
    height: 320px;
    position: relative;
    flex-shrink: 0;
}

/* CSS-only isometric cube grid visual */
.bp-iso-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-iso-cube {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1.5px solid rgba(255, 140, 0, 0.15);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.06), rgba(10, 61, 92, 0.3));
    transition: var(--bp-transition);
    animation: cubeFloat 6s ease-in-out infinite;
}

.bp-iso-cube:nth-child(1) {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
    width: 70px;
    height: 70px;
}

.bp-iso-cube:nth-child(2) {
    top: 5%;
    left: 55%;
    animation-delay: 0.8s;
    width: 50px;
    height: 50px;
}

.bp-iso-cube:nth-child(3) {
    top: 35%;
    left: 35%;
    animation-delay: 0.4s;
    width: 80px;
    height: 80px;
    border-color: rgba(255, 140, 0, 0.25);
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(10, 61, 92, 0.4));
}

.bp-iso-cube:nth-child(4) {
    top: 55%;
    left: 10%;
    animation-delay: 1.2s;
}

.bp-iso-cube:nth-child(5) {
    top: 50%;
    left: 60%;
    animation-delay: 0.6s;
    width: 55px;
    height: 55px;
}

.bp-iso-cube:nth-child(6) {
    top: 75%;
    left: 40%;
    animation-delay: 1s;
    width: 45px;
    height: 45px;
}

/* Connection lines as pseudo-elements */
.bp-iso-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.15), transparent);
    transform-origin: left center;
}

.bp-iso-line:nth-child(7) {
    top: 45%;
    left: 20%;
    width: 120px;
    transform: rotate(15deg);
}

.bp-iso-line:nth-child(8) {
    top: 30%;
    left: 40%;
    width: 100px;
    transform: rotate(-20deg);
}

.bp-iso-line:nth-child(9) {
    top: 65%;
    left: 30%;
    width: 140px;
    transform: rotate(5deg);
}

@keyframes cubeFloat {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }

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

.bp-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.bp-pillar {
    position: relative;
    background: linear-gradient(145deg, rgba(10, 61, 92, 0.4), rgba(4, 30, 42, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--bp-radius);
    padding: 36px 32px;
    transition: var(--bp-transition);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.bp-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--bp-secondary), var(--bp-secondary-light), transparent);
    opacity: 0;
    transition: var(--bp-transition);
}

.bp-pillar:hover {
    border-color: rgba(255, 140, 0, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 140, 0, 0.05);
}

.bp-pillar:hover::before {
    opacity: 1;
}

.bp-pillar-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15), rgba(255, 140, 0, 0.05));
    border: 1px solid rgba(255, 140, 0, 0.25);
    color: var(--bp-secondary);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 22px;
    transition: var(--bp-transition);
}

.bp-pillar:hover .bp-pillar-num {
    background: linear-gradient(135deg, var(--bp-secondary), var(--bp-secondary-light));
    color: var(--bp-white);
    border-color: transparent;
    box-shadow: 0 4px 15px var(--bp-secondary-glow);
}

.bp-pillar h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bp-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.bp-pillar p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.bp-timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 48px;
    padding: 22px 36px;
    background: linear-gradient(135deg, rgba(10, 61, 92, 0.5), rgba(255, 140, 0, 0.06));
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: var(--bp-radius);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
}

.bp-timeline-badge svg {
    color: var(--bp-secondary);
}

.bp-timeline-badge strong {
    color: var(--bp-secondary);
    font-size: 1.15rem;
}

/* ================================================
   BLOCK 3 Ã¢â‚¬â€ DELIVERABLE
   Distinct: Light-tinted navy + blueprint texture bg
   ================================================ */
.bp-section-deliverable {
    background: linear-gradient(180deg, var(--bp-primary-deeper) 0%, #071F30 50%, var(--bp-primary-deeper) 100%);
    position: relative;
}

/* Blurred background photo */
.bp-section-deliverable::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/blueprint-bg.jpg') center/cover no-repeat;
    filter: blur(6px) brightness(0.25) saturate(0.6);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

/* Blueprint grid texture */
.bp-section-deliverable::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(0, 163, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 163, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 70% at 30% 50%, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 30% 50%, black 10%, transparent 70%);
    pointer-events: none;
}

.bp-deliverable {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.bp-deliverable-visual {
    position: relative;
    aspect-ratio: 1;
    max-width: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-blueprint-icon {
    position: relative;
    width: 280px;
    height: 280px;
    border: 2px solid rgba(255, 140, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate-slow 30s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

.bp-blueprint-icon::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px dashed rgba(255, 140, 0, 0.1);
    border-radius: 50%;
}

.bp-blueprint-icon::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(10, 61, 92, 0.3);
    border-radius: 50%;
}

.bp-orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--bp-secondary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--bp-secondary-glow);
}

.bp-orbit-dot:nth-child(1) {
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.bp-orbit-dot:nth-child(2) {
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.bp-orbit-dot:nth-child(3) {
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
}

.bp-blueprint-inner {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.12), rgba(10, 61, 92, 0.4));
    border: 1px solid rgba(255, 140, 0, 0.25);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate-slow 30s linear infinite reverse;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.bp-blueprint-inner svg {
    width: 48px;
    height: 48px;
    color: var(--bp-secondary);
}

.bp-deliverable-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--bp-white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.bp-deliverable-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 32px;
}

.bp-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), rgba(10, 61, 92, 0.3));
    border: 1px solid rgba(255, 140, 0, 0.18);
    border-radius: var(--bp-radius);
    transition: var(--bp-transition);
}

.bp-guarantee:hover {
    border-color: rgba(255, 140, 0, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bp-guarantee-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--bp-secondary), var(--bp-secondary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px var(--bp-secondary-glow);
}

.bp-guarantee-icon svg {
    width: 22px;
    height: 22px;
    color: var(--bp-white);
}

.bp-guarantee h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bp-secondary);
    margin-bottom: 6px;
}

.bp-guarantee p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Link to main site */
.bp-services-link {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding: 18px 22px;
    background: rgba(10, 61, 92, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--bp-radius-sm);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    transition: var(--bp-transition);
}

.bp-services-link:hover {
    border-color: rgba(255, 140, 0, 0.25);
    background: rgba(255, 140, 0, 0.06);
    color: var(--bp-white);
}

.bp-services-link svg:first-child {
    color: var(--bp-secondary);
    flex-shrink: 0;
}

.bp-services-link svg:last-child {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: var(--bp-transition);
}

.bp-services-link:hover svg:last-child {
    color: var(--bp-secondary);
    transform: translate(2px, -2px);
}

.bp-services-link span {
    flex: 1;
}

.bp-services-link strong {
    color: var(--bp-secondary);
}

/* ================================================
   BLOCK 4 Ã¢â‚¬â€ ISO CERTIFICATIONS
   Distinct: Deep dark + subtle radial spotlight
   ================================================ */
.bp-section-iso {
    background: linear-gradient(180deg, #020D14 0%, var(--bp-primary-dark) 50%, #020D14 100%);
}

.bp-section-iso::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(10, 61, 92, 0.25), transparent 60%);
    pointer-events: none;
}

.bp-iso-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.bp-iso-card {
    text-align: center;
    padding: 48px 24px;
    background: linear-gradient(145deg, rgba(10, 61, 92, 0.35), rgba(4, 30, 42, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--bp-radius);
    transition: var(--bp-transition);
    position: relative;
    overflow: hidden;
}

.bp-iso-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--bp-secondary), transparent);
    opacity: 0;
    transition: var(--bp-transition);
}

.bp-iso-card:hover {
    border-color: rgba(255, 140, 0, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.bp-iso-card:hover::before {
    opacity: 1;
}

.bp-iso-seal {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--bp-transition);
    background: rgba(10, 61, 92, 0.3);
}

.bp-iso-card:hover .bp-iso-seal {
    border-color: var(--bp-secondary);
    color: var(--bp-secondary);
    box-shadow: 0 0 25px rgba(255, 140, 0, 0.15);
    background: rgba(255, 140, 0, 0.08);
}

.bp-iso-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--bp-white);
    margin-bottom: 8px;
}

.bp-iso-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ================================================
   BLOCK 5 Ã¢â‚¬â€ CTA
   Distinct: Warm gradient + dot pattern + glow center
   ================================================ */
.bp-cta-section {
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bp-primary-deeper) 0%, #0D4A6B 50%, var(--bp-primary-deeper) 100%);
}

.bp-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.14) 0%, transparent 55%);
    animation: heroFloat 5s ease-in-out infinite alternate;
    pointer-events: none;
}

.bp-cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 140, 0, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.5;
    pointer-events: none;
}

.bp-cta-section .bp-section-title,
.bp-cta-section .bp-section-label,
.bp-cta-section .bp-btn {
    position: relative;
    z-index: 1;
}

.bp-cta-micro {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

/* ================================================
   BLOCK 6 Ã¢â‚¬â€ WEBINAR
   Distinct: Warm gradient + event card + commercial CTA
   ================================================ */
.bp-section-webinar {
    background: linear-gradient(180deg, #020D14 0%, #0C2D42 50%, #020D14 100%);
    position: relative;
}

.bp-section-webinar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(255, 140, 0, 0.08), transparent 60%);
    pointer-events: none;
}

.bp-webinar-header {
    margin-bottom: 60px;
}

.bp-webinar-header .bp-section-desc {
    margin-bottom: 0;
}

.bp-webinar-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

/* Date card */
.bp-webinar-event {
    position: sticky;
    top: 120px;
}

.bp-webinar-date-card {
    width: 300px;
    background: linear-gradient(145deg, rgba(255, 140, 0, 0.1), rgba(10, 61, 92, 0.5));
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: var(--bp-radius-lg);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.bp-webinar-date-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bp-secondary), var(--bp-secondary-light));
}

.bp-webinar-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.35);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #fbbf24;
    margin-bottom: 24px;
}

.bp-webinar-live-badge .bp-hero-badge-dot {
    background: #fbbf24;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

.bp-webinar-month {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--bp-secondary);
    margin-bottom: 4px;
}

.bp-webinar-day {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--bp-white);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, var(--bp-white) 40%, rgba(255, 255, 255, 0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bp-webinar-time,
.bp-webinar-format {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
}

.bp-webinar-time svg,
.bp-webinar-format svg {
    color: var(--bp-secondary);
    flex-shrink: 0;
}

/* Topics list */
.bp-webinar-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--bp-white);
    margin-bottom: 28px;
}

.bp-webinar-topics {
    list-style: none;
    margin-bottom: 40px;
}

.bp-webinar-topics li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--bp-transition);
}

.bp-webinar-topics li:last-child {
    border-bottom: none;
}

.bp-webinar-topics li:hover {
    padding-left: 6px;
}

.bp-webinar-topic-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bp-secondary), var(--bp-secondary-light));
    color: var(--bp-white);
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 4px 12px var(--bp-secondary-glow);
}

.bp-webinar-topics li strong {
    display: block;
    color: var(--bp-white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.4;
}

.bp-webinar-topics li p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

/* CTA area Ã¢â‚¬â€ sin recuadro, alineado a la izquierda */
.bp-webinar-cta-bare {
    text-align: left;
    padding-top: 32px;
}

.bp-btn-lg {
    padding: 18px 44px;
    font-size: 1.05rem;
}

.bp-webinar-seats {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 14px;
    letter-spacing: 0.02em;
}

/* ================================================
   MODALS
   ================================================ */
.bp-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 30, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bp-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.bp-modal {
    background: linear-gradient(145deg, var(--bp-primary), var(--bp-primary-dark));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--bp-radius-lg);
    padding: 48px;
    max-width: 520px;
    width: 100%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.bp-modal-overlay.active .bp-modal {
    transform: translateY(0);
}

.bp-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 8px;
    transition: var(--bp-transition);
    border-radius: 8px;
}

.bp-modal-close:hover {
    color: var(--bp-secondary);
    background: rgba(255, 140, 0, 0.08);
}

.bp-modal h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--bp-white);
    margin-bottom: 8px;
}

.bp-modal>p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    line-height: 1.6;
}

.bp-form-group {
    margin-bottom: 20px;
}

.bp-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
}

.bp-form-group input,
.bp-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(4, 30, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--bp-radius-sm);
    color: var(--bp-white);
    font-family: var(--bp-font);
    font-size: 0.95rem;
    transition: var(--bp-transition);
    outline: none;
}

.bp-form-group input::placeholder,
.bp-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.bp-form-group input:focus,
.bp-form-group textarea:focus {
    border-color: var(--bp-secondary);
    box-shadow: 0 0 0 3px var(--bp-secondary-glow);
    background: rgba(4, 30, 42, 0.8);
}

.bp-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.bp-form-submit {
    width: 100%;
    margin-top: 8px;
    padding: 16px;
    font-size: 1rem;
}

.bp-form-status {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
    min-height: 24px;
}

.bp-form-status.success {
    color: #4CAF50;
}

.bp-form-status.error {
    color: #f44336;
}

/* ================================================
   FOOTER
   ================================================ */
.bp-footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #020D14;
}

.bp-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.bp-footer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

.bp-footer-links {
    display: flex;
    gap: 24px;
}

.bp-footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: var(--bp-transition);
}

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

/* ================================================
   SCROLL REVEAL
   ================================================ */
.bp-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bp-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.bp-pillars-grid .bp-reveal:nth-child(1) {
    transition-delay: 0s;
}

.bp-pillars-grid .bp-reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.bp-pillars-grid .bp-reveal:nth-child(3) {
    transition-delay: 0.16s;
}

.bp-pillars-grid .bp-reveal:nth-child(4) {
    transition-delay: 0.24s;
}

.bp-pillars-grid .bp-reveal:nth-child(5) {
    transition-delay: 0.32s;
}

.bp-pillars-grid .bp-reveal:nth-child(6) {
    transition-delay: 0.4s;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .bp-hero-image {
        width: 45%;
        right: -20px;
        opacity: 0.5;
    }

    .bp-service-header {
        grid-template-columns: 1fr;
    }

    .bp-service-visual {
        display: none;
    }

    .bp-deliverable {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .bp-deliverable-visual {
        order: -1;
        max-width: 280px;
        margin: 0 auto;
    }

    .bp-webinar-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bp-webinar-event {
        position: static;
    }

    .bp-webinar-date-card {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .bp-iso-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .bp-section {
        padding: 80px 0;
    }

    .bp-hero {
        padding: 120px 0 80px;
    }

    .bp-hero-image {
        display: none;
    }

    .bp-hero-shapes {
        display: none;
    }

    .bp-pillars-grid {
        grid-template-columns: 1fr;
    }

    .bp-hero-actions {
        flex-direction: column;
    }

    .bp-hero-actions .bp-btn {
        text-align: center;
    }

    .bp-topbar-cta {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .bp-modal {
        padding: 32px 24px;
    }

    .bp-cta-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .bp-container {
        padding: 0 16px;
    }

    .bp-topbar-cta span {
        display: none;
    }

    .bp-timeline-badge {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* â”€â”€â”€ Premium Success State (Refined) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bp-success-view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    z-index: 100;
    animation: bpFetchIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.bp-success-view-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bp-primary-dark);
    z-index: 99;
    border-radius: inherit;
}

.bp-success-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bp-accent), #ffb347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.bp-success-icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: var(--bp-navy);
}

.bp-success-view h3 {
    font-size: 1.85rem !important;
    color: white !important;
    margin-bottom: 12px !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.bp-success-view p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}

.bp-success-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 100px;
    color: var(--bp-accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

@keyframes bpFetchIn {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}


/* ─── Premium Success State (Unified & Clean) ───────── */
#bp-premium-success {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
    margin: 0;
    background: transparent;
    animation: bpPremiumFadeIn 0.4s ease forwards;
}

#bp-premium-success .bp-success-title {
    font-size: 2.2rem;
    color: #ffffff;
    font-weight: 800;
    margin: 0 0 16px 0;
    line-height: 1.2;
    background: transparent;
    border: none;
    display: block;
}

#bp-premium-success .bp-success-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 340px;
    line-height: 1.6;
    margin: 0 auto;
    background: transparent;
    border: none;
}

#bp-premium-success .bp-success-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--bp-secondary), var(--bp-secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.3);
}

#bp-premium-success .bp-success-icon-wrapper svg {
    width: 32px;
    height: 32px;
    color: white;
}

#bp-premium-success .bp-success-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 140, 0, 0.15);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 100px;
    color: var(--bp-secondary-light);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}

/* Ensure the modal background adapts smoothly */
.bp-modal:has(#bp-premium-success) {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Cleanup absolute overrides */
.bp-final-title, 
.bp-final-text {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

@media (max-width: 600px) {
    #bp-premium-success .bp-success-title,
    .bp-final-title {
        font-size: 1.8rem !important;
    }
    #bp-premium-success .bp-success-text,
    .bp-final-text {
        font-size: 1rem !important;
        max-width: 280px !important;
    }
}

/* ─── Intl-tel-input & Legal Checkbox Overrides ───────── */
.iti {
    width: 100%;
    display: block;
}

.iti__flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
      background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags@2x.png");
  }
}

.iti__country-list {
    background-color: #0c3d5c !important; /* using direct color just in case */
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 8px !important;
    z-index: 1050 !important;
    max-width: 350px !important;
    width: calc(100vw - 40px) !important;
}

.iti__country {
    padding: 10px 14px !important;
}

.iti__country-name, .iti__dial-code {
    color: #ffffff !important;
}

.iti__country.iti__highlight {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

.bp-form-group.bp-form-legal {
    margin-top: 16px;
    margin-bottom: 24px;
}

.bp-form-group label.bp-checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400 !important;
}

.bp-checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box !important;
    width: 20px !important;
    height: 20px !important;
    padding: 0 !important;
    margin: 1px 0 0 0 !important;
    flex-shrink: 0;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.2s ease;
}

.bp-checkbox-label input[type="checkbox"]:checked {
    background-color: var(--bp-secondary);
    border-color: var(--bp-secondary);
}

.bp-checkbox-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.bp-checkbox-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.bp-checkbox-text a {
    color: var(--bp-secondary);
    text-decoration: none;
    transition: var(--bp-transition);
}

.bp-checkbox-text a:hover {
    text-decoration: underline;
}

/* ─── Chrome Autofill Dark Theme Fix ───────── */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #041e2a inset !important;
    -webkit-text-fill-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* ─── Validation Error State ───────── */
.was-validated input:invalid,
.was-validated textarea:invalid {
    border-color: #f44336 !important;
    background-color: rgba(244, 67, 54, 0.05) !important;
}
