/* ===================================================
   PROFESSIONAL CLEAN DESIGN SYSTEM
   White + Yellow/Gold Color Scheme
   Surgical Suturing Workshop - MCh x Dr. Mano Zac Mathews
   =================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary - Gold/Yellow Accent */
    --primary: #E8A000;
    --primary-dark: #C48800;
    --primary-light: #FFB81C;
    --primary-rgb: 232, 160, 0;

    /* Secondary - Deep Navy (Text Only) */
    --text-dark: #0f2035;
    --text-body: #2C3A4B;
    --text-muted: #64748B;
    --text-light: #94A3B8;

    /* Neutrals - Pure White Theme */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --border: #E2E8F0;

    /* Typography */
    --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Cardo', serif;

    /* Spacing */
    --section-padding: clamp(80px, 10vw, 120px);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Shadows - Subtle */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 4px 20px rgba(232, 160, 0, 0.25);

    /* Transitions */
    --transition: 250ms ease;
}

/* ===== BASE RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    line-height: 1.65;
    background: var(--white);
    position: relative;
    overflow-x: hidden;
}

/* Microscopic Clinical Noise Overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    opacity: 0.025;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

/* ===== LAYOUT ===== */
.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 64px;
    }
}

.section {
    padding: var(--section-padding) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.section-alt {
    background: var(--gray-50);
}

/* Background Glowing Orbs - Clinical Asymmetric Parallax */
.parallax-orb {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.parallax-orb.orb-1 {
    width: 900px;
    height: 700px;
    background: radial-gradient(ellipse at center, rgba(232, 160, 0, 0.04) 0%, transparent 70%);
    top: -150px;
    left: -20%;
    filter: blur(100px);
    animation: orbDrift 25s infinite alternate cubic-bezier(0.25, 0.1, 0.25, 1);
}

.parallax-orb.orb-2 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(15, 32, 53, 0.03) 0%, transparent 60%);
    bottom: -300px;
    right: -10%;
    filter: blur(120px);
    animation: orbDrift 20s infinite alternate-reverse cubic-bezier(0.25, 0.1, 0.25, 1);
}

.section::before,
.section-alt::after {
    display: none;
    /* Disable static pseudo orbs in favor of dynamic DOM parallax orbs */
}

@keyframes orbDrift {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(80px, 60px) scale(1.05) rotate(5deg);
    }
}

/* ===== TYPOGRAPHY ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(232, 160, 0, 0.1) 0%, rgba(232, 160, 0, 0.05) 100%);
    border: 1px solid rgba(232, 160, 0, 0.2);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(232, 160, 0, 0.08);
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-primary {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-gold);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Pricing / Session Cards */
.session-cards {
    display: grid;
    gap: 20px;
}

.session-card {
    display: block;
    position: relative;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.session-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(232, 160, 0, 0.15);
    border-color: var(--primary-light);
}

.session-card.active {
    background: rgba(232, 160, 0, 0.05);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(232, 160, 0, 0.12);
}

.session-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.session-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
}

.pricing-option-amount {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-dark);
    white-space: nowrap;
}

.session-card.active .pricing-option-amount {
    color: var(--primary);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

.btn-primary:hover::before {
    left: 200%;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 160, 0, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--text-dark);
    border-color: var(--white);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(15, 32, 53, 0.04);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(15, 32, 53, 0.04);
    padding: 12px 0;
}

/* Surgical Suture Scroll Progress */
.surgical-suture-line {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, var(--primary-light) 100%);
    width: 0%;
    z-index: 1001;
    box-shadow: 0 0 8px rgba(232, 160, 0, 0.4);
    transition: width 0.1s ease-out;
}

.nav-container {
    display: flex;
    align-items: center;
    position: relative;
    height: 60px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 2;
    /* Engage z-index to stay clickable */
}

.logo-img {
    width: 60px;
    /* Slightly larger as per image reference */
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.brand-text-center {
    display: flex;
    align-items: baseline;
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    /* Increased size like the image */
    line-height: 1;
    letter-spacing: -0.02em;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    justify-content: center;
    pointer-events: none;
    /* Let clicks pass through if overlapping functionality needed */
}

.brand-magister {
    font-weight: 700;
    color: var(--primary-light);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 4px;
}

.brand-chirurgiae {
    font-weight: 600;
    color: #0A1628;
}

.btn-nav {
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-nav i {
    font-size: 0.75rem;
    transition: transform var(--transition);
}

.btn-nav:hover i {
    transform: translateX(3px);
}

/* ===== HERO (Centered Clinical Style) ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 24px 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(15, 32, 53, 0.7) 0%, rgba(15, 32, 53, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 160, 0, 0.15);
    border: 1px solid rgba(232, 160, 0, 0.4);
    color: var(--primary-light);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 28px;
    box-shadow: 0 0 20px rgba(232, 160, 0, 0.2);
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary-light) 0%, #FFFFFF 25%, var(--primary) 50%, var(--primary-light) 75%, #FFFFFF 100%);
    background-size: 200% auto;
    color: var(--primary-light);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 5s linear infinite;
}

@keyframes textShimmer {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-light);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    z-index: 2;
}

.scroll-indicator {
    margin-top: 8px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

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

    50% {
        transform: translateY(6px);
    }
}

/* ===== OBJECTIVES GRID - PREMIUM DESIGN ===== */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

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

.objective-card {
    position: relative;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 32px 36px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.objective-card:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 12px 32px rgba(15, 32, 53, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04) !important;
}

/* Corner number */
.card-number {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 5rem;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    transition: all 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.objective-card:hover .card-number {
    color: rgba(232, 160, 0, 0.12);
    transform: scale(1.15) translateY(-5px);
}

/* Icon */
.objective-icon {
    position: relative;
    width: 68px;
    height: 68px;
    background: linear-gradient(145deg, rgba(232, 160, 0, 0.12) 0%, rgba(232, 160, 0, 0.04) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    color: var(--primary);
    margin-bottom: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 4px 12px rgba(232, 160, 0, 0.08);
}

.objective-icon i {
    transition: transform 0.4s ease;
}

.objective-card:hover .objective-icon {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 28px rgba(232, 160, 0, 0.4);
}

.objective-card:hover .objective-icon i {
    transform: scale(1.1);
}

.objective-card h3 {
    position: relative;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    z-index: 1;
}

.objective-card p {
    position: relative;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    z-index: 1;
}

/* Bottom accent line */
.card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.objective-card:hover .card-line {
    transform: scaleX(1);
}

/* ===== COLLABORATION ===== */
.collab-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .collab-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.collab-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.collab-card:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 12px 32px rgba(15, 32, 53, 0.08) !important;
    border-color: var(--primary);
}

.collab-logo {
    margin-bottom: 24px;
}

.partner-logo {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
    margin: 0 auto;
}

.partner-logo.mch-logo {
    max-width: 200px;
    max-height: 200px;
    border-radius: var(--radius-md);
}

.collab-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.collab-card h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.collab-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 20px;
    text-align: justify;
    flex-grow: 1;
}

.collab-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: var(--gray-100);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

.collab-divider {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .collab-divider {
        display: none;
    }
}

/* ===== BENEFITS - PREMIUM DESIGN ===== */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

@media (max-width: 1024px) {
    .benefits-grid .benefit-card {
        width: calc(50% - 12px);
    }
}

@media (max-width: 600px) {
    .benefits-grid .benefit-card {
        width: 100%;
    }
}

.benefit-card {
    width: calc(33.333% - 16px);
    position: relative;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 32px 28px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.benefit-card:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 12px 32px rgba(15, 32, 53, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02) !important;
}

/* Featured/Highlight card */
.benefit-card.highlight {
    background: linear-gradient(145deg, var(--text-dark) 0%, #0f2035 100%);
    border: 2px solid var(--primary);
}

.benefit-card.highlight::before {
    display: none;
}

.benefit-card.highlight::after {
    display: none;
}

.benefit-card.highlight:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 12px 36px rgba(232, 160, 0, 0.45) !important;
}

.benefit-card.highlight .benefit-icon {
    background: linear-gradient(145deg, rgba(232, 160, 0, 0.25) 0%, rgba(232, 160, 0, 0.1) 100%);
    color: var(--primary-light);
    box-shadow: 0 4px 16px rgba(232, 160, 0, 0.2);
}

.benefit-card.highlight:hover .benefit-icon {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(232, 160, 0, 0.5);
}

.benefit-card.highlight h3 {
    color: var(--white);
}

.benefit-card.highlight p {
    color: rgba(255, 255, 255, 0.7);
}

/* Badge */
.highlight-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(232, 160, 0, 0.35);
}

/* Icon */
.benefit-icon {
    position: relative;
    width: 58px;
    height: 58px;
    background: linear-gradient(145deg, rgba(232, 160, 0, 0.12) 0%, rgba(232, 160, 0, 0.04) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(232, 160, 0, 0.06);
}

.benefit-icon i {
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 24px rgba(232, 160, 0, 0.4);
}

.benefit-card:hover .benefit-icon i {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== AUDIENCE - PREMIUM JOURNEY DESIGN ===== */
.audience-section {
    overflow: hidden;
}

.audience-journey {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    padding: 40px 0;
    flex-wrap: wrap;
}

/* Animated Journey Line */
.journey-line {
    position: absolute;
    top: 90px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: linear-gradient(90deg,
            var(--primary) 0%,
            var(--primary-light) 50%,
            var(--primary) 100%);
    border-radius: 3px;
    opacity: 0.3;
    z-index: 0;
}

.journey-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, var(--primary-light), transparent);
    animation: journeyGlow 3s ease-in-out infinite;
    border-radius: 3px;
}

@keyframes journeyGlow {

    0%,
    100% {
        left: -30%;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Journey Arrow */
.journey-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-size: 0.9rem;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(232, 160, 0, 0.2);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {

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

    50% {
        transform: scale(1.1);
    }
}

/* Journey Item */
.journey-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    z-index: 1;
    flex: 1;
    min-width: 200px;
    max-width: 260px;
}

/* Journey Node - The Icon Container */
.journey-node {
    position: relative;
    margin-bottom: 20px;
}

.node-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(232, 160, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: nodePulse 2.5s ease-out infinite;
}

@keyframes nodePulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.node-icon {
    position: relative;
    width: 72px;
    height: 72px;
    background: linear-gradient(145deg, var(--white) 0%, var(--gray-50) 100%);
    border: 3px solid transparent;
    background-image: linear-gradient(var(--white), var(--gray-50)),
        linear-gradient(135deg, var(--primary), var(--primary-light));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(232, 160, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-item:hover .node-icon {
    transform: scale(1.15) rotate(-10deg) !important;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 16px 40px rgba(232, 160, 0, 0.4) !important;
}

/* Featured Item */
.journey-item.featured .node-icon {
    width: 84px;
    height: 84px;
    font-size: 1.8rem;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: 4px solid var(--white);
    box-shadow: 0 12px 32px rgba(232, 160, 0, 0.4),
        0 0 0 4px rgba(232, 160, 0, 0.2);
}

.journey-item.featured .node-pulse {
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(232, 160, 0, 0.25) 0%, transparent 70%);
}

/* Journey Content */
.journey-content {
    position: relative;
}

.journey-stage {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(232, 160, 0, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.journey-item.featured .journey-stage {
    background: var(--primary);
    color: var(--white);
}

.journey-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.journey-item:hover .journey-content h4 {
    color: var(--primary-dark);
}

.journey-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
    max-width: 200px;
}

/* Journey Tags */
.journey-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.journey-tags span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 5px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.journey-tags span i {
    font-size: 0.65rem;
    color: var(--primary);
}

.journey-item:hover .journey-tags span {
    border-color: var(--primary);
    background: rgba(232, 160, 0, 0.05);
}

.journey-item.featured .journey-tags span {
    background: rgba(232, 160, 0, 0.1);
    border-color: var(--primary);
    color: var(--primary-dark);
}

/* Audience CTA */
.audience-cta {
    text-align: center;
    margin-top: 48px;
    padding: 20px 32px;
    background: linear-gradient(135deg, rgba(232, 160, 0, 0.08) 0%, rgba(232, 160, 0, 0.02) 100%);
    border: 1px solid rgba(232, 160, 0, 0.2);
    border-radius: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.audience-cta p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
}

.audience-cta p i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .audience-journey {
        gap: 10px;
    }

    .journey-item {
        min-width: 180px;
        max-width: 220px;
        padding: 15px;
    }

    .journey-arrow {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .journey-line {
        display: none;
    }
}

@media (max-width: 900px) {
    .audience-journey {
        flex-direction: column;
        gap: 20px;
    }

    .journey-arrow {
        transform: rotate(90deg);
    }

    .journey-item {
        max-width: 300px;
        width: 100%;
    }
}

@media (max-width: 500px) {
    .journey-item {
        padding: 15px 10px;
    }

    .node-icon {
        width: 64px;
        height: 64px;
        font-size: 1.4rem;
    }

    .journey-item.featured .node-icon {
        width: 72px;
        height: 72px;
    }

    .journey-content h4 {
        font-size: 1.05rem;
    }

    .audience-cta {
        padding: 16px 20px;
    }

    .audience-cta p {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 8px;
    }
}

/* ===== KITS COMPARISON ===== */
.kits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

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

.kit-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.kit-card:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 12px 32px rgba(15, 32, 53, 0.08) !important;
    border-color: var(--primary);
}

.kit-card.recommended {
    border: 2px solid var(--primary);
}

.recommended-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(232, 160, 0, 0.4);
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 160, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(232, 160, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(232, 160, 0, 0);
    }
}

.kit-header {
    background: var(--gray-50);
    padding: 28px 32px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.kit-card.recommended .kit-header {
    background: var(--text-dark);
    border-bottom: none;
}

.kit-label {
    display: inline-block;
    background: var(--gray-200);
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.kit-card.recommended .kit-label {
    background: rgba(232, 160, 0, 0.2);
    color: var(--primary-light);
}

.kit-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.kit-card.recommended .kit-header h3 {
    color: var(--white);
}

.kit-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.kit-card.recommended .kit-header p {
    color: rgba(255, 255, 255, 0.6);
}

.kit-content {
    padding: 28px 32px;
}

.kit-section {
    margin-bottom: 24px;
}

.kit-section:last-child {
    margin-bottom: 0;
}

.kit-section h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    margin-bottom: 14px;
}

.kit-section h4 i {
    color: var(--primary);
}

.kit-includes {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.kit-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    color: var(--text-body);
    font-size: 0.9rem;
}

.kit-list li i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 0.8rem;
}

.technique-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.technique-pills span {
    background: var(--gray-100);
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    transition: var(--transition);
}

.technique-pills span:hover {
    background: var(--primary);
    color: var(--white);
}

.kit-session {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-50);
    padding: 14px 16px;
    border-radius: var(--radius-md);
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.kit-session i {
    color: var(--primary);
}

/* ===== WORKSHOP FORMAT - PREMIUM ZIGZAG TIMELINE ===== */
.format-section {
    overflow: hidden;
}

/* Premium Stats Orbs */
.format-orbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.format-orb {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-ring {
    position: absolute;
    inset: 0;
    border: 3px solid var(--gray-200);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.format-orb:hover .orb-ring {
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(232, 160, 0, 0.2);
}

.format-orb.accent .orb-ring {
    border-color: var(--primary);
    background: rgba(232, 160, 0, 0.05);
}

.orb-content {
    text-align: center;
    z-index: 1;
}

.orb-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.orb-number i {
    font-size: 1.75rem;
}

.orb-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 500;
}

.orb-connector {
    color: var(--gray-300);
    font-size: 0.9rem;
}

/* Process Timeline Container */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Central Spine */
.timeline-spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg,
            var(--primary) 0%,
            var(--primary-light) 50%,
            var(--primary) 100%);
    transform: translateX(-50%);
    border-radius: 4px;
    opacity: 0.3;
}

.timeline-spine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    right: -2px;
    height: 120px;
    background: linear-gradient(180deg, transparent, var(--primary-light), var(--white), transparent);
    filter: blur(2px);
    box-shadow: 0 0 20px var(--primary-light);
    animation: spineEnergy 3s linear infinite;
    border-radius: 4px;
}

@keyframes spineEnergy {
    0% {
        top: -120px;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Process Step */
.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step.left {
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
}

.process-step.right {
    justify-content: flex-start;
    padding-left: calc(50% + 40px);
}

/* Step Node - Center Circle */
.step-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    z-index: 2;
    box-shadow: 0 4px 16px rgba(232, 160, 0, 0.2);
    transition: all 0.4s ease;
}

.step-node.featured {
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: 4px solid var(--white);
    box-shadow: 0 8px 24px rgba(232, 160, 0, 0.4);
}

.process-step:hover .step-node {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 8px 24px rgba(232, 160, 0, 0.4);
}

/* Step Connector Line */
.step-connector {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    flex-shrink: 0;
}

.process-step.left .step-connector {
    order: 2;
}

/* Step Card */
.step-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    max-width: 340px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 12px 32px rgba(232, 160, 0, 0.3) !important;
    border-color: var(--primary);
}

.step-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(145deg, var(--white) 0%, rgba(232, 160, 0, 0.03) 100%);
}

/* Featured Ribbon */
.featured-ribbon {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(232, 160, 0, 0.3);
}

/* Step Icon */
.step-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, rgba(232, 160, 0, 0.1), rgba(232, 160, 0, 0.02));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 16px;
    transition: all 0.4s ease;
}

.step-card:hover .step-icon {
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(232, 160, 0, 0.3);
}

/* Step Badge */
.step-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(232, 160, 0, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.step-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 12px;
}

/* Step Duration */
.step-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-light);
    background: var(--gray-50);
    padding: 6px 12px;
    border-radius: 20px;
}

.step-duration i {
    color: var(--primary);
}

/* Format Footer */
.format-footer {
    margin-top: 56px;
}

.format-footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 32px;
    background: linear-gradient(135deg, rgba(232, 160, 0, 0.08) 0%, rgba(232, 160, 0, 0.02) 100%);
    border: 1px solid rgba(232, 160, 0, 0.2);
    border-radius: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.format-footer-content i {
    font-size: 1.4rem;
    color: var(--primary);
}

.format-footer-content span {
    font-size: 0.95rem;
    color: var(--text-body);
}

.format-footer-content strong {
    color: var(--primary-dark);
}

/* Responsive Design */
@media (max-width: 900px) {
    .process-timeline {
        padding-left: 60px;
    }

    .timeline-spine {
        left: 30px;
    }

    .process-step.left,
    .process-step.right {
        justify-content: flex-start;
        padding-left: 80px;
        padding-right: 0;
    }

    .step-node {
        left: 30px;
    }

    .process-step.left .step-connector,
    .process-step.right .step-connector {
        display: none;
    }

    .step-card {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .format-orbs {
        gap: 16px;
    }

    .format-orb {
        width: 100px;
        height: 100px;
    }

    .orb-number {
        font-size: 1.5rem;
    }

    .orb-label {
        font-size: 0.7rem;
    }

    .process-timeline {
        padding-left: 50px;
    }

    .timeline-spine {
        left: 20px;
    }

    .step-node {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .process-step.left,
    .process-step.right {
        padding-left: 60px;
    }

    .step-card {
        padding: 20px;
    }

    .format-footer-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

/* ===== REGISTRATION ===== */
.register-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 56px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .register-box {
        padding: 36px 24px;
    }
}

.register-header {
    text-align: center;
    margin-bottom: 40px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

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

.price-card {
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-10px) !important;
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(232, 160, 0, 0.3) !important;
}

.price-flag {
    margin-bottom: 12px;
}

.price-flag img {
    width: 36px;
    height: auto;
    border-radius: 4px;
    margin: 0 auto;
}

.price-flag i {
    font-size: 1.75rem;
    color: var(--text-light);
}

.price-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--text-body);
}

.price-features li i {
    color: var(--primary);
    font-size: 0.8rem;
}

.price-features li.muted {
    color: var(--text-light);
}

.price-features li.muted i {
    color: var(--text-light);
}

.price-note {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 12px;
}

.steps-box {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 28px;
}

.steps-box h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.steps-box h4 i {
    color: var(--primary);
}

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

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

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.step-num {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.step-item p {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.45;
}

.register-note {
    text-align: center;
    margin-bottom: 28px;
}

.register-note p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.register-note i {
    color: var(--primary);
}

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

.cta-subtext {
    margin-top: 10px;
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 64px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.footer-logo span {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-contact h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary);
}

.contact-link i {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    gap: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        padding: 90px 20px 50px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .logo-text {
        display: none;
    }

    .brand-text-center {
        font-size: 1.4rem;
    }

    .logo-img {
        width: 48px;
        height: 48px;
    }

    .nav-container {
        height: 52px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brand-text-center {
        font-size: 1.1rem;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .nav-container {
        height: 46px;
    }

    .navbar {
        padding: 12px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .section-subtitle {
        font-size: 0.95rem;
    }
}


/* ===== PREMIUM SUCCESS MODAL & TICKET ===== */
.premium-modal {
    max-width: 500px;
    padding: 0;
    overflow: hidden;
    text-align: center;
}

.premium-modal .modal-icon {
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
    margin: 32px auto 16px;
    background: var(--primary);
    color: var(--white);
    border: 4px solid #FFF8E1;
    box-shadow: 0 4px 12px rgba(232, 160, 0, 0.3);
}

.premium-modal .modal-title {
    margin: 0 24px 8px;
    font-size: 1.5rem;
}

.premium-modal .modal-message {
    margin: 0 24px 24px;
    color: var(--text-muted);
}

.premium-modal .modal-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 20px 24px 0;
}

/* Digital Ticket Visual */
.ticket-visual {
    margin: 0 auto;
    width: 100%;
    max-width: 360px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border);
    position: relative;
    text-align: left;
}

.ticket-header-strip {
    height: 12px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
}

.ticket-body {
    padding: 24px;
    background-image: radial-gradient(#F3F4F6 1px, transparent 1px);
    background-size: 20px 20px;
}

.ticket-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px dashed var(--gray-200);
}

.ticket-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.ticket-brand-text {
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 700;
}

.ticket-brand-text span:first-child {
    color: var(--primary);
}

.ticket-brand-text span:last-child {
    color: var(--text-dark);
}

.ticket-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.ticket-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.t-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

.t-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.t-value.highlight {
    font-family: monospace;
    background: var(--gray-100);
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--primary-dark);
    letter-spacing: 0.05em;
}

.ticket-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 2px dashed var(--gray-200);
}

.ticket-qr {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.ticket-valid {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--white);
    background: var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: var(--gray-50);
    margin-top: 24px;
    border-top: 1px solid var(--border);
}

.download-btn {
    background: var(--primary);
    color: var(--white);
}

.download-btn:hover {
    background: var(--primary-dark);
}

.whatsapp-btn {
    background: #25D366;
    /* WhatsApp Green */
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.modal-close-link {
    display: block;
    width: 100%;
    padding: 12px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
}

.modal-close-link:hover {
    color: var(--text-dark);
}

/* Hide Done button on Premium Modal if present from shared styles */
.premium-modal .modal-btn:not(.download-btn):not(.whatsapp-btn) {
    display: none;
}

/* =========================================
   UPI Payment Card Styles
   ========================================= */
.upi-payment-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    /* Increased padding */
    text-align: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.upi-payment-card h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.upi-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.upi-qr-wrapper {
    background: var(--white);
    padding: 0;
    border-radius: var(--radius-md);
    display: inline-block;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    /* slight boost in pop */
    overflow: hidden;
}

.upi-qr-wrapper img {
    max-width: 450px;
    /* Increased heavily to make the QR very large */
    width: 100%;
    height: auto;
    display: block;
}

.upi-amount-display {
    background: rgba(232, 160, 0, 0.1);
    color: var(--primary-dark);
    padding: 16px 32px;
    /* Increased padding */
    border-radius: var(--radius-full);
    display: flex;
    /* Changed from inline-flex to work with flex column */
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-weight: 700;
    font-size: 1.5rem;
    /* Increased from 1.2rem */
    margin-bottom: 24px;
    width: fit-content;
}

.upi-amount-label {
    font-size: 1.1rem;
    /* Increased from 0.9rem */
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.upi-instructions-premium {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
    width: 100%;
}

.upi-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.upi-step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(232, 160, 0, 0.15) 0%, rgba(232, 160, 0, 0.05) 100%);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(232, 160, 0, 0.1);
}

.upi-step-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.upi-step-text small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
}

.upi-step-divider {
    color: var(--border-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 600px) {
    .upi-instructions-premium {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .upi-step-divider {
        transform: rotate(90deg);
    }
}