        :root {
            --olive-green: #6B8E23;
            --dark-olive: #556B2F;
            --olive-beige: #F5F1E8;
            --lemon-chiffon: #FFFACD;
            --warm-beige: #F5F5DC;
            --cream: #FFF8DC;
            --text-dark: #2C3E50;
            --text-light: #FFFFFF;
            --accent-gold: #DAA520;
            --shadow: 0 4px 20px rgba(0,0,0,0.1);
            --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
            --gradient: linear-gradient(135deg, var(--olive-green), var(--dark-olive));
        }

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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--olive-beige) 0%, var(--lemon-chiffon) 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23A3B18A" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            animation: fadeInUp 1s ease-out;
        }

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

        .hero h1 {
            font-family: 'Poppins', sans-serif;
            font-weight: 900;
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--text-dark);
            line-height: 1.1;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.3s forwards;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, var(--olive-green), var(--dark-olive));
            color: var(--text-light);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.6s forwards, pulse 2s 1s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        /* Target Audience Tiles */
        .audience-section {
            padding: 80px 0;
            background: var(--text-light);
        }

        .section-title {
            text-align: center;
            font-family: 'Poppins', sans-serif;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 60px;
            color: var(--text-dark);
        }

        .audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        /* Target Audience Styles */
        .audience-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px;
            font-size: 18px;
            color: var(--text-dark);
            line-height: 1.7;
        }

        .audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .audience-tile {
            background: var(--warm-beige);
            padding: 40px 30px;
            border-radius: 16px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .audience-tile:nth-child(even) {
            background: var(--cream);
        }

        .audience-tile.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .audience-tile:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .audience-tile i {
            font-size: 48px;
            color: var(--lemon-chiffon);
            background: var(--olive-green);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.2s ease;
        }

        .audience-tile:hover i {
            transform: scale(1.1);
        }

        .audience-tile h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #2C3E50;
        }

        .audience-tile p {
            font-size: 14px;
            opacity: 0.8;
            line-height: 1.6;
        }

        /* Why Section */
        .why-section {
            padding: 80px 0;
            background: var(--text-light);
        }

        .why-intro {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 60px;
        }

        .why-tagline {
            font-family: 'Inter', sans-serif;
            font-size: 20px;
            font-weight: 500;
            line-height: 1.7;
            color: #2D2D2D;
        }

        .highlight-text {
            color: var(--olive-green);
            font-weight: 600;
            position: relative;
        }

        .typewriter {
            overflow: hidden;
            border-right: 2px solid var(--olive-green);
            white-space: nowrap;
            animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
        }

        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent; }
            50% { border-color: var(--olive-green); }
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .why-item {
            text-align: center;
            padding: 40px 30px;
            background: var(--warm-beige);
            border-radius: 16px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .why-item.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .why-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .why-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--olive-green), var(--dark-olive));
            color: var(--text-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        .why-item h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #2C3E50;
        }

        .why-item p {
            font-size: 16px;
            line-height: 1.6;
            opacity: 0.9;
        }

        /* Impact Section */
        .impact-section {
            padding: 80px 0;
            background: #333;
            color: var(--text-light);
        }

        .impact-section .section-title {
            color: var(--text-light);
        }

        .impact-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            font-size: 18px;
            line-height: 1.7;
        }

        .impact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .impact-card {
            text-align: center;
            padding: 40px 30px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .impact-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .impact-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }

        .impact-number {
            font-family: 'Poppins', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: var(--lemon-chiffon);
            line-height: 1;
            margin-bottom: 10px;
            display: inline-block;
        }

        .impact-percent {
            font-family: 'Poppins', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: var(--lemon-chiffon);
            display: inline-block;
            margin-left: 5px;
        }

        .impact-label {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-light);
        }

        .impact-card p {
            font-size: 14px;
            opacity: 0.8;
            line-height: 1.6;
        }

        .impact-footer {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
            font-size: 18px;
            font-style: italic;
            opacity: 0.9;
            border-top: 2px solid var(--lemon-chiffon);
            padding-top: 30px;
        }

        /* Session Insights Carousel */
        .carousel-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--olive-beige) 0%, var(--lemon-chiffon) 100%);
        }

        .carousel-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: var(--shadow);
        }

        .carousel-slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-slide {
            min-width: 100%;
            background: var(--text-light);
            padding: 60px 40px;
            text-align: center;
        }

        .carousel-slide h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--olive-green);
        }

        .carousel-slide p {
            font-size: 16px;
            line-height: 1.8;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(163, 177, 138, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-dot.active {
            background: var(--olive-green);
            transform: scale(1.2);
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--olive-green);
            color: var(--text-light);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.3s ease;
            opacity: 60%;
        }

        .carousel-arrow:hover {
            background: var(--dark-olive);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-arrow.prev {
            left: 20px;
        }

        .carousel-arrow.next {
            right: 20px;
        }

        /* Schedule & Format */
        .schedule-section {
            padding: 80px 0;
            background: var(--text-light);
        }

        .schedule-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .schedule-visual {
            position: relative;
            background: linear-gradient(45deg, var(--olive-green), var(--dark-olive));
            border-radius: 16px;
            padding: 40px;
            color: var(--text-light);
            overflow: hidden;
        }

        .schedule-visual::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255,255,255,0.1) 10px,
                rgba(255,255,255,0.1) 20px
            );
            animation: slide 3s linear infinite;
        }

        @keyframes slide {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .schedule-details h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 30px;
        }

        .schedule-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px;
            background: var(--warm-beige);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .schedule-item:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow);
        }

        .schedule-item i {
            color: var(--olive-green);
            margin-right: 15px;
            font-size: 20px;
        }

        /* Mentor Spotlight */
        .mentor-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--olive-beige) 0%, var(--lemon-chiffon) 100%);
        }

        .mentor-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .mentor-card {
            position: relative;
            text-align: center;
            background: var(--text-light);
            border-radius: 16px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .mentor-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .mentor-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 20px;
            position: relative;
            overflow: hidden;
            border: 4px solid var(--olive-green);
            box-shadow: 0 8px 25px rgba(163, 177, 138, 0.3);
            background: linear-gradient(135deg, var(--olive-green), var(--dark-olive));
        }

        .mentor-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: all 0.4s ease;
            filter: brightness(1.1) contrast(1.05) saturate(1.1);
        }

        .mentor-avatar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(163, 177, 138, 0.15) 0%, 
                rgba(88, 129, 87, 0.1) 50%,
                rgba(163, 177, 138, 0.05) 100%);
            z-index: 1;
            transition: all 0.3s ease;
        }

        .mentor-card:hover .mentor-avatar::before {
            background: linear-gradient(135deg, 
                rgba(163, 177, 138, 0.25) 0%, 
                rgba(88, 129, 87, 0.2) 50%,
                rgba(163, 177, 138, 0.15) 100%);
        }

        .mentor-card:hover .mentor-avatar img {
            transform: scale(1.08);
            filter: brightness(1.15) contrast(1.1) saturate(1.2);
        }

        .mentor-overlay {
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            background: linear-gradient(135deg, 
                rgba(163, 177, 138, 0.95) 0%, 
                rgba(88, 129, 87, 0.92) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--text-light);
            font-weight: 600;
            border-radius: 50%;
            backdrop-filter: blur(2px);
            font-size: 14px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .mentor-card:hover .mentor-overlay {
            opacity: 1;
            transform: scale(1.02);
        }

        .mentor-overlay::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.6s ease;
        }

        .mentor-card:hover .mentor-overlay::before {
            width: 100px;
            height: 100px;
        }

        .mentor-name {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark-olive);
            transition: all 0.3s ease;
        }

        .mentor-card:hover .mentor-name {
            color: var(--olive-green);
            transform: translateY(-2px);
        }

        .mentor-title {
            font-size: 14px;
            color: var(--olive-green);
            font-weight: 500;
            letter-spacing: 0.3px;
            transition: all 0.3s ease;
        }

        .mentor-card:hover .mentor-title {
            color: var(--dark-olive);
            transform: translateY(-1px);
        }

        /* Enhanced hover effects */
        .mentor-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(163, 177, 138, 0.05) 0%, 
                rgba(88, 129, 87, 0.02) 100%);
            opacity: 0;
            transition: all 0.3s ease;
            border-radius: 16px;
        }

        .mentor-card:hover::before {
            opacity: 1;
        }

        /* Subtle animation */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
        }

        .mentor-avatar {
            animation: float 6s ease-in-out infinite;
        }

        .mentor-card:nth-child(2n) .mentor-avatar {
            animation-delay: -2s;
        }

        .mentor-card:nth-child(3n) .mentor-avatar {
            animation-delay: -4s;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .mentor-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
            }
            
            .mentor-card {
                padding: 20px;
            }
            
            .mentor-avatar {
                width: 100px;
                height: 100px;
            }
        }

        /* Seminar Descriptions */
        .seminar-section {
            padding: 80px 0;
            background: var(--text-light);
        }

        .accordion {
            max-width: 900px;
            margin: 0 auto;
        }

        .accordion-item {
            margin-bottom: 20px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        /* Make accordion items visible on large screens */
        @media (min-width: 1024px) {
            .accordion-item {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .accordion-item.reveal {
            opacity: 1;
            transform: translateY(0);
        }

        .accordion-header {
            background: var(--olive-green);
            color: var(--text-light);
            padding: 20px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .accordion-header:hover {
            background: var(--dark-olive);
        }

        .accordion-header h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            font-weight: 600;
            flex: 1;
        }

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

        .accordion-item.active .accordion-icon {
            transform: rotate(180deg);
        }

        .accordion-content {
            background: var(--warm-beige);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, opacity 0.3s ease;
            opacity: 0;
        }

        .accordion-item.active .accordion-content {
            max-height: 500px;
            opacity: 1;
        }

        .accordion-body {
            padding: 30px;
        }

        .seminar-time {
            background: var(--olive-green);
            color: var(--text-light);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }

        .seminar-outcomes {
            margin-top: 20px;
        }

        .seminar-outcomes h5 {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--olive-green);
        }

        .seminar-outcomes ul {
            list-style: none;
            padding-left: 0;
        }

        .seminar-outcomes li {
            padding: 5px 0;
            position: relative;
            padding-left: 20px;
        }

        .seminar-outcomes li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--olive-green);
            font-weight: bold;
        }

        /* Final CTA Strip */
        .final-cta {
            background: linear-gradient(135deg, var(--olive-green), var(--dark-olive));
            padding: 80px 0;
            text-align: center;
            color: var(--text-light);
        }

        .final-cta h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .final-cta p {
            font-size: 16px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .final-cta-button {
            display: inline-block;
            padding: 20px 50px;
            background: var(--text-light);
            color: var(--olive-green);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }

        .final-cta-button:hover {
            background: var(--lemon-chiffon);
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        /* Engagement Buttons */
        .engagement-section {
            padding: 60px 0;
            background: var(--warm-beige);
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .engagement-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .engagement-button {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            color: var(--text-light);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            gap: 10px;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }

        .engagement-button.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .engagement-button .button-text {
            transition: all 0.3s ease;
            z-index: 2;
        }

        .engagement-button .hover-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: all 0.3s ease;
            white-space: nowrap;
            font-size: 12px;
            text-align: center;
            width: 100%;
            padding: 0 10px;
            z-index: 1;
        }

        .engagement-button:hover .button-text,
        .engagement-button.typing .button-text {
            opacity: 0;
        }

        .engagement-button:hover .hover-text,
        .engagement-button.typing .hover-text {
            opacity: 1;
        }

        .engagement-button.whatsapp {
            background: var(--olive-green);
        }

        .engagement-button.whatsapp:hover,
        .engagement-button.whatsapp.typing {
            background: #25D366;
            transform: scale(1.05);
            box-shadow: var(--shadow-hover);
        }

        .engagement-button.channel {
            background: var(--olive-green);
        }

        .engagement-button.channel:hover,
        .engagement-button.channel.typing {
            background: #075E54;
            transform: scale(1.05);
            box-shadow: var(--shadow-hover);
        }

        .engagement-button.youtube {
            background: var(--olive-green);
        }

        .engagement-button.youtube:hover,
        .engagement-button.youtube.typing {
            background: #FF0000;
            transform: scale(1.05);
            box-shadow: var(--shadow-hover);
        }

        .engagement-button.discord {
            background: var(--olive-green);
        }

        .engagement-button.discord:hover,
        .engagement-button.discord.typing {
            background: #5865F2;
            transform: scale(1.05);
            box-shadow: var(--shadow-hover);
        }

        .engagement-button.newsletter {
            background: var(--olive-green);
        }

        .engagement-button.newsletter:hover,
        .engagement-button.newsletter.typing {
            background: #007BFF;
            transform: scale(1.05);
            box-shadow: var(--shadow-hover);
        }

        .engagement-button i {
            font-size: 18px;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .engagement-button:hover i,
        .engagement-button.typing i {
            opacity: 0;
            transform: scale(0.8);
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .engagement-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .engagement-button {
                padding: 15px;
                font-size: 14px;
            }

            .engagement-button .hover-text {
                font-size: 12px;
                padding: 0 10px;
            }

            .section-title {
                font-size: 1.8rem;
            }
        }

        /* Scroll animations */
        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .scroll-animate.animate {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes rollUp {
          0% {
            opacity: 0;
            transform: translateY(60px) scale(0.98);
          }
          60% {
            opacity: 1;
            transform: translateY(-8px) scale(1.01);
          }
          100% {
            opacity: 1;
            transform: translateY(0) scale(1);
          }
        }
        .scroll-animate.roll-up {
          animation: rollUp 0.9s cubic-bezier(0.23, 1, 0.32, 1) both;
        }





        /*Heada na footer ila usifute, acha ujinga huu apa chukua*/
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 200vh;
}

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

/* Kwanza ka Overlay styles */
.hedaoverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hedaoverlay.hedaactive {
    display: block;
    opacity: 1;
}

:root {
    --primary-gradient: linear-gradient(135deg, #fcf4ad 0%, #fff3bf 100%);
    --hover-color: #3498db;
    --text-primary: #2d3436;
    --animation-timing: 0.3s;
}

footer {
    background: var(--primary-gradient);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-size: 200% 100%;
    animation: gradientSlide 3s linear infinite;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.footer-section {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--animation-timing) cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(31, 38, 135, 0.15);
    background: rgba(255, 255, 255, 0.25);
}

.footer-section h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--hover-color);
    transition: width var(--animation-timing) ease;
}

.footer-section:hover h3::after {
    width: 100%;
}

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

.footer-section li {
    margin: 1rem 0;
    transition: all var(--animation-timing) ease;
    position: relative;
}

.footer-section a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--animation-timing) ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 0.5rem 0;
}

.footer-section a::before {
    content: '→';
    opacity: 0;
    margin-right: 0.5rem;
    transform: translateX(-10px);
    transition: all var(--animation-timing) ease;
}

.footer-section a:hover::before {
    opacity: 1;
    transform: translateX(0);
    color: var(--hover-color);
}

.footer-section a:hover {
    color: var(--hover-color);
    transform: translateX(10px);
}


/*❌❌❌❌❌BEWARE OF SOSHOO❌❌❌❌*/


/* Responsive Base Styles */
.pu-social-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.pu-social-container {
    --pu-animation-timing: 0.3s;
    --pu-fb-color: #3b5998;
    --pu-twitter-color: #1da1f2;
    --pu-linkedin-color: #0077b5;
    --pu-discord-color: #7289da;
    --pu-whatsapp-color: #25D366;
    --pu-email-color: #864842;
    --pu-youtube-color: #ea4335;
    --pu-background: #ffffff;
    --pu-text-color: #2e2e2e;
    
    /* Responsive Variables */
    --pu-icon-size-desktop: 50px;
    --pu-icon-size-tablet: 40px;
    --pu-icon-size-mobile: 35px;
    --pu-icon-font-size-desktop: 1.5rem;
    --pu-icon-font-size-mobile: 1.2rem;
}

.pu-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 1rem;
}

.pu-social-links a {
    width: var(--pu-icon-size-desktop);
    height: var(--pu-icon-size-desktop);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pu-background);
    color: var(--pu-text-color);
    font-size: var(--pu-icon-font-size-desktop);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--pu-animation-timing) cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    text-decoration: none !important;
    border-bottom: none !important;
}

.pu-social-links a::after {
    content: attr(data-profile);
    position: absolute;
    bottom: -35px;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--pu-animation-timing) ease;
    font-family: Arial, sans-serif;
    white-space: nowrap;
    pointer-events: none;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
    /* background: rgba(0,0,0,0.7); */
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 10;
}

/* Hover Effects */
.pu-social-links a:hover::after {
    opacity: 1;
    transform: translateY(0);
    animation: pu-shimmer 2s infinite;
}

@keyframes pu-shimmer {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
    100% { filter: brightness(1); }
}

.pu-social-links a:hover {
    transform: translateY(-10px) scale(1.2);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.pu-social-links a i {
    transition: transform var(--pu-animation-timing) ease;
    position: relative;
    z-index: 1;
}

.pu-social-links a:hover i {
    transform: scale(1.2);
}

.pu-social-links.pu-has-hovered a:not(:hover) {
    opacity: 0.5;
    transform: scale(0.95);
    color: #837d4a;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .pu-social-links {
        gap: 0.75rem;
    }

    .pu-social-links a {
        width: var(--pu-icon-size-tablet);
        height: var(--pu-icon-size-tablet);
        font-size: 1.3rem;
    }

    .pu-social-links a::after {
        font-size: 0.7rem;
        bottom: -30px;
        padding: 2px 6px;
    }
}

@media screen and (max-width: 480px) {
    .pu-social-links {
        gap: 0.5rem;
    }

    .pu-social-links a {
        width: var(--pu-icon-size-mobile);
        height: var(--pu-icon-size-mobile);
        font-size: var(--pu-icon-font-size-mobile);
    }

    .pu-social-links a::after {
        font-size: 0.6rem;
        bottom: -25px;
        padding: 2px 5px;
    }

    /* On very small screens, adjust hover behavior */
    .pu-social-links a:hover {
        transform: translateY(-5px) scale(1.1);
    }
}

/* Colored Icons */
.pu-social-links a:hover .fa-facebook, 
.pu-social-links a:hover[data-profile*="facebook"]::after { 
    color: var(--pu-fb-color); 
}

.pu-social-links a:hover .fa-twitter,
.pu-social-links a:hover[data-profile*="twitter"]::after { 
    color: var(--pu-twitter-color); 
}

.pu-social-links a:hover .fa-instagram,
.pu-social-links a:hover[data-profile*="instagram"]::after { 
    background: -webkit-linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.pu-social-links a:hover .fa-linkedin,
.pu-social-links a:hover[data-profile*="linkedin"]::after { 
    color: var(--pu-linkedin-color); 
}

.pu-social-links a:hover .fa-discord,
.pu-social-links a:hover[data-profile*="discord"]::after { 
    color: var(--pu-discord-color); 
}

.pu-social-links a:hover .fa-whatsapp,
.pu-social-links a:hover[data-profile*="whatsapp"]::after { 
    color: var(--pu-whatsapp-color); 
}

.pu-social-links a:hover .fa-envelope,
.pu-social-links a:hover[data-profile*="gmail"]::after { 
    color: var(--pu-email-color); 
}

.pu-social-links a:hover .fa-youtube,
.pu-social-links a:hover[data-profile*="youtube"]::after { 
    color: var(--pu-youtube-color); 
}


.copyright {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    border-radius: 15px;
    animation: pulse 15s infinite;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 200vh;
}

.hedaheader {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 15px;
    position: fixed;
    width: calc(100% - 30px);
    top: 12px;
    left:15px;
    right: 20px;
    z-index: 1000;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0.2, 0.2, 0.2, 0.4);
    font-family: 'Ubuntu';
}

.hedaheader.scrolled {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: rgba(254, 250, 223, 0.5);
}

.hedaheader.scrolled-down {
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width:100%;
}

.hedaheader.scrolled-up {
    top: 10px;
    left: 10px;
    right: 15px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.544);
}

.hedanav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hedabrand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hedalogo-text {
    font-size: 1.5rem;
    font-weight: 650;
    background: linear-gradient(45deg, #303030, #7c7c7c);
    -webkit-background-clip: text;
    color: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.hedadonate-button {
    background-color: #fff3bf;
    color: #1f2937;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.528);
}

.hedadonate-button:hover {
    transform: translateY(-2px);
    transform: scale(1.1);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.622);
}

.hedanav-list {
    display: flex;
    list-style-type: none;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    margin: 0;
    padding: 0;
    z-index: 1000;
}

.hedanav-list li {
    position: relative;
}

.hedanav-list a {
    color: #1f2937;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    display: block;
    white-space: nowrap;
}

.hedanav-list a:hover {
    color: #4f46e5;
}

.hedahas-submenu {
    position: relative;
}

.hedahas-submenu > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hedahas-submenu > a::after {
    content: '▾';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.hedahas-submenu:hover > a::after {
    transform: rotate(180deg);
}

.hedasubmenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 250px;
    list-style-type: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    padding: 8px;
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.hedahas-submenu:hover .hedasubmenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hedasubmenu li {
    margin: 0;
    padding: 0;
}

.hedasubmenu a {

    padding: 12px 16px;
    display: block;
    color: #374151;
    transition: all 0.3s ease;
    border-radius: 8px;
    white-space: nowrap;
}

.hedasubmenu a:hover {
    background-color: #f7efa8;
    color: #4f46e5;
    padding-left: 20px;
}

.hedahamburger {
    margin-left: 20px;
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    gap: 6px;
}

.hedahamburger span {
    width: 28px;
    height: 2px;
    background-color: #1f2937;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
}

@media (max-width: 1200px) {
    .hedanav-list {
        gap: 1rem;
    }
    .hedanav-list a {
        padding: 8px 12px;
        font-size: 0.95rem;
        white-space: nowrap;
    }
}

@media (max-width: 1024px) {
    .hedanav-list a {
        padding: 8px 8px;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .hedanav {
        justify-content: space-between;
    }
    .hedabrand {
        margin-right: 0;
    }
    .hedahamburger {
        display: flex;
    }

    .hedahamburger.hedaactive span:nth-child(1) {
        transform: rotate(45deg) translate(1px, -3px);
    }

    .hedahamburger.hedaactive span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .hedahamburger.hedaactive span:nth-child(3) {
        transform: rotate(-45deg) translate(1px, 3px);
    }

    .hedanav-list {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 2rem;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0.5rem;
        border-radius: 15px;
        overflow-y: scroll;
    }

    .hedanav-list.active {
        right: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .hedanav-list.hedaactive {
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .hedanav-list li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }

    .hedanav-list.hedaactive li {
        opacity: 1;
        transform: translateX(0);
        transition-delay: calc(0.1s * var(--i));
    }

    .hedanav-list a {
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .hedanav-list a:hover {
        background-color: #f4eca6;
    }

    .hedasubmenu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: static !important;
        background-color: #e6e6e6;
        box-shadow: none;
        padding-left: 20px;
        padding: 0.5rem;
        margin: 0.5rem 0;
        transform: none;
    }

    .hedahas-submenu.hedaactive .hedasubmenu {
        display: block;
        animation: slideDown 0.5s ease forwards;
    }

    @keyframes slideDown {
        0% {
            opacity: 0;
            transform: translateY(-10px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hedahas-submenu > a::after {
        float: right;
        transform: rotate(-90deg);
    }

    .hedahas-submenu.hedaactive > a::after {
        transform: rotate(0);
    }

    .hedadonate-button {
        align-items: center;
        width: 100%;
        height: 50px;
        margin-top: 1rem;
        text-align: center;
    }

    .hedahamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hedahamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hedahamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 768px) {
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-section {
        flex: 1 1 300px;
        margin: 0.5rem;
        animation: slideIn var(--animation-timing) ease-out forwards;
        opacity: 0;
    }

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

    .footer-section:nth-child(1) { animation-delay: 0.1s; }
    .footer-section:nth-child(2) { animation-delay: 0.2s; }
    .footer-section:nth-child(3) { animation-delay: 0.3s; }
    .footer-section:nth-child(4) { animation-delay: 0.4s; }
}

@keyframes gradientSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(52, 152, 219, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0); }
}

.footer-content:hover .footer-section:not(:hover) {
    filter: brightness(0.95);
    transform: scale(0.98);
}

.footer-section {
    scrollbar-width: thin;
    scrollbar-color: var(--hover-color) transparent;
}

.footer-section::-webkit-scrollbar {
    width: 6px;
}

.footer-section::-webkit-scrollbar-track {
    background: transparent;
}

.footer-section::-webkit-scrollbar-thumb {
    background-color: var(--hover-color);
    border-radius: 3px;
}


/* Mwisho wa heda na footer*/

/* --- Segmented CTA Button Styles (adapted from glass.html, themed for walkthru.html) --- */
.button-container {
  position: relative;
  width: 400px;
  height: 64px;
  perspective: 1000px;
  user-select: none;
  background: transparent;
  margin: 2.5rem auto 2.5rem auto;
}
@media (max-width: 480px) {
  .button-container {
    width: 320px;
    height: 56px;
    margin-top: 1.5rem;
  }
}
.apply-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(245, 241, 232, 0.10); /* olive-beige */
  border: 1px solid rgba(218, 165, 32, 0.18); /* accent-gold */
  border-radius: 32px;
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, filter, background, clip-path;
  box-shadow:
    0 8px 32px rgba(107, 142, 35, 0.08), /* olive-green shadow */
    0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05),
    inset 0 0 40px rgba(255, 255, 255, 0.06);
  overflow: hidden;
  user-select: none;
  z-index: 1;
}
.apply-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(218, 165, 32, 0.15) 50%, /* accent-gold */
    transparent);
  animation: sheen 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sheen {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: -100%; }
}
.apply-button:hover {
  background: rgba(245, 241, 232, 0.18);
  border-color: rgba(218, 165, 32, 0.28);
  transform: translateY(-1px);
  box-shadow:
    0 12px 40px rgba(107, 142, 35, 0.12),
    0 2px 4px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    inset 0 0 40px rgba(255, 255, 255, 0.08);
}
.button-text {
  color: var(--olive-green);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  z-index: 2;
  pointer-events: none;
  background: var(--lemon-chiffon);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.segmented-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  border-radius: 32px;
  overflow: hidden;
  user-select: none;
  z-index: 5;
  background: transparent;
  justify-content: space-between; /* Ensure left/right alignment */
}
.segmented-container[aria-hidden="false"] {
  z-index: 10;
  pointer-events: auto;
}
.segment {
  position: relative;
  height: 100%;
  background: rgba(245, 241, 232, 0.15); /* olive-beige */
  backdrop-filter: blur(50px) saturate(200%);
  -webkit-backdrop-filter: blur(50px) saturate(200%);
  border: 1px solid rgba(218, 165, 32, 0.25); /* accent-gold */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  user-select: none;
  min-width: 0;
  z-index: 10;
  overflow: hidden;
  margin: 0 1px;
  box-shadow:
    0 8px 32px rgba(107, 142, 35, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    inset 0 0 60px rgba(255, 255, 255, 0.08);
}
.segment:first-child {
  border-radius: 30px 0 0 30px;
  border-right: 1px solid rgba(218, 165, 32, 0.25);
  margin-right: 1px;
  flex: 1;
  justify-content: flex-start;
}
.segment:last-child {
  border-radius: 0 30px 30px 0;
  border-left: 1px solid rgba(218, 165, 32, 0.25);
  flex: 1.2;
  margin-left: 1px;
  justify-content: flex-end;
}
.segment-text {
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 20;
  position: relative;
  padding: 0 20px;
  white-space: nowrap;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,0.18);
  pointer-events: none;
  user-select: none;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
}
.segment:hover {
  background: rgba(245, 241, 232, 0.22);
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(218, 165, 32, 0.35);
  box-shadow:
    0 12px 48px rgba(107, 142, 35, 0.18),
    0 4px 16px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    inset 0 0 80px rgba(255, 255, 255, 0.12);
}
.segment:hover .segment-text {
  color: #fff;
  text-shadow: 0 2px 8px rgba(218, 165, 32, 0.3);
  transform: translateY(-1px);
}
.segment:active {
  transform: translateY(-1px) scale(0.98);
  background: rgba(245, 241, 232, 0.28);
  box-shadow:
    0 8px 32px rgba(107, 142, 35, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    inset 0 0 60px rgba(255, 255, 255, 0.15);
}
.step-bubbles-container {
  position: absolute;
  top: -36px;
  left: 0;
  width: 100%;
  height: 32px;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
  user-select: none;
  opacity: 0;
  transform: scale(0.6);
  transform-origin: center bottom;
  z-index: 15;
}
.step-bubble {
  background: var(--olive-green) !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  width: 48px;
  height: 32px;
  line-height: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow:
    0 4px 12px rgba(107, 142, 35, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.8);
  user-select: none;
  transform-origin: center center;
  filter: drop-shadow(0 2px 3px rgba(107, 142, 35, 0.3));
}
.liquid-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}
.liquid-bar {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg,
    var(--accent-gold) 0%,
    var(--lemon-chiffon) 50%,
    var(--accent-gold) 100%);
  border-radius: 2px;
  box-shadow:
    0 0 8px var(--accent-gold),
    0 0 16px var(--lemon-chiffon),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: scaleX(0);
  transform-origin: center;
  position: relative;
  overflow: hidden;
}
.liquid-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    var(--lemon-chiffon),
    transparent);
  animation: barPulse 1.5s ease-in-out infinite;
}
@keyframes barPulse {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.liquid-circles {
  display: flex;
  gap: 6px;
  align-items: center;
}
.liquid-circle {
  width: 5px;
  height: 5px;
  background: radial-gradient(circle,
    var(--lemon-chiffon) 0%,
    var(--accent-gold) 50%,
    var(--olive-green) 100%);
  border-radius: 50%;
  box-shadow:
    0 0 6px var(--accent-gold),
    0 0 12px var(--lemon-chiffon),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: scale(0);
  position: relative;
}
.liquid-circle::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  background: radial-gradient(circle,
    var(--accent-gold) 0%,
    transparent 70%);
  opacity: 0;
  animation: circleRipple 2s ease-out infinite;
}
@keyframes circleRipple {
  0% { transform: scale(0); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}
.success-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--olive-green);
  font-size: 16px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  text-shadow: 0 2px 4px var(--lemon-chiffon);
  z-index: 20;
  user-select: none;
}
.segmented-container[aria-hidden="false"] ~ .apply-button {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
.hero .button-container .segment {
  background: rgba(107, 142, 35, 0.18) !important;
  border-color: var(--olive-green) !important;
}
.hero .button-container .segment-text {
  color: #fff !important;
}
.hero .button-container .step-bubble {
  background: var(--olive-green) !important;
  color: #fff !important;
}
.hero .button-container .apply-button {
  background: rgba(107, 142, 35, 0.10) !important;
  border-color: var(--olive-green) !important;
}

.hero .button-container .segment {
  background: var(--olive-green) !important;
  border-color: var(--olive-green) !important;
}
.hero .button-container .segment-text {
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18), 0 0 2px #fff;
}
.hero .button-container .step-bubble {
  background: var(--olive-green) !important;
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18), 0 0 2px #fff;
}
.hero .button-container .apply-button {
  background: var(--olive-green) !important;
  border-color: var(--olive-green) !important;
}
