:root {
    scroll-behavior: smooth;
}

/* Hero Wrapper and Navbar */
.hero-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0 auto;
    position: relative;
    overflow-x: clip;
    background-image: url('../Images/Noise-texture.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 8rem;
}

.gradient-overlay {
    position: absolute;
    width: 293px;
    height: 294px;
    border-radius: 294px;
    background: linear-gradient(180deg, #FFE6C2 42.31%, #837DC7 86.06%);
    filter: blur(150px);
    z-index: 1;
    pointer-events: none;
}

.gradient-overlay.top-left {
    top: -100px;
    left: -100px;
}

.gradient-overlay.top-right {
    top: -100px;
    right: -100px;
}

.gradient-overlay.bottom-left {
    bottom: -100px;
    left: -100px;
}

.gradient-overlay.bottom-right {
    bottom: -100px;
    right: -100px;
}

.gradient-overlay.middle-right {
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
}

.gradient-overlay.middle-left {
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
}


.lantern-decor {
    position: absolute;
    top: -70px;
    right: -70px;
    width: auto;
    z-index: 10;
    pointer-events: none;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    background: transparent;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-inner {
    max-width: 1250px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: var(--green-900);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--green-600);
}

.nav-sep {
    color: rgba(0, 0, 0, 0.2);
    font-size: 0.8rem;
    font-weight: 300;
}

/* Navbar Toggle (Mobile) */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--green-900);
    height: 2px;
    width: 25px;
    border-radius: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 8px;
}

.nav-toggle-label span::after {
    top: 8px;
}

/* Toggle Animation */
.nav-toggle:checked~.nav-toggle-label span {
    background: transparent;
}

.nav-toggle:checked~.nav-toggle-label span::before {
    transform: rotate(45deg);
    bottom: 0;
}

.nav-toggle:checked~.nav-toggle-label span::after {
    transform: rotate(-45deg);
    top: 0;
}

.logo img {
    height: 45px;
    /* Assuming the logo is horizontal */
    width: auto;
    border-radius: 0px !important;
}

.region-badge {
    display: flex;
    align-items: center;
    gap: 6.945px;
    background: rgba(255, 255, 255, 0.7);
    padding: 6.945px 13.889px;
    border-radius: 26.042px;
    font-size: 0.781rem;
    font-weight: 600;
    color: var(--green-800);
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8.68px);
    box-shadow: var(--shadow-sm);
    z-index: 11;
}

.region-badge svg {
    color: var(--green-600);
}

/* Hero Section Grid */
.hero-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34.722px;
    flex: 1;
    align-items: center;
    padding: 0.868rem 4% 1.736rem;
    max-width: 1250px;
    margin: auto;
}

/* --- Left Column: Content --- */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20.833px;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 6.945px;
    padding: 6.945px 13.889px;
    background: white;
    color: var(--green-700);
    border: 1px solid var(--green-100);
    border-radius: 17.361px;
    font-size: 0.738rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    box-shadow: var(--shadow-sm);
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(53, 174, 99, 0.4);
    }

    70% {
        box-shadow: 0 0 0 5.208px rgba(53, 174, 99, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(53, 174, 99, 0);
    }
}

.hero-title {
    font-size: 3.2rem;
    letter-spacing: -1.5px;
    color: var(--dark-text);
    z-index: 11;
}

.gradient-text {
    background: linear-gradient(90deg, var(--green-900), var(--green-700));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.909rem;
    color: var(--dark-text);
    margin-top: -8.68px;
    font-weight: 500;
}

.hero-description {
    font-size: 0.998rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 90%;
    font-weight: 400;
}

.highlight-date {
    display: inline-block;
    color: var(--green-700);
    font-weight: 800;
    padding: 2px 8px;
    background: rgba(45, 92, 72, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(45, 92, 72, 0.2);
    box-shadow: 0 4px 10px rgba(45, 92, 72, 0.05);
    transform: translateY(-2px);
}

/* Prizes Grid */
.prizes-grid {
    display: flex;
    gap: 13.889px;
    margin-top: 10.417px;
}

.prize-card {
    flex: 1;
    backdrop-filter: blur(13.889px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 13.889px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.prize-card.secondary {
    background: linear-gradient(145deg, rgba(172, 210, 168, 0.25), rgba(255, 255, 255, 0.2));
    border: 1px solid rgba(172, 210, 168, 0.5);
}

.prize-card.tertiary {
    background: linear-gradient(145deg, rgba(244, 239, 221, 0.3), rgba(255, 255, 255, 0.2));
    border: 1px solid rgba(214, 188, 106, 0.3);
}

.prize-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(52, 90, 73, 0.08), 0 0 25px rgba(214, 188, 106, 0.2);
    border-color: rgba(214, 188, 106, 0.8);
    background: rgba(255, 255, 255, 0.25);
}

.prize-card.primary {
    background: linear-gradient(135deg, rgba(244, 239, 221, 0.5), rgba(255, 255, 255, 0.3));
    border: 1.5px solid rgba(214, 188, 106, 0.5);
    box-shadow: 0 15px 35px rgba(214, 188, 106, 0.1), inset 0 0 15px rgba(255, 255, 255, 0.4);
}

.prize-card.primary .prize-title {
    display: block;
    color: var(--green-900);
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.2px;
    margin-bottom: 8px;
}

.prize-icon {
    width: 48.611px;
    height: 48.611px;
    background: var(--green-50);
    color: var(--green-600);
    border-radius: 50%;
    border: 1px solid var(--green-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prize-icon svg {
    width: 24.305px;
    height: 24.305px;
}

.prize-info .prize-title {
    font-family: var(--font-heading);
    display: block;
    font-size: 0.9rem;
    color: var(--green-800);
    margin-bottom: 8px;
    font-weight: 700;
}

.prize-info p {
    font-size: 1.085rem;
    font-weight: 700;
    color: var(--dark-text);
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

/* Prize Tiers inside the primary card */
.prize-tiers {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 2px;
}

.prize-tier {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 8px;
    border-radius: 6px;
    border: 1px solid transparent;
}

/* Circular rank number badge */
.tier-badge {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    font-family: var(--font-heading);
}

.tier-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-900);
    letter-spacing: 0px;
    min-width: 24px;
}

.tier-amount {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--dark-text);
    font-family: var(--font-heading);
    letter-spacing: -0.3px;
}

/* Gold row */
.prize-tier.gold {
    background: rgba(180, 143, 60, 0.08);
    border-color: rgba(180, 143, 60, 0.15);
}

.prize-tier.gold .tier-badge {
    background: linear-gradient(135deg, #5a7a4a, #2d5c48);
}

/* Silver row */
.prize-tier.silver {
    background: rgba(180, 180, 190, 0.1);
    border-color: rgba(180, 180, 190, 0.2);
}

.prize-tier.silver .tier-badge {
    background: linear-gradient(135deg, #a8aab0, #8c8e96);
}

/* Bronze row */
.prize-tier.bronze {
    background: rgba(180, 110, 50, 0.08);
    border-color: rgba(180, 110, 50, 0.15);
}

.prize-tier.bronze .tier-badge {
    background: linear-gradient(135deg, #c88a50, #a06830);
}

/* CTA Buttons */
.hero-ctas {
    display: flex;
    gap: 13.889px;
    margin-top: 13.889px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8.68px;
    padding: 13.889px 27.778px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.911rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--green-600);
    color: white;
    box-shadow: 0 3.472px 12.153px 0 rgba(35, 140, 79, 0.4);
    border: none;
}

.btn-primary:hover {
    background: var(--green-800);
    transform: translateY(-2px);
    box-shadow: 0 6.945px 20.833px rgba(35, 140, 79, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--green-800);
    border: 1px solid var(--green-200);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--green-50);
    border-color: var(--green-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* --- Right Column: Visuals --- */
.hero-visuals {
    display: flex;
    flex-direction: column;
    gap: 26.042px;
    height: 100%;
    justify-content: center;
    position: relative;
    perspective: 1302.083px;
}

/* Background Design Elements */
.right-bg-decor {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--green-200) 0%, transparent 60%);
    top: -20%;
    right: -40%;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
    border-radius: 50%;
}

.right-bg-pattern {
    position: absolute;
    width: 60vw;
    height: 60vw;
    top: -10%;
    right: -30%;
    background-image: radial-gradient(var(--green-400) 1.5px, transparent 1.5px);
    background-size: 20.833px 20.833px;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
    mask-image: linear-gradient(to right, transparent, black);
    -webkit-mask-image: linear-gradient(to right, transparent, black);
    border-radius: 50%;
}

/* Video Outer Wrapper for Outline */
.video-outer-wrapper {
    position: relative;
    width: 100%;
    transition: transform 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.video-outer-wrapper:hover {
    transform: translateY(-3.472px);
}

.video-outline {
    position: absolute;
    top: 10.417px;
    left: -10.417px;
    right: -10.417px;
    bottom: -10.417px;
    border: 1px solid #ddc982;
    border-radius: var(--radius-xl);
    z-index: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.video-outer-wrapper:hover .video-outline {
    top: 13.889px;
    left: -13.889px;
    right: -13.889px;
    bottom: -13.889px;
    border-color: var(--green-500);
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10.6;
    /* width: 40%; */
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: transparent;
    z-index: 2;
    /* border: 6.945px solid white; */
    pointer-events: auto;
    display: flex;
    justify-content: flex-end;
    gap: 4px;
}

.video-container a {
    flex-grow: 1;
    width: 0;
    height: 100%;
    display: flex;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 0px;
    object-position: center;
}

.video-container video {
    width: 50%;
    max-width: 65%;
    height: 100%;
    object-fit: cover;
    object-position: right;
    border-radius: 0px;
    display: block;
}

.video-window-controls {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    z-index: 10;
    display: none;
}

.video-window-controls .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.video-window-controls .dot.red {
    background-color: #ff5f56;
}

.video-window-controls .dot.yellow {
    background-color: #ffbd2e;
}

.video-window-controls .dot.green {
    background-color: #27c93f;
}

.video-decor {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    filter: blur(34.722px);
    pointer-events: none;
}

.decor-1 {
    width: 260.417px;
    height: 260.417px;
    background: var(--green-300);
    top: -17.361px;
    right: -43.403px;
    opacity: 0.5;
}

.decor-2 {
    width: 173.611px;
    height: 173.611px;
    background: var(--green-400);
    bottom: -34.722px;
    left: -34.722px;
    opacity: 0.3;
}

/* The Process */
.process-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(13.889px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-xl);
    padding: 20.833px;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.process-title {
    font-size: 1.172rem;
    color: var(--green-900);
    margin-bottom: 20.833px;
    font-weight: 700;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10.417px;
    text-align: center;
    flex: 1;
    z-index: 2;
    opacity: 0;
    animation: stepFadeIn 0.5s ease-out forwards;
}

.step-number {
    width: 38.195px;
    height: 38.195px;
    background: white;
    color: var(--green-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.955rem;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-sm);
    border: 3.472px solid var(--green-50);
}

.step-number svg {
    color: var(--green-600);
}

.step-content strong {
    display: block;
    font-size: 0.911rem;
    color: var(--dark-text);
    margin-bottom: 3.472px;
    font-weight: 700;
}

.step-content span {
    font-size: 0.781rem;
    color: var(--text-muted);
    line-height: 1.3;
    display: block;
    max-width: 86.805px;
    font-weight: 500;
}

.step-line {
    height: 2.083px;
    background: var(--green-100);
    flex: 1;
    margin-top: 22.917px;
    z-index: 1;
    transform-origin: left;
    transform: scaleX(0);
    animation: lineDraw 0.5s ease-in-out forwards;
}

/* Creative Social Connect Section */
.social-connect-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    z-index: 2;
    box-shadow: var(--shadow-sm);
    margin-top: -10px;
    /* pull it slightly closer to the process container */
}

.social-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-text);
    font-size: 1.1rem;
    position: relative;
    padding-right: 15px;
}

.social-title::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 2px;
    background: var(--green-200);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    color: var(--green-700);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(45, 92, 72, 0.05);
    border: 1px solid var(--green-100);
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-md);
    color: white;
    border-color: transparent;
}

.social-btn.facebook:hover {
    background: #1877F2;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.youtube:hover {
    background: #FF0000;
}

.social-btn.youtube:hover polygon {
    fill: #FF0000;
}

.social-btn.tiktok:hover {
    background: #000000;
}

/* Process Animation Delays & Keyframes */
.process-steps .step-item:nth-child(1) {
    animation-delay: 0.2s;
}

.process-steps .step-line:nth-child(2) {
    animation-delay: 0.5s;
}

.process-steps .step-item:nth-child(3) {
    animation-delay: 0.8s;
}

.process-steps .step-line:nth-child(4) {
    animation-delay: 1.1s;
}

.process-steps .step-item:nth-child(5) {
    animation-delay: 1.4s;
}

.process-steps .step-line:nth-child(6) {
    animation-delay: 1.7s;
}

.process-steps .step-item:nth-child(7) {
    animation-delay: 2.0s;
}

.process-steps .step-line:nth-child(8) {
    animation-delay: 2.3s;
}

.process-steps .step-item:nth-child(9) {
    animation-delay: 2.6s;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateY(13.021px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineDraw {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* ============================================
   COMPETITION GUIDELINES - Light Gradient Section
   ============================================ */
.guidelines-section {
    background: linear-gradient(160deg, #ffffff 0%, var(--green-50) 40%, var(--green-100) 100%);
    padding: 90px 4%;
    position: relative;
    overflow: hidden;
}

/* Decorative orbs for depth */
.guidelines-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(136, 167, 152, 0.18) 0%, transparent 70%);
    top: -120px;
    right: -80px;
    pointer-events: none;
}

.guidelines-section::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 92, 72, 0.07) 0%, transparent 70%);
    bottom: -60px;
    left: -60px;
    pointer-events: none;
}

.guidelines-inner {
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.gl-header {
    text-align: center;
    margin-bottom: 60px;
}

.gl-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 16px;
    background: rgba(45, 92, 72, 0.06);
    padding: 6px 18px;
    border-radius: 30px;
    border: 1px solid var(--green-200);
}

.gl-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark-text);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

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

/* Bento Grid - 2x2 */
.gl-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
    padding: 0 4%;
}

/* Cards - white glass on the light bg */
.gl-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, background 0.35s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

/* Subtle top accent line per card */
.gl-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.gl-card--eligibility::before {
    background: linear-gradient(90deg, var(--green-500), var(--green-400));
}

.gl-card--posting::before {
    background: linear-gradient(90deg, var(--green-500), var(--green-400));
}

.gl-card--video::before {
    background: linear-gradient(90deg, var(--green-500), var(--green-400));
}

.gl-card--submission::before {
    background: linear-gradient(90deg, var(--green-500), var(--green-400));
}

.gl-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.gl-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Icon Badges */
.gl-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.gl-card--eligibility .gl-badge {
    background: var(--green-600);
    box-shadow: 0 4px 14px rgba(45, 92, 72, 0.3);
}

.gl-card--posting .gl-badge {
    background: var(--green-600);
    box-shadow: 0 4px 14px rgba(45, 92, 72, 0.3);
}

.gl-card--video .gl-badge {
    background: var(--green-600);
    box-shadow: 0 4px 14px rgba(45, 92, 72, 0.3);
}

.gl-card--submission .gl-badge {
    background: var(--green-600);
    box-shadow: 0 4px 14px rgba(45, 92, 72, 0.3);
}

.gl-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--green-200);
    line-height: 1;
    transition: color 0.35s ease;
    user-select: none;
}

.gl-card:hover .gl-num {
    color: var(--green-300);
}

.gl-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
}

.gl-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gl-card li {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.55;
    padding-left: 20px;
    position: relative;
}

.gl-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-500);
}

.gl-card li strong {
    color: var(--green-700);
    font-weight: 700;
}

/* CTA Row */
.gl-cta-row {
    text-align: center;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 42px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

/* ============================================
   TERMS & CONDITIONS SECTION — REDESIGNED
   ============================================ */
.terms-section {
    background: linear-gradient(145deg, #ffffff 0%, #f4f8f6 40%, #eaf3ee 100%);
    padding: 110px 4%;
    position: relative;
    overflow: hidden;
}

/* Decorative geometric elements */
.terms-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.terms-deco--tl {
    top: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(87, 132, 111, 0.08) 0%, transparent 70%);
}

.terms-deco--br {
    bottom: -80px;
    right: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 92, 72, 0.07) 0%, transparent 68%);
}

.terms-deco--circle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px dashed rgba(136, 167, 152, 0.18);
}

/* Top accent line */
.terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--green-400) 40%, var(--green-600) 60%, transparent 100%);
}

.terms-inner {
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── Section Header ── */
.terms-header {
    text-align: center;
    margin-bottom: 64px;
}

.terms-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--dark-text);
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.terms-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto;
}

/* ── Preview Cards (3-col grid) ── */
.terms-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 0;
    max-width: 1250px;
    padding: 0 4%;
}

.terms-card {
    background: #ffffff;
    border: 1px solid rgba(136, 167, 152, 0.22);
    border-radius: 20px;
    padding: 28px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    box-shadow: 0 2px 12px rgba(45, 92, 72, 0.05);
}

.terms-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-400), var(--green-600));
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.terms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(45, 92, 72, 0.1);
    border-color: rgba(136, 167, 152, 0.45);
}

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

.terms-card-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: rgb(87 132 111 / 63%);
    line-height: 1;
    user-select: none;
    transition: color 0.3s ease;
}


.terms-card-body p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.terms-card-body p strong {
    color: var(--green-700);
    font-weight: 700;
}

/* ── CTA Button Row ── */
.terms-cta-wrap {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 44px;
}

.terms-cta-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-300), transparent);
}

.terms-cta-btn {
    position: relative;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--green-700) 0%, var(--green-600) 60%, var(--green-500) 100%);
    border: none;
    border-radius: 60px;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(45, 92, 72, 0.28);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.3s ease;
    outline-offset: 3px;
}

.terms-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(45, 92, 72, 0.38);
}

.terms-cta-btn:active {
    transform: scale(0.98);
}

.terms-cta-btn__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px 16px 26px;
    position: relative;
    z-index: 1;
}

.terms-cta-btn__text {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.terms-cta-btn__badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    display: none;
}

.terms-cta-btn__icon {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    transition: transform 0.3s ease;
}

.terms-cta-btn:hover .terms-cta-btn__icon {
    transform: translate(3px, -3px);
}

/* Animated shimmer ripple */
.terms-cta-btn__ripple {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            transparent 30%,
            rgba(255, 255, 255, 0.18) 50%,
            transparent 70%);
    background-size: 200% 100%;
    animation: tcBtnShimmer 2.5s linear infinite;
    pointer-events: none;
}

@keyframes tcBtnShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ══════════════════════════════════════════
   TERMS MODAL
   ══════════════════════════════════════════ */
.tmodal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(15, 22, 18, 0.55);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
        visibility 0.35s;
}

.tmodal-overlay--open {
    opacity: 1;
    visibility: visible;
}

.tmodal {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 820px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(10, 20, 15, 0.22), 0 0 0 1px rgba(136, 167, 152, 0.12);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tmodal-overlay--open .tmodal {
    transform: translateY(0) scale(1);
}

/* ── Modal Header ── */
.tmodal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 32px;
    background: linear-gradient(135deg, var(--green-700), var(--green-600));
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.tmodal-header__left {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.tmodal-header__icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.tmodal-header__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3px;
    font-family: var(--font-body);
}

.tmodal-header__title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.3px;
}

.tmodal-header__right {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.tmodal-header__count {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 5px 13px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.tmodal-close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tmodal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: rotate(90deg);
}

/* ── Modal Body ── */
.tmodal-body {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
    scrollbar-width: thin;
    scrollbar-color: var(--green-300) transparent;
}

.tmodal-body::-webkit-scrollbar {
    width: 5px;
}

.tmodal-body::-webkit-scrollbar-thumb {
    background: var(--green-300);
    border-radius: 10px;
}

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

.tmodal-item {
    background: #fafcfb;
    border: 1px solid rgba(136, 167, 152, 0.18);
    border-radius: 14px;
    padding: 18px 18px 18px 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tmodal-item:hover {
    background: #f0f7f4;
    border-color: rgba(87, 132, 111, 0.3);
    box-shadow: 0 3px 12px rgba(45, 92, 72, 0.07);
}

/* Featured/important items span full width */
.tmodal-item--featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(87, 132, 111, 0.05) 0%, rgba(45, 92, 72, 0.04) 100%);
    border-color: rgba(87, 132, 111, 0.25);
}

.tmodal-item--featured:hover {
    background: linear-gradient(135deg, rgba(87, 132, 111, 0.09) 0%, rgba(45, 92, 72, 0.07) 100%);
}

.tmodal-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    margin-top: 1px;
    box-shadow: 0 3px 8px rgba(45, 92, 72, 0.22);
    flex-shrink: 0;
}

.tmodal-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.68;
    margin: 0;
}

.tmodal-item p strong {
    color: var(--green-700);
    font-weight: 700;
}

.tmodal-item p a {
    color: var(--green-600);
    font-weight: 700;
    word-break: break-all;
}

/* ── Modal Footer ── */
.tmodal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 32px;
    background: #f8faf9;
    border-top: 1px solid var(--green-200);
    flex-shrink: 0;
}

.tmodal-footer__note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
}

.tmodal-footer__note svg {
    color: var(--green-500);
    flex-shrink: 0;
}

.tmodal-footer__close {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green-700), var(--green-600));
    color: #ffffff;
    border: none;
    border-radius: 40px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 16px rgba(45, 92, 72, 0.25);
    white-space: nowrap;
}

.tmodal-footer__close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 92, 72, 0.35);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .terms-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .terms-title {
        font-size: 2.3rem;
    }

    .tmodal-grid {
        grid-template-columns: 1fr;
    }

    .tmodal-item--featured {
        grid-column: auto;
    }
}

@media (max-width: 620px) {
    .terms-section {
        padding: 80px 5%;
    }

    .terms-preview-grid {
        grid-template-columns: 1fr;
    }

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

    .terms-cta-wrap {
        flex-direction: column;
        gap: 16px;
    }

    .terms-cta-line {
        width: 80px;
        height: 1px;
    }

    .tmodal {
        border-radius: 18px;
        max-height: 92vh;
    }

    .tmodal-header {
        padding: 20px 22px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .tmodal-header__title {
        font-size: 1.2rem;
    }

    .tmodal-body {
        padding: 20px;
    }

    .tmodal-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 22px;
        gap: 14px;
    }

    .tmodal-footer__close {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: #ffffff;
    padding: 100px 4%;
    position: relative;
    overflow: hidden;
}

/* Soft decorative top stripe */
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-400), var(--green-600), var(--green-400));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.faq-inner {
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 4%;
}

/* Header */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-600);
    display: block;
    margin-bottom: 12px;
    background: rgba(45, 92, 72, 0.07);
    border: 1px solid var(--green-200);
    padding: 6px 16px;
    border-radius: 30px;
    width: fit-content;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark-text);
    line-height: 1.08;
    letter-spacing: -0.5px;
}

/* 2-column grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

/* Last item spans full width */
.faq-item--wide {
    grid-column: 1 / -1;
}

/* Each FAQ item */
.faq-item {
    border-bottom: 1px solid var(--green-200);
    border-right: 1px solid var(--green-200);
}

.faq-item:nth-child(even) {
    border-right: none;
}

/* Question button */
.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 26px 28px;
    text-align: left;
    transition: background 0.25s ease;
}

.faq-q:hover {
    background: rgba(45, 92, 72, 0.03);
}

.faq-q-num {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-500);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(45, 92, 72, 0.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    transition: background 0.25s ease, color 0.25s ease;
}

.faq-item--open .faq-q-num {
    background: var(--green-600);
    color: white;
}

.faq-q-text {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    line-height: 1.4;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--green-500);
    display: flex;
    align-items: center;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-item--open .faq-icon {
    transform: rotate(180deg);
    color: var(--green-700);
}

/* Answer */
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), padding 0.3s ease;
    padding: 0 28px 0 76px;
}

.faq-item--open .faq-a {
    max-height: 300px;
    padding: 0 28px 24px 76px;
}

.faq-a p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-a ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-a li {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
    padding-left: 18px;
    position: relative;
}

.faq-a li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-500);
}

.faq-a strong {
    color: var(--green-700);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 760px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-item {
        border-right: none;
    }

    .faq-title {
        font-size: 2.2rem;
    }

    .faq-a {
        padding: 0 16px 0 60px;
    }

    .faq-item--open .faq-a {
        padding: 0 16px 20px 60px;
    }
}

/* ============================================
   SAMPLE SUBMISSION VIDEO SECTION
   ============================================ */
.sample-section {
    background: linear-gradient(150deg, var(--green-100) 0%, #f0f5f2 50%, #e8f0eb 100%);
    padding: 100px 4%;
    position: relative;
    overflow: hidden;
}

/* Diagonal decorative shape on the right */
.sample-bg-split {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 92, 72, 0.05) 0%, rgba(136, 167, 152, 0.1) 100%);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
}

.sample-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

/* ---- Left Text Column ---- */
.sample-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sample-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green-600);
    background: rgba(45, 92, 72, 0.07);
    border: 1px solid var(--green-200);
    padding: 7px 16px;
    border-radius: 30px;
    width: fit-content;
}

.sample-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark-text);
    line-height: 1.08;
    letter-spacing: -1px;
}

.sample-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 380px;
}

/* Feature pills */
.sample-pills {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.sample-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-700);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--green-200);
    padding: 10px 18px;
    border-radius: 40px;
    width: fit-content;
    backdrop-filter: blur(8px);
}

.sample-pill svg {
    color: var(--green-500);
    flex-shrink: 0;
}

/* ---- Right Phone Mockup ---- */
.sample-phone-wrap {
    flex: 0 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
}

/* Decorative concentric rings behind the phone */
.sample-ring {
    display: none;
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid var(--green-300);
    pointer-events: none;
}

.sample-ring--outer {
    width: 520px;
    height: 520px;
    opacity: 0.35;
    animation: ringPulse 4s ease-in-out infinite;
}

.sample-ring--inner {
    width: 420px;
    height: 420px;
    opacity: 0.5;
    animation: ringPulse 4s ease-in-out infinite 0.8s;
}

@keyframes ringPulse {

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

    50% {
        transform: scale(1.04);
        opacity: 0.2;
    }
}

/* Phone shell */
.sample-phone {
    width: 320px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

/* Dynamic Island style notch */
.sample-phone-notch {
    display: none;
}

/* Screen area */
.sample-phone-screen {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background: #000;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.sample-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video Overlay & Play Button */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 2;
}

.play-button-outer {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.play-svg {
    width: 32px;
    height: 32px;
}

.video-play-overlay:hover .play-button-outer {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.35);
}

.video-play-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Home bar */
.sample-phone-bar {
    display: none;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .sample-inner {
        flex-direction: column;
        gap: 60px;
        text-align: center;
        align-items: center;
    }

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

    .sample-desc {
        max-width: 500px;
    }

    .sample-bg-split {
        display: none;
    }

    .sample-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {
    .sample-phone {
        width: 260px;
    }

    .sample-ring--outer {
        width: 400px;
        height: 400px;
    }

    .sample-ring--inner {
        width: 320px;
        height: 320px;
    }
}

/* Responsive */
@media (max-width: 700px) {
    .gl-bento {
        grid-template-columns: 1fr;
    }

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

/* Responsiveness */
@media (max-width: 1041.667px) {
    .hero-title {
        font-size: 2.778rem;
    }

    .hero-subtitle {
        font-size: 1.736rem;
    }

    .hero-section {
        gap: 26.042px;
    }
}

@media (max-width: 861.111px) {
    .hero-section {
        grid-template-columns: 1fr;
        height: auto;
        padding-bottom: 3.472rem;
    }

    .hero-visuals {
        order: -1;
    }

    .hero-wrapper {
        min-height: auto;
    }
}

@media (max-width: 500px) {
    .prize-card {
        padding: 14px 10px;
        width: 100%;
        align-items: center;
    }

    .process-wrapper {
        padding: 15px 10px;
    }

    .lantern-decor {
        display: none;
    }

    .hero-wrapper {
        padding-top: 5rem;
    }

    /* .prizes-grid {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    } */
}

/* ============================================
   EXPERIENCE THE JOURNEY SECTION
   ============================================ */
.experience-section {
    background: linear-gradient(135deg, #ffffff 0%, var(--green-50) 50%, var(--green-100) 100%);
    padding: 120px 4%;
    position: relative;
    overflow: hidden;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(136, 167, 152, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.experience-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 100px;
    position: relative;
    z-index: 1;
}

.experience-content {
    flex: 1;
}

.experience-title {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 24px;
    line-height: 1.1;
}

.experience-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 600px;
}

.download-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download-heading {
    font-weight: 700;
    font-size: 1rem;
    color: var(--green-700);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--dark-text);
    color: white !important;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-btn:hover {
    background: var(--green-800);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 30, 58, 0.2);
}

.download-btn svg {
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.btn-text span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.btn-text strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.experience-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(136, 167, 152, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.app-mockup {
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
    max-width: 300px;
}

/* Responsive */
@media (max-width: 1024px) {
    .experience-inner {
        gap: 50px;
    }

    .experience-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 860px) {
    .experience-inner {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .experience-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .download-container {
        align-items: center;
    }

    .download-buttons {
        justify-content: center;
    }

    .app-mockup {
        max-width: 350px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #ffffff;
    padding: 40px 4%;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.footer-inner {
    max-width: 1250px;
    margin: 0 auto;
}

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

@media (max-width: 1024px) {
    .nav-links {
        gap: 15px;
    }

    .nav-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 860px) {
    .navbar {
        height: 75px;
    }

    .nav-toggle-label {
        display: block;
        order: 2;
        margin-left: 15px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding-left: 20px;
        display: none;
    }

    .nav-toggle:checked~.nav-links {
        display: flex;
        justify-content: flex-start;
        padding-top: 5rem;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .nav-sep {
        display: none;
    }

    .region-badge {
        display: flex;
        margin-left: auto;
        margin-right: 15px;
        order: 1;
    }

    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 20px;
    }

    .hero-content {
        order: 1;
        align-items: center;
    }

    .hero-visuals {
        order: 2;
    }

    .badge-tag {
        margin: 0 auto;
    }

    .hero-ctas {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .lantern-decor {
        width: 150px;
        top: -10px;
        right: -10px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }
}