/* ineed2dance.css — I Need 2 Dance product page v1.0.0 */
/* Theme: Rose/Coral — Dance energy */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');

/* ============================================
   CONTENT BLOCKS
   ============================================ */
[data-page="ineed2dance"] .content {
    padding: 0;
    background: #f0f4f8;
}

.content-block {
    margin-bottom: 60px;
    animation: fadeIn 0.6s ease both;
    scroll-margin-top: 150px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SECTION TITLES
   ============================================ */
h3 {
    color: #e11d48;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5em, 3vw, 1.8em);
    font-weight: 700;
    margin: 35px 20px 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #fda4af;
}

/* ============================================
   BANNER — Dance energy gradient
   ============================================ */
.bpm-banner {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #0b1a2e 0%, #4c0519 50%, #e11d48 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

/* Circuit lines (reused pattern) */
.circuit-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: rgba(251, 113, 133, 0.15);
}

.circuit-line.h1 { width: 60%; height: 1px; top: 25%; left: 10%; animation: circuitPulse 4s ease-in-out infinite; }
.circuit-line.h2 { width: 45%; height: 1px; top: 55%; left: 30%; animation: circuitPulse 5s ease-in-out infinite 1s; }
.circuit-line.h3 { width: 55%; height: 1px; top: 80%; left: 15%; animation: circuitPulse 4.5s ease-in-out infinite 0.5s; }
.circuit-line.v1 { width: 1px; height: 40%; top: 15%; left: 35%; animation: circuitPulse 5s ease-in-out infinite 0.3s; }
.circuit-line.v2 { width: 1px; height: 50%; top: 25%; left: 70%; animation: circuitPulse 4s ease-in-out infinite 1.5s; }

@keyframes circuitPulse {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.5; }
}

.circuit-node {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fb7185;
    box-shadow: 0 0 8px rgba(251, 113, 133, 0.6);
    animation: nodeGlow 3s ease-in-out infinite;
}

.circuit-node.n1 { top: 25%; left: 35%; animation-delay: 0s; }
.circuit-node.n2 { top: 25%; left: 70%; animation-delay: 0.5s; }
.circuit-node.n3 { top: 55%; left: 30%; animation-delay: 1s; }
.circuit-node.n4 { top: 55%; left: 70%; animation-delay: 0.3s; }
.circuit-node.n5 { top: 80%; left: 35%; animation-delay: 0.8s; }
.circuit-node.n6 { top: 80%; left: 70%; animation-delay: 1.2s; }
.circuit-node.n7 { top: 15%; left: 35%; animation-delay: 0.6s; }
.circuit-node.n8 { top: 65%; left: 70%; animation-delay: 1.5s; }

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

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(1.8em, 4vw, 2.5em);
    font-weight: 800;
    color: #ffffff !important;
    margin: 0 0 8px 0;
    border: none !important;
    padding: 0 !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: clamp(0.9em, 1.8vw, 1.1em);
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 400;
    margin: 0;
}

.banner-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: shine 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

/* ============================================
   INTRO TEXT & DEFINITION
   ============================================ */
.intro-text {
    padding: 20px 24px;
    background: #ffffff;
    border-left: 4px solid #e11d48;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
    margin: 0 20px 20px;
    line-height: 1.7;
    color: #334155;
    font-size: 0.95em;
}

.definition-box {
    padding: 20px 24px;
    background: #ffffff;
    border-left: 4px solid #e11d48;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
    margin: 0 20px 20px;
}

.definition-box h4 {
    color: #e11d48;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin: 0 0 12px 0;
    font-size: 1.1em;
}

.definition-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.definition-box li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: #475569;
    font-size: 0.92em;
    line-height: 1.6;
}

.definition-box li::before {
    content: "\2714";
    position: absolute;
    left: 0;
    color: #e11d48;
    font-weight: bold;
}

/* ============================================
   STRATEGIC QUESTIONS
   ============================================ */
.questions {
    margin: 0 20px 20px;
}

.questions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.questions li {
    padding: 12px 16px 12px 50px;
    position: relative;
    background: #ffffff;
    border-left: 4px solid #e11d48;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
    margin-bottom: 10px;
    color: #475569;
    font-size: 0.92em;
    line-height: 1.6;
}

.questions li::before {
    content: "?";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: #fff1f2;
    color: #e11d48;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1em;
}

/* ============================================
   HIGHLIGHT BOX
   ============================================ */
.highlight-box {
    margin: 30px 20px;
    padding: 28px 32px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.15), transparent 60%);
    pointer-events: none;
}

.highlight-box-text {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1em, 2.5vw, 1.4em);
    font-weight: 700;
    background: linear-gradient(135deg, #fb7185, #fda4af, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

/* ============================================
   PARADIGM BOX
   ============================================ */
.paradigm-box {
    padding: 28px 32px;
    background: linear-gradient(135deg, #fff1f2, #ffe4e6);
    border-radius: 12px;
    margin: 20px 20px 30px;
    text-align: center;
    color: #334155;
    font-size: 1em;
    line-height: 1.7;
}

/* ============================================
   VISION SECTION
   ============================================ */
.vision-section {
    margin: 0 20px 30px;
}

.vision-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-section li {
    padding: 10px 16px 10px 36px;
    position: relative;
    color: #475569;
    font-size: 0.92em;
    line-height: 1.6;
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: 0 1px 6px rgba(15, 23, 42, 0.04);
}

.vision-section li::before {
    content: "\25B6";
    position: absolute;
    left: 14px;
    top: 12px;
    color: #e11d48;
    font-size: 0.7em;
}

/* ============================================
   BENEFITS GRID
   ============================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin: 0 20px 30px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(225, 29, 72, 0.08);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.1);
}

.benefit-card h4 {
    color: #e11d48;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin: 0 0 12px 0;
    font-size: 1.05em;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-card li {
    padding: 4px 0 4px 18px;
    position: relative;
    color: #475569;
    font-size: 0.85em;
    line-height: 1.6;
}

.benefit-card li::before {
    content: "\2022";
    position: absolute;
    left: 4px;
    color: #e11d48;
    font-weight: bold;
}

/* ============================================
   SHOWCASE SECTION
   ============================================ */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 0 20px 30px;
}

.showcase-item {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(251, 113, 133, 0.1);
}

.showcase-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(225, 29, 72, 0.15);
}

.showcase-item.full-width {
    grid-column: 1 / -1;
}

.showcase-item-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #9f1239, #e11d48);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9em;
    margin-bottom: 14px;
}

.showcase-item h4 {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2em;
    margin: 0 0 10px 0;
}

.showcase-item p {
    color: #94a3b8;
    font-size: 0.9em;
    line-height: 1.6;
    margin: 0;
}

.showcase-item .feature-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.showcase-item .feature-list li {
    padding: 4px 0 4px 20px;
    position: relative;
    color: #cbd5e1;
    font-size: 0.85em;
    line-height: 1.6;
}

.showcase-item .feature-list li::before {
    content: "\2714";
    position: absolute;
    left: 0;
    color: #fb7185;
}

/* ============================================
   PLATFORM CARDS (Web + Mobile)
   ============================================ */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 20px 30px;
}

.platform-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(225, 29, 72, 0.08);
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(225, 29, 72, 0.12);
}

.platform-icon {
    font-size: 2.8em;
    margin-bottom: 16px;
    line-height: 1;
}

.platform-card h4 {
    color: #0f172a;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15em;
    margin: 0 0 8px 0;
}

.platform-card p {
    color: #64748b;
    font-size: 0.85em;
    line-height: 1.6;
    margin: 0;
}

.platform-badge {
    display: inline-block;
    margin-top: 14px;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.75em;
    font-weight: 600;
    background: #fff1f2;
    color: #e11d48;
    border: 1px solid #fecdd3;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    margin: 0 20px 30px;
    padding: 40px 32px;
    background: linear-gradient(135deg, #e11d48, #f43f5e);
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.15), transparent 60%);
    pointer-events: none;
}

.cta-section h3 {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(1.4em, 3vw, 2em);
    margin: 0 0 12px 0;
    border: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05em;
    line-height: 1.6;
    margin: 0 0 24px 0;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #ffffff;
    color: #e11d48;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1em;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-family: 'Outfit', sans-serif;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ============================================
   NAVIGATION BUTTONS
   ============================================ */
.navigation-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 40px 20px 60px;
}

.btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9em;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', Arial, sans-serif;
}

.btn-primary {
    background: #e11d48;
    color: white;
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.3);
}

.btn-primary:hover {
    background: #be123c;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #f8fafc;
    color: #334155;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

/* ============================================
   MODAL OVERRIDES
   ============================================ */
[data-page="ineed2dance"] .send-btn {
    background: #e11d48;
}

[data-page="ineed2dance"] .send-btn:hover {
    background: #be123c;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
}

[data-page="ineed2dance"] .form-group input:focus,
[data-page="ineed2dance"] .form-group textarea:focus {
    border-color: #e11d48;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12);
}

/* ============================================
   ARCHITECTURE DIAGRAMS (SVG)
   ============================================ */
.arch-diagram {
    margin: 0 20px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(11, 26, 46, 0.25);
}

.arch-diagram svg {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .platform-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bpm-banner {
        height: 200px;
    }

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

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

    .navigation-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .bpm-banner {
        height: 160px;
        border-radius: 8px 8px 0 0;
    }

    h3 {
        font-size: 1.3em;
        margin: 25px 15px 12px;
    }

    .intro-text,
    .definition-box,
    .questions,
    .highlight-box,
    .paradigm-box,
    .vision-section,
    .benefits-grid,
    .showcase-grid,
    .platform-grid,
    .cta-section,
    .arch-diagram {
        margin-left: 12px;
        margin-right: 12px;
    }
}
