.elementor-3114 .elementor-element.elementor-element-1f30b4a > .elementor-widget-container{margin:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-67e4141 *//* ============================================
   KELAS MENANAM — Landing Page Styles
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-300: #86efac;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #166534;
    --green-900: #14532d;
    --green-950: #052e16;

    --earth-50: #fdf8f0;
    --earth-100: #f5edd6;
    --earth-200: #ead9ad;
    --earth-300: #dfc07c;
    --earth-400: #d4a652;
    --earth-500: #c8903a;
    --earth-600: #b07430;
    --earth-700: #935a2a;
    --earth-800: #7a4928;
    --earth-900: #663d25;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --text-primary: #1a2e1a;
    --text-secondary: #3d5a3d;
    --text-muted: #6b8a6b;
    --bg-primary: #fefffe;
    --bg-secondary: #f5faf5;
    --bg-card: #ffffff;

    --font-main: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ---- Container ---- */
.container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 28px;
}

/* ---- Section ---- */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--green-100), var(--green-200));
    color: var(--green-800);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag-light {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-title em {
    color: var(--green-600);
    font-style: italic;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    color: white;
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    box-shadow: 0 6px 24px rgba(22, 163, 74, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--green-800);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    background: var(--green-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-full {
    width: 100%;
}

/* ---- Navigation ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    font-size: 1.6rem;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: white;
    transition: var(--transition);
}

.navbar.scrolled .logo-text {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
}

.navbar.scrolled .nav-links a {
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: white;
    background: rgba(255,255,255,0.12);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--green-700);
    background: var(--green-50);
}

.nav-cta {
    background: rgba(255,255,255,0.15) !important;
    border: 1.5px solid rgba(255,255,255,0.3) !important;
    backdrop-filter: blur(4px);
}

.navbar.scrolled .nav-cta {
    background: var(--green-600) !important;
    color: white !important;
    border-color: var(--green-600) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: white;
    border-radius: 4px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--text-primary);
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 46, 22, 0.88) 0%,
        rgba(20, 83, 45, 0.75) 40%,
        rgba(22, 101, 52, 0.6) 70%,
        rgba(5, 46, 22, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--green-200);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease forwards;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green-400);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

.hero-title {
    animation: fadeInUp 0.8s ease 0.15s forwards;
    opacity: 0;
}

.hero-title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
}

.hero-title-accent {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(135deg, var(--green-300), var(--green-400), #a7f3d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 32px;
    max-width: 560px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.45s forwards;
    opacity: 0;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 18px;
    border-radius: var(--radius-md);
}

.meta-icon {
    font-size: 1.3rem;
}

.meta-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.meta-value {
    display: block;
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 10px;
    background: rgba(255,255,255,0.6);
    border-radius: 4px;
    animation: scrollBounce 2s ease infinite;
}

/* ---- About Cards ---- */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-400), var(--green-600));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-200);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card-icon {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.about-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ---- Speaker Section ---- */
.speaker {
    background: var(--bg-secondary);
}

.speaker-card {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
    max-width: 960px;
    margin-inline: auto;
}

.speaker-image {
    position: relative;
}

.speaker-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.speaker-image-decor {
    position: absolute;
    inset: -12px;
    border: 3px dashed var(--green-300);
    border-radius: calc(var(--radius-xl) + 8px);
    z-index: -1;
    opacity: 0.5;
}

.speaker-tag {
    display: inline-block;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.speaker-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.speaker-title {
    font-size: 1rem;
    color: var(--green-600);
    font-weight: 500;
    margin-bottom: 18px;
}

.speaker-bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

.speaker-stats {
    display: flex;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green-700);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* ---- Timeline / Schedule ---- */
.timeline {
    max-width: 680px;
    margin-inline: auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--green-200), var(--green-500), var(--green-200));
    border-radius: 4px;
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 8px;
    align-items: flex-start;
    position: relative;
}

.timeline-time {
    flex-shrink: 0;
    width: 64px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green-700);
    padding-top: 22px;
    text-align: right;
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 22px 28px;
    flex: 1;
    position: relative;
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--green-200);
    transform: translateX(4px);
}

.timeline-dot {
    position: absolute;
    left: -24px;
    top: 26px;
    width: 14px;
    height: 14px;
    background: white;
    border: 3px solid var(--green-500);
    border-radius: 50%;
    z-index: 2;
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---- Benefits ---- */
.benefits {
    background: var(--bg-secondary);
}

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

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
}

.benefit-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--green-200);
    transform: translateY(-4px);
}

.benefit-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-200);
    line-height: 1;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

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

/* ---- CTA / Pricing ---- */
.cta-section {
    padding: 100px 0;
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--green-800), var(--green-900), var(--green-950));
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 222, 128, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.cta-decor-leaf {
    position: absolute;
    font-size: 3rem;
    opacity: 0.12;
    animation: floatLeaf 8s ease-in-out infinite;
}

.cta-leaf-1 { top: 10%; left: 8%; animation-delay: 0s; }
.cta-leaf-2 { top: 15%; right: 12%; animation-delay: 2.5s; }
.cta-leaf-3 { bottom: 12%; left: 15%; animation-delay: 5s; }

.text-white { color: white !important; }
.text-white-soft { color: rgba(255,255,255,0.65) !important; }

.pricing-box {
    max-width: 420px;
    margin-inline: auto;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
}

.price-tag {
    text-align: center;
    margin-bottom: 28px;
}

.price-original {
    display: block;
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-current {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
}

.price-note {
    display: inline-block;
    background: rgba(74, 222, 128, 0.2);
    color: var(--green-300);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    margin-top: 8px;
}

.price-includes {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.price-includes li {
    padding: 8px 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.price-includes li:last-child {
    border-bottom: none;
}

.seats-left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-top: 24px;
    position: relative;
}

.seats-dot {
    width: 8px;
    height: 8px;
    background: #f97316;
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

/* ---- Footer ---- */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    color: white;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.footer-col a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--green-400);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* ---- Animations ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}

@keyframes floatLeaf {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-16px) rotate(8deg); }
}

/* ---- Scroll Reveal ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */

/* -- Desktop & Tablet (min-width: 601px) -- */
@media (min-width: 601px) {
    .nav-toggle {
        display: none;
    }
}

/* -- Mobile (max-width: 600px) -- */
@media (max-width: 600px) {
    .container {
        padding-inline: 24px;
    }

    .section {
        padding: 60px 0;
    }

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

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

    .section-desc {
        font-size: 0.92rem;
    }

    /* -- Navigation Mobile -- */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text-secondary) !important;
        font-size: 1rem;
        padding: 12px 16px;
        width: 100%;
        border-radius: var(--radius-sm);
    }

    .nav-links a:hover {
        background: var(--green-50) !important;
        color: var(--green-700) !important;
    }

    .nav-cta {
        background: var(--green-600) !important;
        color: white !important;
        border-color: var(--green-600) !important;
        text-align: center;
        margin-top: 12px;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    /* -- Hero Mobile -- */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        align-items: flex-start;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(5, 46, 22, 0.92) 0%,
            rgba(14, 63, 33, 0.88) 30%,
            rgba(20, 83, 45, 0.82) 60%,
            rgba(5, 46, 22, 0.94) 100%
        );
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 6px 14px;
        margin-bottom: 18px;
        align-self: flex-start;
    }

    .hero-title-line {
        font-size: 2.2rem;
        line-height: 1.05;
    }

    .hero-title-accent {
        font-size: 2.6rem;
        line-height: 1.05;
    }

    .hero-subtitle {
        font-size: 0.88rem;
        line-height: 1.65;
        margin-top: 12px;
        margin-bottom: 22px;
        max-width: 100%;
        color: rgba(255,255,255,0.7);
    }

    .hero-meta {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 24px;
    }

    .hero-meta-item {
        padding: 10px 14px;
        gap: 10px;
        border-radius: var(--radius-sm);
        width: 100%;
    }

    .meta-icon {
        font-size: 1.15rem;
        flex-shrink: 0;
    }

    .meta-label {
        font-size: 0.62rem;
        letter-spacing: 0.8px;
    }

    .meta-value {
        font-size: 0.8rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .hero-scroll {
        display: none;
    }

    /* -- About Cards Mobile -- */
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-card {
        padding: 28px 22px;
    }

    /* -- Speaker Mobile -- */
    .speaker-card {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .speaker-image {
        max-width: 280px;
        margin-inline: auto;
    }

    .speaker-name {
        font-size: 1.6rem;
    }

    .speaker-stats {
        justify-content: center;
        gap: 24px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    /* -- Timeline Mobile -- */
    .timeline::before {
        left: 24px;
    }

    .timeline-time {
        width: 12px;
        font-size: 0;
    }

    .timeline-item {
        gap: 24px;
    }

    .timeline-content {
        padding: 16px 18px;
    }

    /* -- Benefits Mobile -- */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        padding: 22px 20px;
    }

    /* -- CTA Mobile -- */
    .cta-card {
        padding: 50px 24px;
    }

    .pricing-box {
        padding: 28px 20px;
    }

    .price-current {
        font-size: 2.2rem;
    }

    /* -- Footer Mobile -- */
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .footer-links {
        flex-direction: column;
        gap: 24px;
    }
}/* End custom CSS */