/* Next-Gen CSS Design Tokens */
:root {
    --bg-dark: #07090e;
    --bg-card: rgba(15, 22, 38, 0.65);
    --bg-border: rgba(255, 255, 255, 0.08);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Genetix Tailored Palettes */
    --coral-color: #f76f57;
    --turquoise-color: #0fa3b1;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --shadow-premium: 0 10px 40px -10px rgba(0, 0, 0, 0.7);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Base Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    padding-bottom: 80px; /* Space for the floating review bar */
}

/* Soft Glowing Background Meshes */
.mesh {
    position: fixed;
    width: 750px;
    height: 750px;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.12;
    z-index: -1;
    pointer-events: none;
}

.bg-coral {
    top: -150px;
    right: -100px;
    background-color: var(--coral-color);
}

.bg-turquoise {
    bottom: -200px;
    left: -150px;
    background-color: var(--turquoise-color);
}

/* Sticky Frictionless Reviews Floating Bar */
.reviews-floating-widget {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 22, 38, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.reviews-floating-widget span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
}

.btn-float-review {
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    color: white;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: all 0.3s ease;
}

.btn-float-review.g-review {
    background: #4285f4;
    border: 1px solid rgba(66, 133, 244, 0.3);
}

.btn-float-review.g-review:hover {
    background: #357ae8;
    box-shadow: 0 0 15px rgba(66, 133, 244, 0.4);
}

.btn-float-review.app-review {
    background: #00e676;
    color: #000;
}

.btn-float-review.app-review:hover {
    background: #00c853;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.4);
}

/* Custom Grids & Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }

/* Navigation Bar */
.navbar {
    background: rgba(7, 9, 14, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bg-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.65rem 1.5rem;
    gap: 0.45rem;
}

.navbar-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-bottom-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.5rem;
}

.feature-flipping-banner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(247, 111, 87, 0.06);
    border: 1px dashed rgba(247, 111, 87, 0.3);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--coral-color);
    max-width: 420px;
    overflow: hidden;
    height: 28px;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(247, 111, 87, 0.2);
    box-shadow: inset 0 0 10px rgba(247, 111, 87, 0.05);
}

.feature-flip-text {
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    line-height: 1;
    white-space: nowrap;
}

.logo-coral {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--coral-color);
    letter-spacing: -1px;
}

.logo-light {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    color: #ffffff;
}

.logo-turquoise {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--turquoise-color);
    letter-spacing: -1px;
}

.by-brand {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

/* Hero Section */
.hero {
    padding: 6.5rem 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.eyebrow {
    color: var(--turquoise-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, var(--coral-color) 0%, var(--turquoise-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
}

.h-feat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.h-feat i {
    color: var(--turquoise-color);
}

/* General Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral-color) 0%, #ff563f 100%);
    color: #ffffff;
    padding: 0.95rem 1.75rem;
    box-shadow: 0 4px 20px rgba(247, 111, 87, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(247, 111, 87, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid var(--bg-border);
    padding: 0.95rem 1.75rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-nav {
    background: rgba(15, 163, 177, 0.12);
    border: 1px solid rgba(15, 163, 177, 0.3);
    color: #ffffff;
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
}

.btn-nav:hover {
    background: var(--turquoise-color);
    box-shadow: 0 4px 15px rgba(15, 163, 177, 0.3);
}

.btn-large {
    padding: 1.1rem 2rem;
    font-size: 1rem;
}

.w-full { width: 100%; }

/* Multiple Intelligences Wheel visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-orb {
    background: radial-gradient(circle, rgba(15, 163, 177, 0.05) 0%, rgba(247, 111, 87, 0.02) 100%);
    border: 1px solid var(--bg-border);
    width: 480px;
    height: 480px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(8px);
}

.intelligence-wheel {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.05);
    animation: slowRotate 45s linear infinite;
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.segment {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.segment i {
    font-size: 1.1rem;
    color: var(--turquoise-color);
    margin-bottom: 2px;
}

.segment span {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.segment:hover {
    transform: scale(1.15) !important;
    border-color: var(--coral-color);
    box-shadow: 0 0 20px rgba(247, 111, 87, 0.3);
}

.segment:hover i {
    color: var(--coral-color);
}

/* Place circular segments precisely */
.word-smart { top: 5%; left: 42%; transform: rotate(0deg); }
.number-smart { top: 17%; left: 74%; }
.picture-smart { top: 50%; left: 84%; }
.music-smart { top: 78%; left: 70%; }
.body-smart { top: 85%; left: 42%; }
.people-smart { top: 75%; left: 14%; }
.self-smart { top: 48%; left: 5%; }
.nature-smart { top: 16%; left: 14%; }

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: #0f172a;
    border: 1px solid rgba(15, 163, 177, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(15, 163, 177, 0.2);
    z-index: 5;
    animation: reverseRotate 45s linear infinite;
}

@keyframes reverseRotate {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

.font-finger {
    font-size: 2.25rem;
    color: var(--coral-color);
    margin-bottom: 2px;
}

.center-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: white;
}

/* Service Card Grids */
.services {
    padding: 7.5rem 0;
    border-top: 1px solid var(--bg-border);
}

.section-tag {
    background: rgba(247, 111, 87, 0.12);
    border: 1px solid rgba(247, 111, 87, 0.3);
    color: var(--coral-color);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.services h2, .quiz-header h2, .social-section h2, .testimonials h2, .pricing-section h2, .swot-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
    color: white;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 4.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--bg-border);
    border-radius: 20px;
    padding: 2.5rem 1.75rem;
    text-align: left;
    box-shadow: var(--shadow-premium);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 163, 177, 0.25);
}

.service-card.font-highlight {
    border-color: rgba(247, 111, 87, 0.25);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(247, 111, 87, 0.03) 100%);
}

.icon-box {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: var(--turquoise-color);
    margin-bottom: 1.75rem;
    border: 1px solid var(--bg-border);
}

.service-card.font-highlight .icon-box {
    color: var(--coral-color);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* 🏆 Award & Credibility Banner */
.credibility-banner {
    padding: 6.5rem 0;
    border-top: 1px solid var(--bg-border);
    background: linear-gradient(180deg, rgba(247, 111, 87, 0.02) 0%, transparent 100%);
}

.credibility-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.award-ribbon {
    background: rgba(244, 196, 48, 0.15);
    border: 1px solid rgba(244, 196, 48, 0.4);
    color: #f4c430;
    padding: 0.45rem 1.25rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.award-badge-container h3 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: white;
}

.award-badge-container p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 2.5rem;
}

.cred-stats {
    display: flex;
    gap: 3rem;
}

.c-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--turquoise-color);
}

.c-stat span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.award-visual {
    display: flex;
    justify-content: center;
}

.stage-mockup {
    width: 340px;
    height: 240px;
    background: radial-gradient(circle at center, rgba(15, 163, 177, 0.2) 0%, rgba(7, 9, 14, 0.8) 100%);
    border: 1px solid rgba(15, 163, 177, 0.3);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0 30px rgba(15, 163, 177, 0.15);
}

.award-icon {
    font-size: 4rem;
    color: #f4c430;
    margin-bottom: 1.5rem;
    animation: pulseAward 3s ease-in-out infinite;
}

@keyframes pulseAward {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(244, 196, 48, 0.2)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 20px rgba(244, 196, 48, 0.6)); }
}

.stage-mockup .award-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: white;
    margin-bottom: 4px;
}

.stage-mockup .award-org {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* 📊 SWOT Analysis & Hero Product Styles */
.swot-section {
    padding: 7.5rem 0;
    border-top: 1px solid var(--bg-border);
}

.swot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-bottom: 4.5rem;
}

.swot-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--bg-border);
    border-radius: 24px;
    padding: 3rem 1.75rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: transform 0.3s ease;
}

.swot-card:hover {
    transform: translateY(-5px);
}

.swot-letter {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 900;
    position: absolute;
    top: -15px;
    right: -10px;
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.swot-card:hover .swot-letter {
    opacity: 0.08;
}

.swot-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.swot-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* SWOT Card Custom themes */
.swot-card.strength {
    border-top: 4px solid var(--turquoise-color);
}
.swot-card.strength .swot-letter { color: var(--turquoise-color); }
.swot-card.strength h4 { color: var(--turquoise-color); }

.swot-card.weakness {
    border-top: 4px solid var(--warning-color);
}
.swot-card.weakness .swot-letter { color: var(--warning-color); }
.swot-card.weakness h4 { color: var(--warning-color); }

.swot-card.opportunity {
    border-top: 4px solid var(--success-color);
}
.swot-card.opportunity .swot-letter { color: var(--success-color); }
.swot-card.opportunity h4 { color: var(--success-color); }

.swot-card.threat {
    border-top: 4px solid var(--coral-color);
}
.swot-card.threat .swot-letter { color: var(--coral-color); }
.swot-card.threat h4 { color: var(--coral-color); }

/* SWOT Age Segmentation card */
.swot-segmentation {
    padding: 3.5rem;
    text-align: left;
}

.swot-segmentation h3 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.swot-segmentation > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.stage-item h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stage-item h5::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--coral-color);
}

.stage-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Pricing Grid Styles */
.pricing-section {
    padding: 7.5rem 0;
    border-top: 1px solid var(--bg-border);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
    gap: 1.25rem;
}

.pricing-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--bg-border);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    text-align: left;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    width: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

/* Premium pointing animation for Card 4 pointers */
.pointer-icon {
    color: var(--coral-color) !important;
    font-size: 1.1rem !important;
    animation: pointRight 1.2s infinite alternate;
}

@keyframes pointRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(4px); }
}

.pricing-card.featured {
    border: 2px solid var(--coral-color);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(247, 111, 87, 0.04) 100%);
    box-shadow: 0 0 20px rgba(247, 111, 87, 0.15), 0 15px 40px -10px rgba(247, 111, 87, 0.2);
    animation: glowingBorder 3s infinite alternate;
}

@keyframes glowingBorder {
    0% {
        border-color: rgba(247, 111, 87, 0.5);
        box-shadow: 0 0 10px rgba(247, 111, 87, 0.15), 0 15px 40px -10px rgba(247, 111, 87, 0.2);
    }
    100% {
        border-color: rgba(247, 111, 87, 1);
        box-shadow: 0 0 25px rgba(247, 111, 87, 0.4), 0 15px 40px -10px rgba(247, 111, 87, 0.25);
    }
}

.badge-featured {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--coral-color);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    letter-spacing: 1px;
}

.plan-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.plan-header .price {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: baseline;
}

.plan-header .currency {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-right: 2px;
}

.plan-header .term {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.plan-header .desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.4;
    min-height: 40px;
}

.plan-divider {
    height: 1px;
    background: var(--bg-border);
    margin: 2rem 0;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
    margin-bottom: 2.5rem;
}

.plan-features li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.4;
}

.plan-features li i {
    color: var(--turquoise-color);
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}

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

/* Interactive Quiz Lead Magnet Styles */
.quiz-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 163, 177, 0.03) 100%);
    border-top: 1px solid var(--bg-border);
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--bg-border);
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
}

.quiz-header {
    text-align: center;
    margin-bottom: 2.25rem;
}

.quiz-badge {
    background: rgba(15, 163, 177, 0.12);
    border: 1px solid rgba(15, 163, 177, 0.3);
    color: var(--turquoise-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.progress-bar-container {
    background: rgba(255, 255, 255, 0.05);
    height: 6px;
    border-radius: 50px;
    margin-bottom: 3.5rem;
    overflow: hidden;
}

.progress-bar-fill {
    background: linear-gradient(90deg, var(--turquoise-color) 0%, var(--coral-color) 100%);
    height: 100%;
    border-radius: 50px;
    transition: width 0.4s ease;
}

.quiz-body h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    color: white;
}

.options-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--bg-border);
    color: var(--text-secondary);
    padding: 1.25rem 1.75rem;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.option-btn:hover {
    background: rgba(15, 163, 177, 0.05);
    border-color: var(--turquoise-color);
    color: white;
}

/* Lead Form screens */
.hidden { display: none !important; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--bg-border);
    padding: 0.95rem 1.25rem;
    border-radius: 12px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group select {
    width: 100%;
    background: #0c111d; /* Solid opaque dark background to prevent light-theme washouts */
    border: 1px solid var(--bg-border);
    padding: 0.95rem 1.25rem;
    border-radius: 12px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--turquoise-color);
    background: rgba(255, 255, 255, 0.05);
}

.form-group select option {
    background-color: #0c111d; /* Explicit solid dark color for dropdown list items */
    color: #ffffff; /* Bright white readable text */
    padding: 10px;
}

/* Quiz Results Panel styling */
.result-display {
    text-align: center;
    margin-bottom: 2.5rem;
}

.result-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(247, 111, 87, 0.15);
    border: 1px solid rgba(247, 111, 87, 0.3);
    font-size: 2.25rem;
    color: var(--coral-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.result-action-panel {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Trending Social Media Section */
.social-section {
    padding: 7.5rem 0;
    border-top: 1px solid var(--bg-border);
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.reel-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: transform 0.3s ease;
}

.reel-card:hover {
    transform: translateY(-5px);
}

.reel-video-mock {
    aspect-ratio: 9 / 16;
    background-size: cover;
    background-position: center;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    position: relative;
}

.view-count {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffffff;
    align-self: flex-start;
}

.reel-info h4 {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.reel-info p {
    color: #cbd5e1;
    font-size: 0.78rem;
    line-height: 1.35;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.reel-footer {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
}

.btn-reel-action {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.btn-reel-action:hover {
    color: var(--coral-color);
}

/* Testimonials / Native Reviews Section */
.testimonials {
    padding: 7.5rem 0;
    border-top: 1px solid var(--bg-border);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.test-card {
    padding: 2.25rem 2rem;
    text-align: left;
}

.stars {
    color: var(--warning-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.author-info strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
}

.author-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Scheduler / Direct Booking Panel */
.booking-section {
    padding: 6rem 0;
    border-top: 1px solid var(--bg-border);
}

.booking-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 24px;
    overflow: hidden;
}

.booking-info-panel {
    padding: 4rem;
    background: linear-gradient(135deg, rgba(15, 163, 177, 0.05) 0%, rgba(247, 111, 87, 0.02) 100%);
    border-right: 1px solid var(--bg-border);
}

.booking-info-panel p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 3.5rem;
}

.benefits-row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.b-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
}

.b-card i {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(15, 163, 177, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--turquoise-color);
}

.scheduler-panel {
    padding: 4rem;
    display: flex;
    align-items: center;
}

.booking-form {
    width: 100%;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.slot-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--bg-border);
    color: var(--text-secondary);
    padding: 0.65rem 0.5rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.slot-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.slot-btn.active {
    background: rgba(15, 163, 177, 0.15);
    border-color: var(--turquoise-color);
    color: white;
}

.slot-btn.booked {
    background: rgba(239, 68, 68, 0.08) !important;
    border-color: rgba(239, 68, 68, 0.25) !important;
    color: #ef4444 !important;
    cursor: not-allowed !important;
    font-size: 0.72rem !important;
    padding: 0.65rem 0.25rem !important;
}

/* Footer styling */
.footer {
    border-top: 1px solid var(--bg-border);
    padding: 5rem 0 2rem 0;
    background: #04060a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.foot-brand p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    margin-bottom: 1.75rem;
    max-width: 320px;
}

.foot-socials {
    display: flex;
    gap: 0.75rem;
}

.foot-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--bg-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.foot-socials a:hover {
    color: white;
    border-color: var(--coral-color);
    background: var(--coral-color);
}

.foot-links h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.foot-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.foot-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--bg-border);
    padding-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive breakdowns */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .swot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-features {
        justify-content: center;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .booking-card {
        grid-template-columns: 1fr;
    }
    .booking-info-panel {
        border-right: none;
        border-bottom: 1px solid var(--bg-border);
    }
    .credibility-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cred-stats {
        justify-content: center;
    }
    .award-visual {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: sticky !important;
        top: 0 !important;
    }
    .navbar-top-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    .feature-flipping-banner {
        margin: 0.25rem auto !important;
        max-width: 100% !important;
        width: 100% !important;
        justify-content: center !important;
    }
    .header-playstore-stats {
        width: 100% !important;
        justify-content: center !important;
        font-size: 0.72rem !important;
    }
    .navbar-bottom-row {
        overflow-x: auto !important;
        white-space: nowrap !important;
        justify-content: flex-start !important;
        padding: 0.65rem 1rem !important;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
    .navbar-bottom-row::-webkit-scrollbar {
        display: none !important;
    }
    .nav-links {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 1.25rem !important;
        width: max-content !important;
    }
    .nav-links a {
        display: inline-block !important;
        font-size: 0.85rem !important;
        white-space: nowrap !important;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    .swot-grid {
        grid-template-columns: 1fr !important;
    }
    .swot-segmentation {
        padding: 2rem 1.5rem;
    }
    .stages-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .pricing-grid {
        grid-template-columns: 1fr !important;
    }
    .reels-grid {
        grid-template-columns: 1fr !important;
    }
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    .curriculum-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .mentor-details-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    .glass-orb {
        width: 320px;
        height: 320px;
    }
    .intelligence-wheel {
        width: 260px;
        height: 260px;
    }
    .segment {
        width: 44px;
        height: 44px;
    }
    .segment span { display: none; }
    /* Recalibrate circular coordinate segments for mobile wheel */
    .word-smart { top: 2%; left: 42%; }
    .number-smart { top: 15%; left: 74%; }
    .picture-smart { top: 48%; left: 82%; }
    .music-smart { top: 76%; left: 68%; }
    .body-smart { top: 84%; left: 42%; }
    .people-smart { top: 74%; left: 14%; }
    .self-smart { top: 46%; left: 3%; }
    .nature-smart { top: 14%; left: 12%; }
    
    .wheel-center {
        width: 90px;
        height: 90px;
    }
    .font-finger { font-size: 1.5rem; }
    .center-text { font-size: 0.65rem; }
    
    .reviews-floating-widget {
        width: 90%;
        bottom: 16px;
        padding: 0.75rem 1rem;
        gap: 0.75rem;
        flex-direction: column;
        border-radius: 20px;
    }
    .reviews-floating-widget span {
        font-size: 0.8rem;
    }
    .btn-float-review {
        width: 100%;
        justify-content: center;
    }
}

/* --- NEW AGE SOCIAL MEDIA & APP GROWTH HUBS --- */

/* App Promotion Showcase Card */
.app-promo-section {
    padding: 7.5rem 0;
    border-top: 1px solid var(--bg-border);
    background: linear-gradient(180deg, transparent 0%, rgba(16, 185, 129, 0.02) 100%);
}

.app-promo-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    border-radius: 28px;
    padding: 4.5rem;
    border: 1px solid rgba(16, 185, 129, 0.15);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(16, 185, 129, 0.02) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.app-promo-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: white;
}

.app-promo-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.app-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.app-features-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.app-features-list li i {
    color: var(--success-color);
    font-size: 1.15rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.app-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.playstore-badge {
    height: 52px;
    transition: transform 0.3s ease;
}

.playstore-badge:hover {
    transform: translateY(-3px);
}

.app-stats {
    display: flex;
    gap: 1.5rem;
    border-left: 2px solid var(--bg-border);
    padding-left: 1.5rem;
}

.app-stat-item strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: white;
}

.app-stat-item span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.app-visual-mockup {
    display: flex;
    justify-content: center;
    position: relative;
}

.app-screen-glass {
    width: 280px;
    height: 540px;
    background: rgba(15, 22, 38, 0.85);
    border: 8px solid #1e293b;
    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* App Camera Scan Simulation */
.app-scanner-sim {
    position: relative;
    width: 100%;
    height: 220px;
    border: 2px dashed rgba(16, 185, 129, 0.4);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    margin: 1rem 0;
}

.scanner-laser {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--success-color);
    box-shadow: 0 0 12px var(--success-color);
    animation: laserScan 2.5s ease-in-out infinite;
}

@keyframes laserScan {
    0%, 100% { top: 5%; }
    50% { top: 95%; }
}

.scanner-finger {
    font-size: 5rem;
    color: rgba(16, 185, 129, 0.15);
    animation: fingerPulse 2s infinite ease-in-out;
}

@keyframes fingerPulse {
    0%, 100% { transform: scale(1); color: rgba(16, 185, 129, 0.15); }
    50% { transform: scale(1.08); color: rgba(16, 185, 129, 0.35); }
}

/* YouTube Interactive Hub styles */
.youtube-hub-section {
    padding: 7.5rem 0;
    border-top: 1px solid var(--bg-border);
}

.yt-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.yt-tabs {
    display: flex;
    gap: 0.75rem;
}

.yt-tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--bg-border);
    color: var(--text-secondary);
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yt-tab-btn.active, .yt-tab-btn:hover {
    background: rgba(239, 68, 68, 0.12);
    border-color: #ef4444;
    color: white;
}

.yt-sort-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.yt-sort-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #ffffff;
    padding: 0.55rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: background 0.3s ease;
}

.yt-sort-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.live-site-counter {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.live-site-counter span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ef4444;
    display: inline-block;
    animation: flash 1.5s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.yt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.yt-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.yt-card:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 68, 68, 0.3);
}

.yt-thumb-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.yt-thumb-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 9, 14, 0.25);
    transition: background 0.3s ease;
}

.yt-thumb-wrapper:hover::before {
    background: rgba(7, 9, 14, 0.55);
}

.yt-play-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #ef4444;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.yt-thumb-wrapper:hover .yt-play-icon {
    transform: scale(1.15);
    background: #ff5252;
}

.yt-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
}

.yt-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-size: 0.72rem;
    font-weight: 600;
    z-index: 2;
}

.yt-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.yt-card-content h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yt-meta-row {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--bg-border);
    padding-top: 1rem;
}

.yt-views i {
    color: #ef4444;
    margin-right: 3px;
}

/* Homepage "About Us" Section with human touch */
.home-about-section {
    padding: 7.5rem 0;
    border-top: 1px solid var(--bg-border);
    background: linear-gradient(180deg, rgba(247, 111, 87, 0.015) 0%, transparent 100%);
}

.home-about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.about-text-panel {
    text-align: left;
}

.about-text-panel h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.about-human-intro {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.home-hooks-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.home-hooks-list li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.home-hooks-list li i {
    color: var(--coral-color);
    font-size: 1.35rem;
    margin-top: 2px;
}

.home-hooks-list li div strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.home-hooks-list li div p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.about-visual-panel {
    display: flex;
    justify-content: center;
}

.about-author-box {
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(247, 111, 87, 0.2);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(247, 111, 87, 0.02) 100%);
    text-align: center;
    box-shadow: var(--shadow-premium);
    max-width: 360px;
}

.author-badge-icon {
    font-size: 3.5rem;
    color: var(--coral-color);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(247, 111, 87, 0.3));
}

.about-author-box h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: white;
    margin-bottom: 0.5rem;
}

.about-author-box p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.author-btn-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Social Media Community Board */
.social-community-section {
    padding: 7.5rem 0;
    border-top: 1px solid var(--bg-border);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-top: 3.5rem;
}

.comm-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: 24px;
    padding: 2.5rem 1.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.comm-card:hover {
    transform: translateY(-5px);
}

.comm-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    color: white;
    margin-bottom: 1.5rem;
}

.comm-card.yt { border-color: rgba(239, 68, 68, 0.2); }
.comm-card.yt .comm-icon { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.comm-card.yt:hover { border-color: #ef4444; box-shadow: 0 0 20px rgba(239, 68, 68, 0.25); }

.comm-card.ig { border-color: rgba(247, 111, 87, 0.2); }
.comm-card.ig .comm-icon { background: rgba(247, 111, 87, 0.15); color: var(--coral-color); }
.comm-card.ig:hover { border-color: var(--coral-color); box-shadow: 0 0 20px rgba(247, 111, 87, 0.25); }

.comm-card.fb { border-color: rgba(66, 103, 178, 0.2); }
.comm-card.fb .comm-icon { background: rgba(66, 103, 178, 0.15); color: #4267b2; }
.comm-card.fb:hover { border-color: #4267b2; box-shadow: 0 0 20px rgba(66, 103, 178, 0.25); }

.comm-card.ln { border-color: rgba(0, 119, 181, 0.2); }
.comm-card.ln .comm-icon { background: rgba(0, 119, 181, 0.15); color: #0077b5; }
.comm-card.ln:hover { border-color: #0077b5; box-shadow: 0 0 20px rgba(0, 119, 181, 0.25); }

.comm-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.comm-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.comm-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.45;
    margin-bottom: 2rem;
    min-height: 50px;
}

/* Hot Reel Highlight Card on grid */
.reel-highlight {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(247, 111, 87, 0.05) 100%) !important;
    border-color: rgba(247, 111, 87, 0.3) !important;
    box-shadow: 0 15px 30px rgba(247, 111, 87, 0.15) !important;
}

.reel-highlight:hover {
    border-color: var(--coral-color) !important;
    box-shadow: 0 20px 40px rgba(247, 111, 87, 0.25) !important;
}

.highlight-badge {
    background: rgba(247, 111, 87, 0.15);
    border: 1px solid rgba(247, 111, 87, 0.3);
    color: var(--coral-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

/* App Scanner Image Mock */
.scan-area-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.65;
}

/* --- HERO FEATURE LIST ANIMATIONS --- */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes crosshairPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 1px rgba(247, 111, 87, 0.2));
    }
    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 5px rgba(247, 111, 87, 0.8));
    }
}

.hero-features .h-feat {
    opacity: 0;
    animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Staggered entrance delays */
.hero-features .h-feat:nth-child(2) { animation-delay: 0.1s; }
.hero-features .h-feat:nth-child(3) { animation-delay: 0.2s; }
.hero-features .h-feat:nth-child(4) { animation-delay: 0.3s; }
.hero-features .h-feat:nth-child(5) { animation-delay: 0.4s; }
.hero-features .h-feat:nth-child(6) { animation-delay: 0.5s; }
.hero-features .h-feat:nth-child(7) { animation-delay: 0.6s; }

/* Apply infinite glowing pulse to icons with staggered delay */
.hero-features .h-feat i {
    display: inline-block;
    animation: crosshairPulse 2s infinite ease-in-out;
}

.hero-features .h-feat:nth-child(2) i { animation-delay: 0.1s; }
.hero-features .h-feat:nth-child(3) i { animation-delay: 0.3s; }
.hero-features .h-feat:nth-child(4) i { animation-delay: 0.5s; }
.hero-features .h-feat:nth-child(5) i { animation-delay: 0.7s; }
.hero-features .h-feat:nth-child(6) i { animation-delay: 0.9s; }
.hero-features .h-feat:nth-child(7) i { animation-delay: 1.1s; }

/* --- ACTIVE BOOKINGS DASHBOARD STYLES --- */
.my-bookings-dashboard {
    width: 100%;
}

.booking-item-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--bg-border);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.booking-item-card:hover {
    border-color: rgba(15, 163, 177, 0.35);
    background: rgba(15, 163, 177, 0.03);
}

.booking-details-text {
    font-size: 0.85rem;
    line-height: 1.45;
    text-align: left;
}

.booking-details-text strong {
    color: white;
}

.booking-details-text span {
    color: var(--text-secondary);
    display: block;
    font-size: 0.78rem;
    margin-top: 3px;
}

.btn-cancel-booking {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.25);
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.btn-cancel-booking:hover {
    background: #ef4444;
    color: white;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.35);
}

/* ------------------------------------------------------------- */
/* App Scan Image Slider & Live Cart Summary Utilities */
/* ------------------------------------------------------------- */
.scan-slider-container {
    box-shadow: inset 0 0 20px rgba(0,0,0,0.6);
}

.scan-laser-line {
    z-index: 5;
}

@keyframes scanLaserAnim {
    0%, 100% { top: 0%; }
    50% { top: 98%; }
}

.slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.slider-arrow:hover {
    opacity: 1;
    background: rgba(0,0,0,0.8) !important;
}

.slider-dot.active {
    transform: scale(1.3);
}

.live-pricing-summary {
    transition: all 0.3s ease;
}

.form-group select option {
    background: #07090e;
    color: white;
}

.refund-policy-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--success-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 1rem;
}

/* ================================================================= */
/* 📖 Interactive Digital Flipbook & Course Curriculum Styles */
/* ================================================================= */
.flipbook-section {
    position: relative;
    overflow: hidden;
}

.flipbook-wrapper {
    box-shadow: var(--shadow-premium), 0 25px 60px -15px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--bg-border);
    perspective: 1500px;
}

.flipbook-page {
    box-sizing: border-box;
    backface-visibility: hidden;
}

.flipbook-tab-btn.active {
    box-shadow: 0 0 15px rgba(16, 163, 177, 0.15);
}

.book-spine::after {
    content: '';
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 90%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(1px);
}

/* Syllabus & Curriculum styling */
.counselor-curriculum-section {
    position: relative;
    overflow: hidden;
}

.syllabus-level-card {
    border-color: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.syllabus-level-card:hover {
    border-color: rgba(16, 163, 177, 0.2);
    background: rgba(255, 255, 255, 0.02);
}

.curriculum-schedule-container {
    border-color: rgba(255, 255, 255, 0.03);
}

/* Automated UPI Verification Modal Spinner styles */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulseSuccess {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 8px rgba(16, 185, 129, 0);
    }
}

.circular-spinner {
    box-sizing: border-box;
}

@keyframes marqueeAnim {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}


