/* --- Variables & Reset --- */
:root {
    --forest: #163020;
    --lime: #bef264;
    --text-muted: #64748b;
    --white: #ffffff;
    --bg-light: #fdfdfd;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html,
body {
    /*overflow-x: hidden;*/
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--white);
    color: var(--forest);
    line-height: 1.5;
    scroll-behavior: smooth;
}

/* --- Header & Navigation Styles --- */
:root {
    --nav-height: 80px;
    --slate: #1e293b;
}

.main-nav-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.9);
    /* Glass effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid #f1f5f9;
    z-index: 2000;
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.nav-logo {
    height: 35px;
    width: auto;
    overflow: hidden;
}
.nav-logo img {
    height: 100%;
    width: auto;
}

.text-lime {
    color: var(--lime);
}

/* Desktop Menu */
.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: var(--slate);
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s;
}

.nav-link:hover {
    color: var(--lime);
}

/* Desktop CTA */
.nav-cta {
    background: var(--forest);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.nav-cta:hover {
    background: var(--lime);
    color: var(--forest);
    transform: translateY(-2px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 28px;
    height: 2px;
    background: var(--forest);
    border-radius: 10px;
    transition: 0.3s;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 1999;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-overlay.active {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-link {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--forest);
}

.mobile-cta {
    background: var(--lime);
    color: var(--forest);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 900;
    display: inline-block;
    margin-top: 20px;
}

/* RESPONSIVE LOGIC */
@media (max-width: 992px) {

    .nav-menu,
    .nav-actions .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem; /* Mobile sweet spot */
    }
}

/* =======================
        Hero Section
========================== */

.hero {
    padding: 4rem 0;
    overflow: hidden;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
}

.hero-content {
    flex: 1;
}

.badge-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.line {
    width: 50px;
    height: 2px;
    background: var(--lime);
}

.badge-text {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--forest);
}

.hero-description {
    font-size: 1.13rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-primary {
    background: var(--forest);
    color: var(--white);
    padding: 1.25rem 2.25rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: var(--transition);
}

.btn-primary:hover {
    padding-right: 3rem;
}

.link-secondary {
    font-weight: 700;
    color: var(--forest);
    text-decoration: none;
    border-bottom: 2px solid var(--lime);
    padding-bottom: 4px;
    transition: var(--transition);
}

.link-secondary:hover {
    color: var(--lime);
}

/* --- Visual Grid --- */
.hero-visual {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
    margin-top: 1rem;
}

.grid-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.grid-column.offset {
    padding-top: 3rem;
}

.img-wrapper {
    overflow: hidden;
    transition: var(--transition);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition);
}

.img-wrapper:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Leaf Corners: Top-Left Big, Bottom-Right Small */
.leaf-top-left { border-radius: 60px 5px 60px 5px; }
.leaf-bottom-right { border-radius: 5px 60px 5px 60px; }

.main-img { height: 300px; }
.small-img { height: 150px; }

.stat-card {
    background: var(--lime);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
}

.stat-label {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.8rem;
}

/* Rotating Badge */
.floating-badge {
    position: absolute;
    bottom: 10px;
    left: 15px;
    width: 100px;
    height: 100px;
    background: var(--forest);
    border: 5px solid var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    animation: rotate 15s linear infinite;
}

.sun-icon {
    width: 50px;
    height: 50px;
    color: var(--lime);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-flex { flex-direction: column; text-align: center; }
    .hero-title { font-size: 3rem; }
    .hero-description { margin: 0 auto 2.5rem auto; }
    .hero-actions { justify-content: center; }
    .nav-links { display: none; }
}


/* =======================
    Services Section
========================== */

.services-section {
    background-color: var(--forest);
    padding: 4rem 0;
    color: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    max-width: 900px;
    margin: 0 auto 1rem;
    line-height: 1.2;
}

.section-subtitle {
    color: #a1a1aa;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}


/* --- Grid & Cards --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-10px);
    border-color: var(--lime);
}

.service-card.highlight {
    background: var(--lime);
    color: var(--forest);
}

.service-card .card-icon {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 2rem;
    opacity: 0.5;
}

.service-card h3 {
    font-size: 1.58rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

.highlight p {
    opacity: 1;
    font-weight: 500;
}

/* --- Bottom CTA Banner --- */
.cta-banner {
    background: linear-gradient(90deg, #1e3a2a 0%, #163020 100%);
    border: 1px solid var(--lime);
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
}

.cta-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: var(--lime);
    font-weight: 600;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 0.9rem; }
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}



/* =======================
    Pain Section
========================== */

.brand-eyebrow {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 12px;
    margin-bottom: 15px;
}

.brand-eyebrow .line {
    width: 40px;
    height: 2px;
    background: var(--lime);
}

.brand-eyebrow .text {
    font-weight: 900;
    text-transform: uppercase;
    color: var(--forest);
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.pain-section {
    padding: 3rem 0;
    background-color: #f8fafc; /* Very light slate to contrast the dark section */
}

.pain-flex {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.pain-content {
    flex: 1.2;
}

.pain-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 1.5rem 0 2.5rem;
    line-height: 1.1;
    color: var(--forest);
}

.outline-text-dark {
    color: transparent;
    -webkit-text-stroke: 1px var(--forest);
}

.question-box {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    padding-left: 2rem;
    border-left: 4px solid var(--lime);
    margin-bottom: 2rem;
}

.pain-footer {
    font-size: 1.1rem;
    font-weight: 600;
}

.highlight-text {
    background: var(--lime);
    padding: 0 8px;
    color: var(--forest);
}

/* --- Checklist Column --- */
.pain-checklist {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checklist-item {
    background: white;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.checklist-item:hover {
    transform: translateX(10px);
    border-color: var(--lime);
}
.pain-point{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.icon-error {
    font-size: 1.5rem;
    color: #ef4444; /* Red for the "X" status */
}

.item-text h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--forest);
}

.item-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Money Status Card */
.status-card {
    background: var(--forest);
    color: white;
    padding: 2rem;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.icon-money {
    font-size: 3rem;
    color: var(--lime);
    margin-bottom: 1rem;
}

.status-card p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #cbd5e1;
}

/* Responsive */
@media (max-width: 1024px) {
    .pain-flex { flex-direction: column; gap: 4rem; }
    .pain-title { font-size: 2.5rem; }
}



/* =======================
    Reality Section
========================== */

.headline-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3.5rem;
}
.headline-center h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 900;
    color: var(--forest);
    line-height: 1.1;
    margin-bottom: 10px;
}
.headline-center p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.headline-center .brand-eyebrow {
    justify-content: center;
}

.reality-section {
    padding: 3rem 0;
    background-color: #ffffff;
}

.reality-flex {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

/* --- Stats Grid (Left) --- */
.stats-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: #f1f5f9;
    border-radius: 20px;
    transition: var(--transition);
}

.stat-box:hover {
    background: #e2e8f0;
    transform: scale(1.02);
}

.highlight-stat {
    background: var(--forest);
    color: white;
}

.highlight-stat .stat-icon-wrapper {
    background: var(--lime);
    color: var(--forest);
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--forest);
    color: var(--lime);
    border-radius: 15px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
}

.stat-content h3 {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-content h3 small {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.7;
}

.stat-content p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.highlight-stat .stat-content p {
    color: #cbd5e1;
}

/* --- Narrative (Right) --- */
.reality-narrative {
    flex: 1.2;
}

.narrative-img-box {
    position: relative;
    margin-bottom: 2.5rem;
}

.main-reality-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.img-overlay-card {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--lime);
    padding: 1.5rem;
    border-radius: 20px;
    max-width: 250px;
    display: flex;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.img-overlay-card i {
    font-size: 1.5rem;
    color: var(--forest);
}

.img-overlay-card p {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--forest);
    line-height: 1.3;
}

.narrative-text {
    font-size: 1.05rem;
    /* font-weight: 600; */
    line-height: 1.7;
    color: var(--text-muted);
}

.narrative-text p {
    margin-bottom: 1.5rem;
}

.emphasis {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--forest);
    border-top: 2px solid #e2e8f0;
    padding-top: 1.5rem;
}

.emphasis span {
    color: var(--lime);
    background: var(--forest);
    padding: 2px 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .reality-flex { flex-direction: column; }
    .stat-content h3 { font-size: 1.8rem; }
}
@media (max-width: 500px){
.stat-box {
    padding: 1rem;
}
.stat-content h3 {
    font-size: 1.5rem;
}
.stat-content p {
    font-size: 0.8rem;
}
}




/* =======================
    Journey Section
========================== */
.journey-section {
    padding: 3rem 0;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    position: relative;
}

/* --- Vertical Timeline --- */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* The vertical line in the middle */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #e2e8f0;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    width: 100px;
    height: 100px;
    background: white;
    border: 4px solid var(--forest);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 1.25rem;
    z-index: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.timeline-content {
    width: 42%;
    background: white;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--lime);
}

/* Alternate items left and right */
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    font-size: 2rem;
    color: var(--lime);
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--forest);
    font-weight: 800;
}

.timeline-content p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

/* Highlighted middle card (The Discovery) */
.highlight-timeline {
    background: var(--forest);
    color: white;
}

.highlight-timeline h3 { color: white; }
.highlight-timeline p { color: #cbd5e1; }
.highlight-timeline .timeline-icon { color: var(--lime); }

/* Proof Pills */
.social-proof {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.proof-pill {
    background: var(--lime);
    color: var(--forest);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before { left: 20px; }
    .timeline-year { width: 60px; height: 60px; left: 20px; font-size: 0.9rem; }
    .timeline-item { flex-direction: column; align-items: flex-start; padding-left: 60px; }
    .timeline-content { width: 100%; margin-top: 1rem; }
    .timeline-item:nth-child(even) { flex-direction: column; }
}
@media (max-width: 500px){
    .timeline-content { padding: 1.2rem; }
    .timeline-content h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    
}
.timeline-content p {
    font-size: 0.86rem;
}
.timeline-item {
    margin-bottom: 2rem;
}
.journey-section {
    padding: 2rem 0;
}
}


/* =======================
    Bridge Section
========================== */

.bridge-section {
    padding: 3rem 0;
    background-color: var(--forest);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Background spotlight effect */
.bridge-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(190, 242, 100, 0.08) 0%, rgba(22, 48, 32, 0) 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.bridge-container {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.bridge-visual {
    flex: 1;
}

.spotlight-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    position: relative;
}

.bridge-sparkle {
    font-size: 3rem;
    color: var(--lime);
    position: absolute;
    top: -20px;
    left: -20px;
}

.bridge-title {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.bridge-main-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #cbd5e1;
}

/* --- Checklist Area --- */
.bridge-checklist {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bridge-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.check-icon {
    font-size: 1.75rem;
    color: var(--lime);
}

.bridge-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: #e2e8f0;
}

.bridge-item strong {
    color: var(--lime);
}

.bridge-conclusion {
    margin-top: 1rem;
}

.bridge-conclusion p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.graveyard-box {
    background: var(--lime);
    color: var(--forest);
    padding: 1.5rem 2rem;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 4px;
    display: inline-block;
    transition: var(--transition);
}

.graveyard-box:hover {
    transform: skewX(-5deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .bridge-container {
        flex-direction: column;
    }

    .bridge-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 500px) {
    .bridge-title {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }

    .spotlight-box {
        padding: 1.9rem;
    }
    .bridge-main-text {
    font-size: 1rem;
}
}

/* =======================
    Curriculumn Section
========================== */
.curriculum-section {
    padding: 3rem 0;
    background-color: #fdfdfd;
}


/* --- Bento Grid Layout --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.2rem;
    height: 480px;
}

.bento-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--forest);
    transition: var(--transition);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5; /* Darkens image to make text readable */
    transition: var(--transition);
}

.bento-item:hover img {
    opacity: 0.3;
    transform: scale(1.05);
}

/* Specific Box Sizing */
.box-large { grid-row: span 2; }
.box-wide { grid-column: span 2; }

/* Overlay Content */
.bento-overlay {
    position: absolute;
    inset: 0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(22, 48, 32, 0.9) 0%, rgba(22, 48, 32, 0) 60%);
}

.highlight-overlay {
    background: linear-gradient(to top, rgba(190, 242, 100, 0.95) 0%, rgba(190, 242, 100, 0.4) 100%);
    color: var(--forest);
}

.bento-icon {
    width: 50px;
    height: 50px;
    background: var(--lime);
    color: var(--forest);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.highlight-overlay .bento-icon {
    background: var(--forest);
    color: var(--lime);
}

.bento-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.highlight-overlay h3 { color: var(--forest); }

.bento-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.highlight-overlay p { color: var(--forest); font-weight: 600; }

/* Responsive Grid */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    .box-large, .box-wide { grid-column: span 1; grid-row: span 1; }
    .bento-item { height: 350px; }
}



/* =======================
    Method Section
========================== */
.method-section {
    padding: 2rem 0;
    background-color: #ffffff;
    border-bottom: 1px solid #edf2f7;
    overflow-x: unset;
    
}
@media (max-width: 768px) {
   .method-section {
    overflow-x: hidden !important; /* Prevents any accidental horizontal scroll */
} 
}

/* The Grid System: Responsive by Default */
.method-grid {
    display: grid;
    /* minmax(0, 1fr) prevents content from pushing the grid wider than the screen */
    grid-template-columns: minmax(0, 1fr); 
    gap: 2rem;
    align-items: start;
    padding: 2rem 1rem; /* Side padding keeps content off screen edges on mobile */
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}
.method-grid:last-of-type {
    border-bottom: none; /* No border on last section */
}

@media (min-width: 1024px) {
    .method-grid {
        grid-template-columns: 1fr 1.5fr; /* Side-by-side on desktop */
        gap: 5rem;
    }
}

.method-sidebar {
    position: relative;
    width: 100%; /* Ensures it stays within grid bounds */
}

@media (min-width: 1024px) {
    .method-sidebar {
        position: sticky;
        top: 100px;
        z-index: 10;
    }
}

.method-header-box {
    background: var(--forest);
    padding: 2rem; /* Reduced for mobile scaling */
    color: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(22, 48, 32, 0.1);
    width: 100%;
    max-width: 100%; /* Prevents shooting off screen */
}

@media (min-width: 1024px) {
    .method-header-box {
        padding: 3rem;
        border-radius: 0 30px 30px 0;
    }
    /* Fixed hover to prevent layout shift */
    .method-header-box:hover {
        transform: translateX(8px);
        border-left: 6px solid var(--lime);
    }
}

.method-number {
    font-size: 0.9rem;
    font-weight: 800;
    background: var(--lime);
    color: var(--forest);
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.method-type {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

/* Typography Enhancements for "Mature" look */
.method-title {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

@media (min-width: 768px) {
    .method-title { font-size: 2.5rem; }
}

/* --- RIGHT SIDE CONTENT CARDS --- */
.success-story-card {
    background: #f8fafc;
    border: 2px dashed #e2e8f0; /* Higher contrast than before */
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .success-story-card { padding: 1.5rem; }
}

.story-tag {
    background: var(--forest);
    color: var(--lime);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #334155;
}
.story-examples{
    padding-top: 0.5rem;
    color: var(--forest);
}


/* Pros/Cons Grid */
.analysis-grid {
    display: grid;
    grid-template-columns: 1fr; /* Force stack on mobile */
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .analysis-grid { grid-template-columns: 1fr 1fr; }
    
}
@media (max-width: 500px) {
    .story-text, .story-examples {
    font-size: 0.9rem;
}
.transformation-grid{
   grid-template-columns: 1fr !important;

}
}

.analysis-column h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.pros h4 { color: #16a34a; }
.cons h4 { color: #dc2626; }

.analysis-column ul { list-style: none; }
.analysis-column li {
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #64748b;
}

/* Strategy & Task Boxes */
.strategy-box {
    background: var(--lime);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 15px;
}

.strategy-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.transformation-task {
    padding: 2rem;
    border: 2px solid #f1f5f9;
    border-radius: 20px;
}

.task-input {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.task-input:focus {
    outline: none;
    border-color: var(--forest);
    box-shadow: 0 0 0 4px rgba(22, 48, 32, 0.05);
}


/* Decor for Desktops only */
@media (min-width: 1024px) {
    .method-grid:nth-of-type(even) { background-color: #fcfdfd; }
    
    .method-grid::before {
        content: '';
        position: absolute;
        left: 45px;
        top: 0;
        bottom: 0;
        width: 1px;
        background: repeating-linear-gradient(to bottom, transparent, transparent 5px, #e2e8f0 5px, #e2e8f0 10px);
        z-index: -1;
    }
}







/* =================
Revelation section
================= */


.revelation-template-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}


.template-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header Row Elements */
.header-row {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
}

.main-circle {
    width: 80px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: white;
    z-index: 2;
}

.circle-red { background-color: #c62828; }
.circle-lime { background-color: var(--forest); } /* Your brand lime */

.title-bg {
    background-color: #f4f4f4;
    padding: 15px 40px 15px 60px;
    margin-left: -40px;
    border-radius: 0 50px 50px 0;
    width: 100%;
}

.title-bg h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--slate);
}

/* Timeline Body */
.timeline-body {
    position: relative;
    padding-left: 40px; /* Aligns with center of circle */
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: -20px;
    bottom: 0;
    width: 3px;
}

.line-red { background-color: #c62828; }
.line-lime { background-color: var(--forest); }

.timeline-entry {
    position: relative;
    margin-bottom: 35px;
    padding-left: 45px;
}

.entry-node {
    position: absolute;
    left: -14px; /* Centers node on the line */
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 2;
}

.node-red { background-color: #c62828; }
.node-lime { background-color: var(--forest); }

.entry-text h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--slate);
}

.entry-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .template-grid { grid-template-columns: 1fr; gap: 80px; }
}




/* =================
Bonus Strategy section
================= */
.bonus-strategic-section {
    background-color: #0b1c14; /* Deep Forest */
    padding: 4rem 0;
    color: white;
}

.brand-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.brand-tag .dot {
    width: 12px;
    height: 12px;
    background: var(--lime);
    border-radius: 50%;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    
}
@media (max-width: 768px) {
    .section-title {
    font-size: 2rem;
    
}
}
.section-subtitle{
    text-align: center;
}

.strategic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 2.5rem;
}

.strategic-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 20px;
    transition: all 0.3s ease;
}

.highlight-card {
    background: var(--lime);
    color: var(--forest);
}

.icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.strategic-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.strategic-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    /* color: #cbd5e1; */
}



/* =====================
Compact E-book  section
======================== */

.ebook-inside-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.inside-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.badge-forest {
    background: var(--forest);
    color: var(--lime);
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.inside-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 10px 0;
    color: var(--forest);
}
.inside-header P{
    color: var(--text-muted);
}

/* Horizontal Grid */
.compact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Column layout for desktop */
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.compact-card {
    display: flex; /* Makes the card horizontal */
    background: #fcfdfd;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.compact-card:hover {
    border-color: var(--lime);
    box-shadow: 0 10px 25px rgba(22, 48, 32, 0.05);
    transform: translateY(-3px);
}

.card-img {
    width: 140px; /* Fixed width for the image */
    flex-shrink: 0;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(20%) grayscale(20%); /* Mature aesthetic */
}

.card-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 900;
    color: #64748b;
    margin-bottom: 8px;
}

.card-info h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--forest);
    margin-bottom: 8px;
    line-height: 1.2;
}

.card-info p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .compact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
    .compact-card { flex-direction: column; } /* Stacks on very small phones */
    .card-img { width: 100%; height: 160px; }
}


/* ======================
Struggle Section
====================== */
.struggle-cards-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}


.struggle-intro{
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
}


.struggle-intro h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 900;
    color: var(--forest);
    line-height: 1.1;
    margin-bottom: 10px;
}

/* Grid & Cards */
.struggle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.struggle-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(11, 28, 20, 0.03);
    transition: all 0.4s ease;
}

.struggle-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(11, 28, 20, 0.08);
    border-color: var(--lime);
}

/* Image Header */
.card-visual {
    position: relative;
    height: 150px;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(1);
}

.struggle-card:hover .card-visual img {
    transform: scale(1.1);
}

.glass-number {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(11, 28, 20, 0.7); /* Forest with opacity */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--lime);
    padding: 8px 15px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.1rem;
    border: 1px solid rgba(190, 242, 100, 0.2);
}

/* Card Content */
.card-body {
    padding: 15px;
}

.card-body h4 {
    font-size: 1rem;
    font-weight: 900;
    color: var(--forest);
    margin-bottom: 7px;
}

.card-body p {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Result Bar */
.result-box {
    background: #f7fee7; /* Light lime tint */
    border-left: 3px solid var(--lime);
    padding: 10px;
    border-radius: 4px 10px 10px 4px;
}

.result-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--forest);
    opacity: 0.6;
    letter-spacing: 1px;
}

.result-text {
    font-size: 0.9rem;
    color: #b91c1c; /* Sharp red for the negative result */
    font-weight: 600;
}


/* ===================
Solution section
===================== */

.solution-grid-section {
    padding: 3rem 0;
    background-color: #ffffff;
}

.solution-badge {
    background: var(--forest);
    color: var(--lime);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
}
.solution-header h2{
    margin-top: 1rem !important;
}



/* GMU Solution System - Namespaced */
.gmu-solution-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gmu-card {
    background: #ffffff;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(11, 28, 20, 0.04);
}

.gmu-card .gmu-head {
    background: var(--forest);
    padding: 35px;
    color: white;
}

.gmu-num-badge {
    background: var(--lime);
    color: var(--forest);
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-weight: 900;
    font-size: 1.1rem;
}

.gmu-head-flex {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.gmu-head-flex h3 {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0;
}

.gmu-head-sub {
    color: var(--lime);
    font-weight: 700;
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

.gmu-card .gmu-body {
    padding: 35px;
}

.gmu-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.gmu-feature-list li {
    display: flex;
    gap: 15px;
}

.gmu-feature-icon {
    font-size: 1.8rem;
    color: var(--forest);
    line-height: 1;
}

.gmu-feature-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--forest);
    margin-bottom: 6px;
    font-weight: 800;
}

.gmu-feature-text p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Results Section Styling */
.gmu-results-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    background-color: #f7fee7;
    border: 1px solid #ecfccb;
}

.gmu-res-item strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--forest);
}

.gmu-res-item span {
    font-size: 0.7rem;
    font-weight: 800;
    color: #4d7c0f;
    text-transform: uppercase;
}

/* Guarantee Alert Box */
.gmu-guarantee-box {
    margin-top: 25px;
    background: #fffbeb;
    border: 2px dashed #f59e0b;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    gap: 15px;
}

.gmu-guarantee-box i { font-size: 2rem; color: #d97706; }
.gmu-guarantee-text h5 { margin: 0 0 5px 0; font-weight: 900; color: #92400e; }
.gmu-guarantee-text p { font-size: 0.9rem; color: #b45309; margin: 0; }

.gmu-card .gmu-footer {
    background: #f8fafc;
    padding: 25px 40px;
    border-top: 1px solid #e2e8f0;
}

.gmu-val-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gmu-val-label { font-size: 0.8rem; font-weight: 900; color: #64748b; }
.gmu-val-price { font-size: 1.5rem; font-weight: 900; color: var(--forest); }

/* Total Transformation Styling */
.gmu-total-box {
    margin-top: 30px;
    background: var(--forest);
    border-radius: 30px;
    padding: 30px;
    color: white;
}

.gmu-total-list { margin: 30px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.gmu-total-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.gmu-total-item span { font-weight: 700; color: #cbd5e1; }
.gmu-total-item strong { font-weight: 900; color: var(--lime); }

.gmu-final-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
}
.gmu-final-row h2 { font-size: 2.5rem; font-weight: 900; color: var(--lime); margin: 0; }

@media (max-width: 768px) {
     .gmu-results-bar { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
     .gmu-feature-list{
        grid-template-columns: repeat(1, 1fr);
     }
}




/* =====================
FINAL OFFER STYLING
======================== */
.gmu-final-offer-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.warning-badge {
    background: #fee2e2;
    color: #991b1b;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

/* Comparison Layout */
.comparison-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
}

.offer-side {
    flex: 1;
    max-width: 400px;
    padding: 30px 30px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}

.side-missed {
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.side-active {
    box-shadow: 0 30px 60px rgba(11, 28, 20, 0.3);
    z-index: 2;
    transform: scale(1.05); /* Makes today's offer stand out */
}

.active-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--lime);
    color: var(--forest);
    font-weight: 900;
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 4px;
}

.date-label {
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.price-strike { font-size: 2.2rem; text-decoration: line-through; margin: 10px 0; font-weight: 900; }
.price-main { font-size: 3.5rem; margin: 10px 0; font-weight: 900; }

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.list-check li i { color: var(--lime); }
.side-missed li i { color: #cbd5e1; }

/* Value Gap Middle Piece */
.value-gap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    z-index: 3;
}

.gap-line { width: 2px; height: 100px; background: #e2e8f0; }
.gap-circle {
    background: #ffffff;
    border: 2px solid var(--forest);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.gap-circle span { font-size: 0.55rem; font-weight: 900; color: #64748b; }
.gap-circle strong { font-size: 1rem; font-weight: 900; color: var(--forest); }

/* ROI Box */
.roi-summary-box {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 2px solid var(--forest);
    border-radius: 30px;
    overflow: hidden;
    text-align: center;
}

.roi-header { background: #f8fafc; padding: 20px; border-bottom: 1px solid #e2e8f0; }
.roi-header h4 { margin: 0; font-weight: 900; color: var(--forest); }

.roi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 40px;
}

.roi-item strong { display: block; font-size: 1.5rem; color: var(--forest); font-weight: 900; }
.roi-item span { font-size: 0.85rem; color: #64748b; font-weight: 700; }

.roi-footer { padding: 0 20px 20px; }
.btn-cta-large {
    display: inline-block;
    background: var(--lime);
    color: var(--forest);
    padding: 22px 30px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1rem;
    text-decoration: none;
    margin-top: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(130, 176, 58, 0.3);
}

.btn-cta-large:hover { transform: scale(1.05); box-shadow: 0 15px 30px rgba(130, 176, 58, 0.5); }


@media (max-width: 991px) {
    .comparison-container { flex-direction: column; gap: 30px; }
    .value-gap { display: none; }
    .roi-grid { grid-template-columns: 1fr; gap: 20px; }
    .btn-cta-large{
        font-size: 0.9rem;
         padding: 12px 20px;
    }
}






/* =============
last Chance
============ */

/* --- GRAPHIC CROSSROAD STYLING --- */
.gmu-crossroad-section {
    padding: 3rem 0;
    background: #ffffff;
}

/* Header Refinement */
.badge-forest {
    background: #f1f8e9;
    color: #82b03a;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 15px;
}


/* Card Architecture */
.crossroad-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px auto;
    align-items: stretch;
    max-width: 1100px;
    
}

.path-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.path-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.path-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.path-card:hover .path-image img {
    transform: scale(1.08);
}

/* Path Specifics */
.path-negative {
    background: #fafafa;
    filter: grayscale(1);
    opacity: 0.8;
}

.path-negative:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-8px);
}

.path-positive {
    background: #0b1c14;
    box-shadow: 0 30px 60px rgba(11, 28, 20, 0.15);
}

.path-positive:hover {
    transform: translateY(-10px) scale(1.01);
}

/* Labels & Tags */
.path-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.label-red { background: #ef4444; color: white; }
.label-lime { background: #82b03a; color: #0b1c14; }

/* List Polishing */
.path-content { padding: 20px; flex-grow: 1; }
.path-content h4 { font-size: 1.2rem; font-weight: 900; margin-bottom: 10px; }
.path-content .text-white{
    color: white;
}

.path-list { list-style: none; padding: 0; margin: 0 0 30px; }
.path-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.4;
}

.list-lime li { color: #cbd5e1; }
.list-lime i { color: #82b03a; font-size: 1.1rem; }

.path-cost { padding-top: 20px; border-top: 1px solid #f1f5f9; }
.path-cost.border-lime { border-color: rgba(130, 176, 58, 0.2) !important; }

.cost-tag { display: block; font-size: 0.65rem; font-weight: 800; color: #94a3b8; letter-spacing: 1px; margin-bottom: 4px; }
.cost-value { font-size: 1.25rem; font-weight: 900; color: #0b1c14; }

/* FINAL CONVERSION BOX */
.final-timer-box {
    background: #f8fafc;
    border-radius: 35px;
    padding: 50px;
    border: 1px dotted var(--forest);
}

.timer-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.timer-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 15px;
}

.countdown-display { display: flex; align-items: center; gap: 15px; }
.time-block { font-size: 2.2rem; font-weight: 950; color: #0b1c14; text-align: center; line-height: 1; }
.time-block span { display: block; font-size: 0.6rem; color: #94a3b8; margin-top: 5px; }
.time-sep { font-size: 1.5rem; font-weight: 900; color: #cbd5e1; padding-bottom: 15px; }

/* --- VERIFIED FOOTER / CONVERSION BOX --- */
.final-timer-box {
    background: #fcfdfe; /* Slightly brighter for contrast */
    border-radius: 32px;
    padding: 45px;
    border: 1px solid #edf2f7;
    margin-top: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

.timer-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: center;
}

/* Timer Styling */
.timer-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.7rem;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.timer-meta i {
    color: #ef4444;
    font-size: 1rem;
}

.countdown-display {
    display: flex;
    align-items: center;
    gap: 12px;
}

.time-block {
    text-align: center;
    min-width: 60px;
}

.time-block .num {
    display: block;
    font-size: 2.4rem;
    font-weight: 950;
    color: #0b1c14;
    line-height: 1;
    letter-spacing: -1px;
}

.time-block .label {
    display: block;
    font-size: 0.6rem;
    font-weight: 800;
    color: #94a3b8;
    margin-top: 8px;
}

.time-sep {
    font-size: 1.5rem;
    font-weight: 900;
    color: #cbd5e1;
    margin-top: -15px; /* Aligns dots with center of numbers */
}

/* Action Styling */
.price-warning {
    text-align: center;
    color: #ef4444;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.price-warning strong {
    font-weight: 900;
    text-decoration: underline;
}

.gmu-btn-graphic {
    background: #82b03a;
    color: #0b1c14;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    border-radius: 18px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-bottom: 4px solid #6b922f; /* Design depth */
}

.gmu-btn-graphic:hover {
    transform: translateY(-3px);
    background: #8cc33d;
    border-bottom-width: 6px;
}

.gmu-btn-graphic:active {
    transform: translateY(1px);
    border-bottom-width: 2px;
}

.main-txt {
    font-size: 1.1rem;
    font-weight: 950;
    letter-spacing: -0.2px;
}

.sub-txt {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.85;
    margin-top: 4px;
}

.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-item i {
    color: #82b03a;
}

/* --- MOBILE VERIFICATION --- */
@media (max-width: 991px) {
    .final-timer-box {
        padding: 40px 20px;
        margin: 40px 15px 0;
    }
    
    .timer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timer-column, .countdown-display {
        justify-content: center;
    }

    .time-block .num {
        font-size: 2rem;
    }
}
/* SUPER RESPONSIVE FIXES */
@media (max-width: 991px) {
    .crossroad-flex { grid-template-columns: 1fr; gap: 20px; }
    .timer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .timer-meta, .countdown-display { justify-content: center; }
    .section-h2 { font-size: 1.9rem; }
    .final-timer-box { padding: 40px 20px; }
}


/* --- SECTION WRAPPER --- */
.gmu-proof-section {
    padding: 3rem 0;
    color: white;
    background-color: #0b1c14; /* var(--forest) */
}


        /* HEADER */
        .gmu-proof-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .gmu-badge-lime {
            background: var(--lime);
            color: var(--forest);
            display: inline-block;
            padding: 6px 16px;
            border-radius: 50px;
            font-weight: 900;
            font-size: 0.75rem;
            letter-spacing: 1px;
            margin-bottom: 7px;
        }

        .gmu-title-white {
            font-size: 2.8rem;
            font-weight: 900;
            margin-bottom: 5px;
        }

        .gmu-subtitle-light {
            color: #94a3b8;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* CAROUSEL */
        .gmu-carousel-container {
            position: relative;
            padding: 0 40px;
            margin-bottom: 1rem;
        }

        .gmu-testimonial-slider,
        .gmu-carousel-wrapper {
            display: flex;
            gap: 25px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            padding: 40px 0;
            align-items: center;
            scroll-snap-type: x mandatory;
        }

        .gmu-testimonial-slider::-webkit-scrollbar,
        .gmu-carousel-wrapper::-webkit-scrollbar {
            display: none;
        }

        /* TESTI CARD */
        .gmu-testi-card {
            min-width: calc(33.333% - 20px);
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 40px;
            border-radius: 24px;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .gmu-testi-card.gmu-active {
            border-color: var(--lime);
            background: rgba(255,255,255,0.07);
            transform: translateY(-10px);
        }

        .gmu-quote-mark {
            font-size: 4rem;
            color: var(--lime);
            opacity: 0.4;
            line-height: 0;
            margin-bottom: 20px;
            font-family: serif;
        }

        .gmu-testi-text {
            font-size: 1.05rem;
            line-height: 1.7;
            font-style: italic;
            color: #e2e8f0;
            margin-bottom: 30px;
        }

        .gmu-testi-author {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: auto;
        }

        .gmu-avatar {
            width: 44px;
            height: 44px;
            background: var(--lime);
            color: var(--forest);
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-weight: 900;
        }

        .gmu-author-meta strong {
            display: block;
            font-size: 0.95rem;
        }

        .gmu-author-meta span {
            font-size: 0.75rem;
            font-weight: 700;
            color: #94a3b8;
        }

        /* NAV */
        .gmu-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            background: var(--lime);
            color: var(--forest);
            border: none;
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-size: 1.4rem;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 4px 12px rgba(0,0,0,0.4);
        }

        .gmu-nav-btn.prev { left: -10px; }
        .gmu-nav-btn.next { right: -10px; }

        /* STATS */
        .gmu-stats-container {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 30px;
            background: rgba(0,0,0,0.25);
            border: 1px solid rgba(130,176,58,0.25);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            margin-bottom: 1.9rem;
        }

        .gmu-stat-item strong {
            font-size: 2.5rem;
            font-weight: 900;
        }

        .gmu-stat-item p {
            font-size: 0.75rem;
            text-transform: uppercase;
            font-weight: 700;
            color: #94a3b8;
        }

        /* WHATSAPP */
        .gmu-whatsapp-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .gmu-whatsapp-header h3 {
            font-size: 1.8rem;
            font-weight: 900;
        }

        .gmu-ss {
            height: clamp(360px, 65vh, 540px);
            width: auto;
            max-width: 85vw;
            border-radius: 16px;
            border: 2px solid rgba(190, 242, 100, 0.35);
            background: #0b1c14;
            object-fit: contain;
            box-shadow: 0 18px 40px rgba(0,0,0,0.45);
            scroll-snap-align: center;
            flex-shrink: 0;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .gmu-testi-card { min-width: 50%; }
        }

        @media (max-width: 768px) {
            .gmu-carousel-container { padding: 0; }
            .gmu-nav-btn { display: none; }
            .gmu-testi-card { min-width: 85%; }
            .gmu-stats-container { grid-template-columns: 1fr; }
            .gmu-ss {
                height: clamp(320px, 70vh, 460px);
                max-width: 90vw;
            }
        }



/* --- Mature Checkout Styles --- */
.checkout-portal {
    background-color: #ffffff;
    padding: 100px 0;
    color: #1e293b;
    font-family: 'Inter', -apple-system, sans-serif;
}

.checkout-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.checkout-header {
    text-align: center;
    margin-bottom: 70px;
}

.checkout-tag {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #82b03a;
    text-transform: uppercase;
    border: 1.5px solid #82b03a;
    padding: 4px 12px;
    border-radius: 4px;
}

.checkout-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #0b1c14;
    margin: 20px 0 10px;
}

.checkout-lead {
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Layout Grid */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Process Cards */
.process-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 25px;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-indicator {
    width: 40px;
    height: 40px;
    background: #0b1c14;
    color: #fff;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-weight: 900;
    flex-shrink: 0;
}

.step-body h4 { font-size: 1.3rem; font-weight: 800; color: #0b1c14; margin-bottom: 8px; }
.step-body p { color: #64748b; line-height: 1.6; }

/* Bank Info Table-Style */
.bank-details-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 25px;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
}

.bank-row:last-child { border-bottom: none; }

.bank-label { color: #94a3b8; font-weight: 600; font-size: 0.9rem; }
.bank-value { color: #0b1c14; font-weight: 800; }
.bank-value.highlight { color: #82b03a; font-size: 1.2rem; }

.bank-copy-action {
    background: #f1f5f9;
    border: none;
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.2s;
}

.bank-copy-action:hover { background: #82b03a; color: white; }

/* WhatsApp Anchor */
.verification-anchor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 20px 30px;
    border-radius: 12px;
    text-decoration: none;
    color: #1e293b;
    transition: 0.3s;
}

.verification-anchor:hover { border-color: #25d366; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.v-btn-content { display: flex; align-items: center; gap: 15px; }
.v-btn-content i { font-size: 2rem; color: #25d366; }
.v-btn-text strong { display: block; font-size: 1.1rem; }
.v-btn-text span { color: #64748b; font-weight: 600; }

/* Sidebar Summary */
.summary-card {
    background: #0b1c14;
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.summary-card h5 { margin-bottom: 25px; font-size: 1.2rem; opacity: 0.8; }

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 0.95rem;
}

.text-red { color: #f87171; }

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.summary-total strong { font-size: 1.8rem; color: #82b03a; }

.summary-benefits { margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.benefit { display: flex; gap: 10px; font-size: 0.85rem; margin-bottom: 10px; color: #cbd5e1; }
.benefit i { color: #82b03a; }

/* Assurance */
.assurance-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 0 10px;
}

.assurance-item i { font-size: 1.5rem; color: #64748b; }
.assurance-item strong { display: block; font-size: 0.9rem; }
.assurance-item p { font-size: 0.8rem; color: #94a3b8; margin: 0; }

@media (max-width: 992px) {
    .checkout-grid { grid-template-columns: 1fr; }
}

/* --- Lively Banner Section --- */
.lively-banner-section {
    padding: 80px 0;
    background:
        radial-gradient(700px 320px at 15% -10%, rgba(190, 242, 100, 0.35), transparent 60%),
        radial-gradient(600px 320px at 90% 120%, rgba(190, 242, 100, 0.2), transparent 65%),
        linear-gradient(135deg, #0b1c14 0%, #163020 55%, #1f3b2a 100%);
}

.lc-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.lively-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(190, 242, 100, 0.45);
    background: linear-gradient(140deg, rgba(11, 28, 20, 0.98) 0%, rgba(22, 48, 32, 0.98) 70%);
    box-shadow: 0 30px 70px rgba(11, 28, 20, 0.35);
}

.lively-glass-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    pointer-events: none;
}

.lively-orb {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(190, 242, 100, 0.7), rgba(190, 242, 100, 0) 60%);
    opacity: 0.9;
    filter: blur(4px);
    pointer-events: none;
}

.lively-orb-1 { top: -90px; left: -70px; }
.lively-orb-2 {
    bottom: -110px;
    right: -70px;
    background: radial-gradient(circle at 40% 40%, rgba(190, 242, 100, 0.5), rgba(190, 242, 100, 0) 65%);
}

.lively-content {
    position: relative;
    z-index: 2;
    padding: 50px 45px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    color: #ffffff;
}

.lively-column-text { display: flex; flex-direction: column; gap: 12px; }
.lively-column-price { display: flex; justify-content: center; }
.lively-column-action { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }

.lively-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lime);
    color: var(--forest);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 0.7rem;
    width: fit-content;
}

.lively-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--forest);
    box-shadow: 0 0 0 0 rgba(22, 48, 32, 0.6);
    animation: livelyDot 2s infinite;
}

@keyframes livelyDot {
    0% { box-shadow: 0 0 0 0 rgba(22, 48, 32, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(22, 48, 32, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 48, 32, 0); }
}

.lively-h2 {
    font-size: 2.6rem;
    line-height: 1.1;
    font-weight: 900;
    margin: 0;
}

.lively-p {
    color: #e2e8f0;
    font-size: 1rem;
    max-width: 420px;
}

.text-forest { color: var(--forest); }
.text-lime-glow {
    color: var(--lime);
    text-shadow: 0 0 18px rgba(190, 242, 100, 0.6);
}

.lively-banner-section .text-forest { color: var(--lime); }

.lively-price-box {
    position: relative;
    background: #ffffff;
    color: var(--forest);
    padding: 26px 28px;
    border-radius: 20px;
    min-width: 230px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
    text-align: center;
}

.lively-save-tag {
    position: absolute;
    top: -12px;
    left: 18px;
    background: var(--lime);
    color: var(--forest);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.lively-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lively-old {
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 700;
    font-size: 1rem;
    flex: 1 1 100%;
}

.lively-new {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--forest);
}

.lively-curr { font-size: 1.5rem; font-weight: 900; margin-right: 2px; }

.lively-timer {
    border: 1px solid rgba(190, 242, 100, 0.45);
    background: rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
    border-radius: 14px;
    backdrop-filter: blur(6px);
}

.lively-timer-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #cbd5e1;
    margin-bottom: 6px;
}

.lively-digits {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--lime);
    letter-spacing: 1px;
}

.lively-btn-pulse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    background: var(--lime);
    color: var(--forest);
    font-weight: 900;
    padding: 16px 24px;
    border-radius: 14px;
    box-shadow: 0 0 0 0 rgba(190, 242, 100, 0.5);
    animation: livelyPulse 2.6s infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lively-btn-pulse:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(190, 242, 100, 0.35);
}

@keyframes livelyPulse {
    0% { box-shadow: 0 0 0 0 rgba(190, 242, 100, 0.5); }
    70% { box-shadow: 0 0 0 18px rgba(190, 242, 100, 0); }
    100% { box-shadow: 0 0 0 0 rgba(190, 242, 100, 0); }
}

.lively-trust {
    color: #cbd5e1;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 1024px) {
    .lively-content { grid-template-columns: 1fr; text-align: center; }
    .lively-column-price { justify-content: center; }
    .lively-column-action { align-items: center; }
    .lively-p { margin: 0 auto; }
}

@media (max-width: 640px) {
    .lively-content { padding: 36px 24px; }
    .lively-h2 { font-size: 2.1rem; }
    .lively-price-box { width: 100%; }
    .lively-btn-pulse { width: 100%; }
}

.footer-logo{
    display: inline-flex;
    align-items: center;
    height: 44px;
    width: auto;
    max-width: 180px;
}
.footer-logo img{
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}








/* --- High-Contrast Footer Styles --- */
.kikit-footer {
    background-color: #ffffff; /* Pure white for maximum clarity */
    padding: 100px 0 40px;
    
    color: #1e293b; /* Deep Slate - Never use light gray for body text */
}

.footer-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Newsletter - Solid & Sharp */
.kikit-newsletter-box {
    background: #0b1c14; /* Deep Forest */
    border-radius: 20px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    box-shadow: 0 20px 40px rgba(11, 28, 20, 0.15);
}

.news-content h3 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; color: #fff; }
.text-light { color: #cbd5e1; font-size: 1rem; max-width: 450px; }

.news-form { width: 100%; max-width: 400px; }
.news-label { font-size: 0.75rem; font-weight: 800; letter-spacing: 1px; color: #82b03a; margin-bottom: 12px; }

.news-input-group { display: flex; background: #fff; padding: 6px; border-radius: 12px; }
.news-input-group input { 
    flex: 1; 
    border: none; 
    padding: 12px 15px; 
    outline: none; 
    font-size: 0.95rem; 
    color: #0b1c14;
}

.news-btn { 
    background: #82b03a; 
    color: #0b1c14; 
    border: none; 
    padding: 0 25px; 
    border-radius: 8px; 
    font-weight: 800; 
    cursor: pointer;
    transition: 0.2s ease;
}

.news-btn:hover { background: #0b1c14; color: #fff; }
.news-privacy { font-size: 0.75rem; color: #94a3b8; margin-top: 10px; }
.news-privacy a { color: #fff; text-decoration: underline; }

/* Main Footer Grid */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 2px solid #f1f5f9; /* Stronger border */
}

.footer-logo { font-size: 1.8rem; font-weight: 900; margin-bottom: 20px; color: #0b1c14; }
.text-lime { color: #82b03a; }
.footer-mission { color: #475569; line-height: 1.7; margin-bottom: 30px; font-size: 1rem; }

.contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-weight: 700; color: #0b1c14; }
.contact-item i { color: #82b03a; font-size: 1.2rem; }

.footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.link-column h4 { font-size: 0.9rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; color: #0b1c14; }
.link-column a { display: block; text-decoration: none; color: #475569; margin-bottom: 15px; font-weight: 500; transition: 0.2s; }
.link-column a:hover { color: #82b03a; }

/* Disclaimers - Made Readable */
.footer-disclaimers { padding: 60px 0; border-bottom: 2px solid #f1f5f9; }
.disclaimer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.disclaimer-card p { font-size: 0.8rem; color: #64748b; line-height: 1.6; margin: 0; }
.disclaimer-card strong { color: #1e293b; }

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    font-weight: 700;
    font-size: 0.85rem;
    color: #94a3b8;
}

.bottom-right { display: flex; gap: 15px; color: #475569; }
.sep { opacity: 0.3; }

/* Mobile Optimization */
@media (max-width: 992px) {
    .kikit-newsletter-box { flex-direction: column; text-align: center; padding: 40px 25px; }
    .footer-main-grid { grid-template-columns: 1fr; gap: 50px; }
    .footer-links-grid { grid-template-columns: 1fr; gap: 30px; }
    .disclaimer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
}

/* --- Opt-in Gate Modal --- */
body.modal-lock {
    overflow: hidden;
}

.optin-gate {
    position: fixed;
    inset: 0;
    background: rgba(8, 20, 14, 0.86);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 4000;
}

.optin-gate.active {
    display: flex;
}

.optin-card {
    background: #ffffff;
    color: #0b1c14;
    border-radius: 18px;
    max-height: 80vh;
    padding: 30px;
    width: 100%;
    max-width: 560px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    position: relative;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    overflow-y: scroll;
}

.optin-card h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.optin-card p {
    color: #475569;
    margin-bottom: 22px;
}

.optin-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.optin-field label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0b1c14;
    margin-bottom: 8px;
}

.optin-field input,
.optin-field textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    background: #f8fafc;
    color: #0b1c14;
}

.optin-field input:focus,
.optin-field textarea:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 3px rgba(190, 242, 100, 0.35);
    background: #ffffff;
}

.optin-submit {
    justify-content: center;
}

.optin-privacy {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 14px;
}

.optin-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: var(--forest);
    font-size: 20px;
    cursor: pointer;
    transition: 0.2s ease;
}

.optin-close:hover {
    background: #e2e8f0;
}

.optin-success .optin-card {
    text-align: center;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #ecfccb;
    color: #365314;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.optin-success-btn {
    justify-content: center;
    width: 100%;
}

@media (max-width: 640px) {
    .optin-card {
        padding: 28px;
    }

    .optin-card h2 {
        font-size: 1.6rem;
    }
}

















