/* =========================================
   DESIGN SYSTEM & CSS VARIABLES
========================================= */
:root {
    /* Main Branding Colors */
    --color-trust-blue: #1E4E8C;
    --color-insight-blue: #2FB7C8;
    --color-insight-purple: #8A4AB7;

    /* Neutral & Backgrounds */
    --color-white: #ffffff;
    --color-gray-50: #f8fafc;
    --color-gray-100: #f1f5f9;
    --color-gray-800: #1e293b;
    --color-gray-900: #0f172a;
    --color-dark-bg: #0B1120;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-trust-blue), var(--color-insight-blue));
    --gradient-magic: linear-gradient(135deg, var(--color-insight-blue), var(--color-insight-purple));
    --gradient-dark: linear-gradient(180deg, var(--color-dark-bg), #121A2F);

    /* Fonts */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Roboto', 'Source Sans Pro', sans-serif;

    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(47, 183, 200, 0.4);
    --shadow-glow-purple: 0 0 20px rgba(138, 74, 183, 0.4);

    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & GLOBAL
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-800);
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-gray-900);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================
   UTILITIES
========================================= */
.gradient-text {
    background: var(--gradient-magic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section {
    padding: 50px 0;
}

/* =========================================
   BUTTONS
========================================= */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
    color: var(--color-white);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.glow-effect {
    position: relative;
    z-index: 1;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: var(--gradient-magic);
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.glow-effect:hover::before {
    opacity: 0.7;
}

/* =========================================
   HEADER & NAVBAR
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-fast);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--color-white);
    letter-spacing: -0.5px;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--color-insight-blue);
    border-radius: 50%;
    margin-left: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn-primary) {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15px;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--color-insight-blue);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    /* toggled via JS */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(16px);
    padding: 20px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 18px;
    padding: 10px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    color: var(--color-white);
    overflow: hidden;
    padding-top: 80px;
    /* Offset for header */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(11, 17, 32, 0.75) 0%,
        rgba(11, 17, 32, 0.45) 50%,
        rgba(11, 17, 32, 0.75) 100%);
    z-index: 1;
}

.dna-mesh {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background-image: radial-gradient(circle, rgba(47, 183, 200, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    animation: rotateSlowly 60s linear infinite;
    mask-image: radial-gradient(circle, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, black 30%, transparent 70%);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s ease-in-out infinite alternate;
}

.orb-1 {
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: var(--color-trust-blue);
    animation-delay: 0s;
}

.orb-2 {
    top: 50%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: var(--color-insight-purple);
    animation-delay: -5s;
}

.orb-3 {
    bottom: -10%;
    left: 30%;
    width: 350px;
    height: 350px;
    background: var(--color-insight-blue);
    animation-delay: -2s;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-text-white {
    text-shadow: none;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #6beaff 0%, #cb69ec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-slogan {
    font-size: clamp(20px, 3vw, 28px);
    font-family: var(--font-heading);
    color: #4DE8FB; /* Brighter cyan */
    font-weight: 500; /* Slightly bolder */
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8), 0 0 10px rgba(77, 232, 251, 0.3);
}

.hero-subtext {
    font-size: clamp(16px, 2vw, 20px);
    color: #ffffff;
    max-width: 700px; /* Slightly wider for better flow */
    margin: 0 auto 20px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =========================================
   ANIMATIONS & EFFECTS
========================================= */
@keyframes rotateSlowly {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateCentered {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, -50px);
    }
}

/* Scroll Reveal Classes */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-item.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* =========================================
   COMMON SECTION STYLES
========================================= */
.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.bg-light {
    background-color: var(--color-gray-50);
}

.relative {
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   PHILOSOPHY SECTION
========================================= */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.concept-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-100);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.concept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-magic);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.concept-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.concept-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--color-gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-insight-blue);
    position: relative;
    z-index: 1;
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: var(--gradient-magic);
    z-index: -1;
    opacity: 0.1;
    transition: transform var(--transition-fast);
}

.concept-card:hover .icon-wrapper::after {
    transform: scale(1.1);
    opacity: 0.2;
}

.icon-wrapper svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.5;
}

.concept-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

/* =========================================
   FRAMEWORK SECTION
========================================= */
.framework-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.framework-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.dna-core {
    width: 375px;
    height: 375px;
    border-radius: 50%;
    background: var(--color-white);
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-trust-blue);
    position: relative;
    z-index: 2;
    overflow: visible;
}

.framework-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Vòng tròn nét đứt xoay chậm - sát viền ngoài hình ảnh */
.dna-core::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 410px;
    height: 410px;
    border: 2px dashed rgba(47, 183, 200, 0.4);
    border-radius: 50%;
    animation: rotateSlowly 30s linear infinite;
    z-index: -1;
}

/* Vòng tròn nét liền xoay ngược - sát viền ngoài */
.dna-core::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 440px;
    height: 440px;
    border: 2px solid rgba(47, 183, 200, 0.1);
    border-top-color: rgba(47, 183, 200, 0.4);
    border-bottom-color: rgba(138, 74, 183, 0.2);
    border-radius: 50%;
    animation: rotateCentered 20s linear infinite reverse;
    z-index: -1;
}

.framework-pillars {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-gray-100);
    transition: all var(--transition-fast);
}

.pillar-item:hover {
    border-left-color: var(--color-insight-purple);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.pillar-number {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-insight-purple);
    min-width: 40px;
}

.pillar-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--color-trust-blue);
}

.pillar-content p {
    color: var(--color-gray-800);
    font-size: 15px;
}

/* =========================================
   SERVICES SECTION
========================================= */
.services-sec {
    position: relative;
}

.grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    padding: 40px;
    border-radius: 20px;
    transition: all var(--transition-fast);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--color-insight-blue);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: 24px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.service-card p {
    margin-bottom: 24px;
    min-height: 50px;
}

.link-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--color-insight-blue);
    font-family: var(--font-heading);
}

.link-more svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.link-more:hover svg {
    transform: translateX(5px);
}

/* =========================================
   RESPONSIVE (Max-width 768px for above structure)
========================================= */
.mobile-break {
    display: none !important;
}

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .framework-container {
        grid-template-columns: 1fr;
    }

    .framework-visual {
        height: 320px;
        margin-top: 20px;
        margin-bottom: 60px;
    }

    .dna-core {
        transform: scale(0.8);
    }

    .mobile-break {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-2x2 {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-slogan {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding: 0 20px;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        max-width: 170px;
        padding: 10px 16px;
        font-size: 16px;
        white-space: nowrap;
        text-align: center;
    }
}

/* =========================================
   JOURNEY SECTION
========================================= */
.timeline-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 60px;
    padding: 0 40px;
}

.timeline-line {
    position: absolute;
    top: 30px;
    left: 80px;
    right: 80px;
    height: 4px;
    background: var(--color-gray-100);
    z-index: 1;
}

.timeline-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow);
    animation: flowLight 3s linear infinite;
}

@keyframes flowLight {
    0% {
        transform: scaleX(0);
        transform-origin: left;
        opacity: 0.2;
    }

    50% {
        transform: scaleX(1);
        transform-origin: left;
        opacity: 1;
    }

    51% {
        transform: scaleX(1);
        transform-origin: right;
        opacity: 1;
    }

    100% {
        transform: scaleX(0);
        transform-origin: right;
        opacity: 0.2;
    }
}

.timeline-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 25%;
    padding: 0 15px;
}

.step-dot {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-white);
    border: 4px solid var(--color-trust-blue);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--color-trust-blue);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.timeline-step:hover .step-dot {
    transform: scale(1.1);
    background: var(--color-trust-blue);
    color: var(--color-white);
    border-color: var(--color-insight-blue);
    box-shadow: var(--shadow-glow);
}

.timeline-step h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.timeline-step p {
    color: var(--color-gray-500);
    font-size: 15px;
}

@media (max-width: 768px) {
    .timeline-horizontal {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 15px;
        gap: 32px;
    }

    .timeline-line {
        top: 24px;
        bottom: 40px;
        left: 39px;
        width: 3px;
        height: auto;
        transform: translateX(-50%);
    }

    .timeline-line::after {
        animation: flowLightVertical 3s linear infinite;
    }

    .timeline-step {
        width: 100%;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        text-align: left;
    }

    .step-dot {
        width: 48px;
        height: 48px;
        font-size: 20px;
        border-width: 3px;
        margin: 0 16px 0 0;
        flex-shrink: 0;
    }

    .timeline-step h4 {
        margin: 0;
        flex: 1;
        font-size: 18px;
    }

    .timeline-step p {
        width: 100%;
        margin-top: 6px;
        padding-left: 64px;
        /* 48px dot + 16px margin */
        color: var(--color-gray-500);
    }
}

@keyframes flowLightVertical {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0.2;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 1;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
        opacity: 0.2;
    }
}

/* =========================================
   TARGET AUDIENCE SECTION
========================================= */
.audience-card {
    text-align: center;
    transition: transform var(--transition-fast);
}

.audience-card:hover {
    transform: translateY(-10px);
}

.audience-visual {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.audience-visual::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    animation: rotateCentered 10s linear infinite;
    border-left-color: transparent;
    border-right-color: transparent;
}

.audience-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px dashed rgba(47, 183, 200, 0.3);
    animation: rotateCentered 15s linear infinite reverse;
}

.bg-trust-blue {
    background: var(--color-trust-blue);
    color: var(--color-white);
}

.bg-insight-blue {
    background: var(--color-insight-blue);
    color: var(--color-white);
}

.bg-insight-purple {
    background: var(--color-insight-purple);
    color: var(--color-white);
}

.giant-icon-light {
    width: 60px;
    height: 60px;
    stroke-width: 1.5;
}

.audience-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.audience-card p {
    color: var(--color-gray-500);
}

/* =========================================
   QUOTE SECTION
========================================= */
.quote-sec {
    background: var(--gradient-magic);
    color: var(--color-white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.quote-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.quote-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    width: 60px;
    height: 60px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 24px;
}

.quote-content blockquote {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* =========================================
   CONTACT FORM SECTION
========================================= */
.contact-sec {
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    align-items: center;
}

.info-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    font-weight: 500;
}

.info-item i {
    color: var(--color-insight-purple);
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-100);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-gray-800);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: all var(--transition-fast);
    background: var(--color-gray-50);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-insight-blue);
    box-shadow: 0 0 0 3px rgba(47, 183, 200, 0.2);
    background: var(--color-white);
}

.select-wrapper {
    position: relative;
}

select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-gray-500);
    width: 20px;
    height: 20px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 18px;
}

/* =========================================
   FOOTER
========================================= */
.footer {
    background: var(--color-gray-900);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.brand-col p {
    margin-top: 20px;
    font-size: 15px;
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--color-insight-blue);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--color-trust-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.credit-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* =========================================
   RESPONSIVE OVERRIDES EXTENSION
========================================= */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .timeline-horizontal {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
    }

    .timeline-line {
        left: 45px;
        top: 0;
        bottom: 0;
        width: 4px;
        height: auto;
    }

    .timeline-step {
        width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
        margin-bottom: 30px;
    }

    .timeline-step h4 {
        margin-bottom: 0;
    }

    .timeline-step p {
        margin-bottom: 0;
    }

    .timeline-step .step-dot {
        margin: 0;
        z-index: 2;
        flex-shrink: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   HERO BADGE
========================================= */
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

/* =========================================
   PROBLEM SECTION
========================================= */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

.problem-intro {
    font-size: 20px;
    margin-bottom: 24px;
    font-weight: 500;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 17px;
    border-bottom: 1px solid var(--color-gray-100);
}

.problem-list li svg {
    width: 18px;
    height: 18px;
    color: var(--color-insight-blue);
    flex-shrink: 0;
}

.problem-bridge {
    font-size: 17px;
    line-height: 1.7;
}

.pain-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--color-gray-50);
    border-radius: 16px;
    margin-bottom: 16px;
    border-left: 4px solid var(--color-insight-purple);
    transition: all var(--transition-fast);
}

.pain-card:hover {
    transform: translateX(5px);
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.pain-card svg {
    width: 28px;
    height: 28px;
    color: var(--color-insight-purple);
    flex-shrink: 0;
}

.pain-card p {
    font-size: 17px;
    margin: 0;
}

.problem-insight {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problem-insight blockquote {
    font-size: 20px;
    line-height: 1.7;
    color: var(--color-gray-800);
    padding: 40px;
    border-radius: 20px;
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-100);
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   LEADER QUOTES
========================================= */
.leader-quote-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    padding: 30px;
    border-radius: 16px;
    transition: all var(--transition-fast);
    text-align: center;
}

.leader-quote-card:hover {
    border-color: var(--color-insight-blue);
    box-shadow: var(--shadow-md);
}

.leader-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), var(--gradient-magic);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.leader-quote-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-trust-blue);
}

.role-tag {
    font-size: 13px;
    font-weight: 400;
    color: var(--color-insight-blue);
    margin-left: 8px;
}

.leader-quote-card p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
}

/* =========================================
   PHILOSOPHY CONTENT
========================================= */
.philosophy-lead {
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--color-gray-800);
}

/* =========================================
   STATS / BENEFITS SECTION
========================================= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-100);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all var(--transition-fast);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 32px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-magic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-gray-800);
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================
   IMPACT GRID (inside Quote Section)
========================================= */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.impact-item {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 16px;
    color: var(--color-white);
    backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   PROGRAM INFO BOX
========================================= */
.program-info-box {
    background: var(--color-gray-50);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--color-gray-100);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.program-info-box .info-item {
    font-size: 16px;
}

/* =========================================
   PRICING CARD & CONTACT INFO
   ========================================= */
.pricing-card {
    background: transparent;
    padding: clamp(16px, 3vw, 24px);
    border-radius: 0;
    box-shadow: none;
    border: none;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: none;
    box-shadow: none;
}

.pricing-card::before {
    display: none;
}

.price-header {
    margin-bottom: 24px;
}

.price-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.price-main-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-main {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 54px);
    font-weight: 800;
    color: var(--color-trust-blue);
    line-height: 1;
    letter-spacing: -1px;
}

.price-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-insight-blue);
}

.early-bird-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(47, 183, 200, 0.05);
    padding: 16px;
    border-radius: 12px;
    border: 1px dashed var(--color-insight-blue);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(47, 183, 200, 0); }
    50% { box-shadow: 0 0 20px rgba(47, 183, 200, 0.15); }
}

.eb-badge {
    background: var(--gradient-magic);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: var(--shadow-glow);
}

.eb-deadline {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-gray-900);
}

.pricing-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 16px 0;
}

.program-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.detail-item i {
    color: var(--color-insight-blue);
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.detail-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 32px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-magic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-gray-800);
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================
   IMPACT GRID (inside Quote Section)
========================================= */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.impact-item {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 16px;
    color: var(--color-white);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.impact-check {
    width: 24px;
    height: 24px;
    color: var(--color-insight-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   PROGRAM INFO BOX
========================================= */
.program-info-box {
    background: var(--color-gray-50);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--color-gray-100);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.program-info-box .info-item {
    font-size: 16px;
}

/* =========================================
   PRICING CARD & CONTACT INFO
   ========================================= */
.pricing-card {
    background: var(--color-white);
    padding: clamp(24px, 5vw, 40px);
    border-radius: 24px;
    box-shadow: var(--shadow-lg), 0 0 50px rgba(47, 183, 200, 0.2);
    border: 1px solid var(--color-gray-100);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), 0 10px 60px rgba(47, 183, 200, 0.25);
    border-color: var(--color-insight-blue);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-magic);
}

/* Hero Section Specific Overrides for Pricing Block */
.hero-pricing-block .pricing-card {
    background: transparent;
    padding: clamp(16px, 3vw, 24px);
    border-radius: 0;
    box-shadow: none;
    border: none;
    margin-bottom: 15px;
}

.hero-pricing-block .pricing-card:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.hero-pricing-block .pricing-card::before {
    display: none;
}

.price-header {
    margin-bottom: 24px;
}

.price-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.price-main-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-main {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 54px);
    font-weight: 800;
    color: var(--color-trust-blue);
    line-height: 1;
    letter-spacing: -1px;
}

.price-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-insight-blue);
}

.early-bird-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(47, 183, 200, 0.05);
    padding: 16px;
    border-radius: 12px;
    border: 1px dashed var(--color-insight-blue);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(47, 183, 200, 0); }
    50% { box-shadow: 0 0 20px rgba(47, 183, 200, 0.15); }
}

.eb-badge {
    background: var(--gradient-magic);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: var(--shadow-glow);
}

.eb-deadline {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-gray-900);
}

.pricing-divider {
    height: 1px;
    background: var(--color-gray-100);
    margin: 8px 0; /* Reduced from 16px */
}

.hero-pricing-block .pricing-divider {
    background: rgba(255, 255, 255, 0.2);
    margin: 8px 0;
}

.program-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-pricing-block .program-details {
    gap: 10px;
    align-items: center;
}

/* Side-by-side detail items row */
.details-row {
    display: flex !important;
    flex-direction: row !important; /* Force horizontal */
    flex-wrap: nowrap !important;
    justify-content: center; /* Move whole group to the center */
    align-items: center; /* Center icons with each other */
    gap: 50px; /* More space between the two blocks */
    width: 100%;
}

@media (max-width: 768px) {
    .details-row {
        flex-direction: column !important;
        gap: 20px;
    }
}

.detail-item {
    display: flex;
    align-items: center; /* Parallel icons */
    gap: 16px;
    text-align: left; /* Left-align inner text */
}

.detail-item i {
    color: var(--color-insight-blue);
    width: 20px;
    height: 20px;
    margin-top: 0;
    align-self: center; /* Center icons vertically with text */
}

.detail-label {
    display: block;
    font-size: 13px;
    color: var(--color-gray-500);
    font-weight: 500;
}

.hero-pricing-block .detail-label {
    color: rgba(255, 255, 255, 0.7);
}

.detail-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-gray-900);
}

.hero-pricing-block .detail-value {
    color: rgba(255, 255, 255, 0.95);
}

/* FORM HEADER STYLES */
.form-header {
    margin-bottom: 30px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 12px;
    line-height: 1.3;
}

.form-subtitle {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 10px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-gray-800);
}

.method-item i {
    color: var(--color-insight-purple);
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .price-main {
        font-size: 36px;
    }
    
    .early-bird-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
/* =========================================
   ORGANIZERS SECTION
   ========================================= */
.organizers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.partner-card {
    background: var(--color-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    border: 1px solid var(--color-gray-100);
    display: flex;
    flex-direction: column;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-insight-blue);
}

.partner-logo-wrapper {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-start;
    height: 60px;
    align-items: center;
}

.partner-logo {
    max-height: 100%;
    max-width: 180px;
    object-fit: contain;
}

.partner-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--color-trust-blue);
}

.partner-mission, .partner-principle {
    font-style: italic;
    color: var(--color-insight-blue);
    margin-bottom: 20px;
    font-weight: 600;
    font-family: var(--font-heading);
}

.partner-features {
    list-style: none;
    margin-bottom: 25px;
}

.partner-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
}

.partner-features i {
    color: var(--color-insight-blue);
    width: 18px;
    height: 18px;
}

.partner-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--color-gray-600);
}

.partner-info-box {
    background: var(--color-gray-50);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.partner-info-box .info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 14px;
}

.partner-info-box .info-item:last-child {
    margin-bottom: 0;
}

.partner-info-box i {
    color: var(--color-insight-purple);
    width: 16px;
    height: 16px;
    margin-top: 3px;
}

.partner-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--color-gray-100);
}

.partner-link {
    font-weight: 600;
    color: var(--color-insight-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.partner-link:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .organizers-grid {
        grid-template-columns: 1fr;
    }
}

/* Partnership Highlights Visuals */
.partnership-highlights {
    margin-top: 60px;
    text-align: center;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.partnership-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium);
    border: 1px solid var(--color-gray-100);
    aspect-ratio: 4/3;
}

.partnership-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
}

.partnership-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .partnership-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Video Background Styles */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-main-img {
    z-index: 0;
}

/* =========================================
   EXPERTS SECTION
   ========================================= */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.expert-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    border: 1px solid var(--color-gray-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-insight-blue);
}

.expert-image-wrapper {
    width: 220px;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 4px solid var(--color-gray-50);
}

.expert-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-label {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-insight-blue);
    margin-bottom: 12px;
    letter-spacing: 1px;
    background: rgba(47, 183, 200, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
}

.expert-info h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--color-trust-blue);
}

.expert-title {
    font-weight: 600;
    color: var(--color-gray-600);
    margin-bottom: 15px;
    font-size: 18px;
}

.expert-bio {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-500);
}

/* =========================================
   COMMUNITY GALLERY
   ========================================= */
.community-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

@media (max-width: 992px) {
    .experts-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .community-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .community-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}


/* =========================================
   CLEAN EXPERT BRANDING & CREDENTIALS
   ========================================= */
.expert-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 30px 40px; /* Space for logo at top */
    position: relative;
    text-align: center;
}

.expert-org-logo {
    height: 75px; /* Large and prominent */
    width: auto;
    object-fit: contain;
    margin-bottom: 25px;
    opacity: 1;
    display: block;
    position: static !important; /* Force out of absolute positioning */
}

.expert-image-wrapper {
    width: 220px;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 4px solid var(--color-gray-50);
}

.icf-badge {
    height: 50px;
    width: auto;
    vertical-align: middle;
    margin-left: 12px;
    display: inline-block;
}

.expert-info h3 {
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
    color: var(--color-trust-blue);
}

/* =========================================
   ACCREDITATION & PRICING UI (Hero Block)
   ========================================= */
.pricing-accreditation {
    margin-bottom: 8px;
}

.accred-title {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}

.accred-logos-small {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.accred-logos-small img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.pricing-card:hover .accred-logos-small img {
    opacity: 1;
}

.accred-names {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    margin-bottom: 15px;
}

.program-framework-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Screenshot-based pricing UI */
.screenshot-pricing-ui {
    padding: 5px 0;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.pricing-label-top {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pricing-amount-main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.pricing-amount-main .amount {
    font-size: clamp(50px, 8vw, 90px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.pricing-amount-main .currency {
    font-size: 28px;
    font-weight: 700;
    color: #4DE8FB;
    margin-top: 12px;
    line-height: 1;
}

.promo-dotted-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    border: 2px dashed #4DE8FB;
    padding: 16px 24px;
    border-radius: 20px;
    background: rgba(77, 232, 251, 0.08);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.text-dark-blue {
    color: rgba(255, 255, 255, 0.95) !important;
}

.early-bird-gradient-badge {
    background: linear-gradient(135deg, #2FB7C8 0%, #7C3AED 100%);
    color: #ffffff;
    padding: 14px 32px;
    font-weight: 800;
    font-size: 26px;
    white-space: nowrap;
    border-radius: 50px;
}

.promo-deadline-text {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
}

/* Accreditation Logos Container */
.accred-logos-small {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px; /* Slimmer padding */
    border-radius: 50px;
    margin: 12px auto; /* Reduced from 20px */
    width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accred-logos-small img {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.9); /* Subtle professional look */
}

/* Mini Gallery Grid */
.mini-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mini-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
}

.mini-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mini-gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .mini-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .mini-gallery {
        grid-template-columns: 1fr;
    }
}

/* Logo Group in Navbar */
.logo-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
}

.partner-logos {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-partner-logo {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.logo-divider {
    height: 30px;
}

@media (max-width: 576px) {
    .nav-partner-logo {
        height: 22px;
    }

    .logo-group {
        gap: 10px;
    }

    .partner-logos {
        gap: 8px;
    }
}

/* =========================================
   MOBILE OVERFLOW FIXES
   ========================================= */
@media (max-width: 768px) {
    /* Hero pricing block - prevent overflow */
    .hero-pricing-block {
        padding: 0 5px;
    }

    .hero-pricing-block .pricing-card {
        padding: 12px 8px;
    }

    .pricing-amount-main .amount {
        font-size: clamp(36px, 10vw, 50px);
    }

    .pricing-amount-main .currency {
        font-size: 20px;
        margin-top: 8px;
    }

    .promo-dotted-box {
        flex-direction: column;
        gap: 12px;
        padding: 12px 16px;
        max-width: 100%;
    }

    .early-bird-gradient-badge {
        font-size: 22px;
        padding: 10px 28px;
    }

    .promo-deadline-text {
        font-size: 14px;
        padding: 6px 12px;
    }

    .accred-title {
        font-size: 14px;
    }

    .accred-names {
        font-size: 12px;
    }

    .program-framework-badge {
        font-size: 14px;
        padding: 8px 16px;
    }

    .pricing-label-top {
        font-size: 14px;
    }

    .accred-logos-small {
        gap: 15px;
        padding: 8px 15px;
    }

    .accred-logos-small img {
        height: 28px;
    }

    /* Problem section image - prevent overflow */
    .problem-img-resized {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .problem-visual {
        padding: 0 10px;
    }

    /* Contact section - prevent pricing & form overflow */
    .contact-grid {
        padding: 0 5px;
    }

    .contact-info {
        overflow: hidden;
    }

    .pricing-card {
        padding: 16px 12px !important;
    }

    .contact-form-wrapper {
        padding: 20px 15px;
    }

    .price-main {
        font-size: 30px;
    }

    .form-title {
        font-size: 20px;
    }

    .form-subtitle {
        font-size: 14px;
    }

    /* Hero section CTA bottom margin */
    .hero-cta {
        margin-bottom: 60px !important;
    }

    /* Ensure hero content doesn't overflow */
    .hero-content {
        padding: 0 10px;
    }

    .hero-subtext {
        font-size: 15px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .hero-cta .btn-primary {
        white-space: normal;
        height: auto;
        padding: 16px 24px;
        line-height: 1.4;
        text-align: center;
        width: 100%;
        max-width: 360px;
    }
}

/* =========================================
   TESTIMONIALS SECTION
========================================= */
.testimonials-sec {
    background-color: var(--color-gray-50);
    overflow: hidden;
}

.testimonial-slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 30px;
    text-align: center;
}

.testimonial-avatar-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.testimonial-name {
    font-size: 24px;
    color: var(--color-trust-blue);
    margin-bottom: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.testimonial-sub {
    font-size: 15px;
    color: var(--color-insight-purple);
    margin-bottom: 24px;
    font-weight: 600;
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: var(--color-gray-800);
    line-height: 1.8;
    position: relative;
    padding: 0 20px;
}

.testimonial-text::before {
    content: '"';
    font-size: 80px;
    color: rgba(47, 183, 200, 0.15);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: serif;
    z-index: -1;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-arrow {
    background: transparent;
    border: none;
    color: var(--color-gray-500);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all var(--transition-fast);
    opacity: 0.5;
}

.testimonial-arrow:hover {
    opacity: 1;
    color: var(--color-insight-blue);
    background: rgba(47, 183, 200, 0.05);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gray-100);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-dots .dot.active {
    background: var(--gradient-primary);
    width: 24px;
    border-radius: 6px;
    border-color: transparent;
}

@media (max-width: 768px) {
    .testimonial-slide {
        padding: 0 15px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonial-avatar-wrapper {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) { .grid-2 { grid-template-columns: 1fr; } } .outcome-card { background: var(--color-white); padding: 40px; border-radius: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--color-gray-100); height: 100%; transition: all var(--transition-normal); } .outcome-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); } .outcome-list li span { font-size: 16px; line-height: 1.6; color: var(--color-gray-800); }
/* Redesigned Testimonials - Gradient & Glassmorphism */
.gradient-bg-section {
    background: var(--gradient-magic);
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

.gradient-bg-section .section-title,
.gradient-bg-section .section-subtitle,
.gradient-bg-section h3,
.gradient-bg-section p {
    color: var(--color-white) !important;
}

.gradient-bg-section .section-divider {
    background: var(--color-white);
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    transition: all var(--transition-normal);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.testimonials-sec.gradient-bg-section .testimonial-slide {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    
    /* FIX: Ensure slide doesn't overflow container */
    min-width: 0 !important; /* Override the base min-width: 100% */
    width: 100%;
    flex: 0 0 calc(100% - 40px); /* Leave space for "margins" without overflow */
    margin: 0 20px !important;
}

.testimonials-sec.gradient-bg-section .testimonial-name {
    color: var(--color-white) !important;
}

.testimonials-sec.gradient-bg-section .testimonial-sub {
    color: rgba(255, 255, 255, 0.8) !important;
}

.testimonials-sec.gradient-bg-section .testimonial-text {
    color: rgba(255, 255, 255, 0.95) !important;
    font-style: italic;
}

.testimonials-sec.gradient-bg-section .testimonial-dots .dot {
    background: rgba(255, 255, 255, 0.3);
}

.testimonials-sec.gradient-bg-section .testimonial-dots .dot.active {
    background: var(--color-white);
}

.testimonials-sec.gradient-bg-section .testimonial-arrow {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonials-sec.gradient-bg-section .testimonial-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-white);
}

/* Premium Icon Styling */
.testimonial-avatar-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(77, 232, 251, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(77, 232, 251, 0.3), inset 0 0 10px rgba(77, 232, 251, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.testimonial-avatar-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: pulse-ring 3s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.2; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

.testimonial-avatar-icon {
    width: 36px;
    height: 36px;
    color: #4DE8FB;
    filter: drop-shadow(0 0 8px rgba(77, 232, 251, 0.6));
    opacity: 0.9;
}

.testimonial-slide:hover .testimonial-avatar-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    border-color: #4DE8FB;
    box-shadow: 0 0 30px rgba(77, 232, 251, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.3);
}


