:root {
    --brand-green: #43b02a;
    --brand-dark: #0f172a;
    --text-main: #1f2937;
    --text-light: #4b5563;
    --bg-light: #f7f8fb;
    --white: #ffffff;
    --font-stack: 'Inter', sans-serif;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.18);
    --radius-md: 20px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-md);
}

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

.section {
    padding: 80px 0;
}

.bg-light {
    background: var(--bg-light);
}

.bg-green {
    background: linear-gradient(135deg, #43b02a, #43b02a);
    color: var(--white);
}

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

.section-tag {
    display: inline-block;
    background: rgba(67, 176, 42, 0.12);
    color: var(--brand-green);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--brand-dark);
    font-weight: 800;
}

.bg-green .section-title,
.bg-green .section-desc,
.bg-green p {
    color: var(--white);
}

.section-desc {
    max-width: 780px;
    text-align: left;
    margin:0 auto 50px !important;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: none;
}

.hero {
    background: linear-gradient(135deg, #0f172a, #1f2937);
    background-size: cover;
    background-position: center top;
    color: var(--white);
    padding: 180px 0 120px;
    text-align: center;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    margin: 0 auto;
    opacity: 0.9;
    color: var(--white);
    font-weight: 300;
}

.meta-info {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.overlap-section {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

.summary-box {
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border-top: 6px solid var(--brand-green);
}

.summary-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.summary-right {
    display: grid;
    gap: 20px;
}

.inline-title {
    margin: 20px 0 10px;
    color: var(--brand-dark);
}

.snapshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.snapshot-card {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}

.snapshot-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.snapshot-value {
    font-weight: 700;
    color: var(--brand-dark);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.problem-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid #e5e7eb;
    transition: 0.4s;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-green);
}

.problem-card i {
    font-size: 2rem;
    color: var(--brand-green);
    margin-bottom: 18px;
    display: block;
}

.problem-card h4 {
    margin-bottom: 10px;
    color: var(--brand-dark);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Challenge section enhancements */
.challenge-context {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-left: 5px solid var(--brand-green);
    border-radius: 16px;
    padding: 28px 36px;
    margin: 40px 0 36px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow-card);
}

.challenge-context-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(67, 176, 42, 0.1);
    border: 1px solid rgba(67, 176, 42, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.challenge-context-icon i {
    color: var(--brand-green);
    font-size: 1.1rem;
}

.challenge-context-body .context-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.challenge-context-body p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 1.65;
}

.problem-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.problem-icon-wrap i {
    font-size: 1.3rem !important;
    margin-bottom: 0 !important;
    display: block;
    color: inherit;
}

.icon-red   { background: rgba(239, 68,  68,  0.08); border: 1px solid rgba(239, 68,  68,  0.2);  color: #ef4444; }
.icon-amber { background: rgba(234, 179, 8,   0.08); border: 1px solid rgba(234, 179, 8,   0.2);  color: #ca8a04; }
.icon-blue  { background: rgba(59,  130, 246, 0.08); border: 1px solid rgba(59,  130, 246, 0.2);  color: #3b82f6; }
.icon-purple{ background: rgba(168, 85,  247, 0.08); border: 1px solid rgba(168, 85,  247, 0.2);  color: #a855f7; }
.icon-orange{ background: rgba(249, 115, 22,  0.08); border: 1px solid rgba(249, 115, 22,  0.2);  color: #f97316; }
.icon-teal  { background: rgba(20,  184, 166, 0.08); border: 1px solid rgba(20,  184, 166, 0.2);  color: #14b8a6; }

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.solution-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--brand-green);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.solution-card h3 {
	font-size: 1.25rem;
	margin-bottom: 0px;
}

.solution-card:hover {
    transform: translateY(-6px);
}

.sol-num {
    background: var(--brand-green);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.sol-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

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

.strategy-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--brand-green);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.strategy-card h3 {
    margin-bottom: 15px;
	font-size: 1.25rem;
}

.strategy-list {
    list-style: none;
}

.strategy-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-main);
}

.strategy-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--brand-green);
    margin-top: 1px;
}

.bg-green .strategy-list li {
    color: #ffffff;
}

.bg-green .strategy-list li::before {
    color: #ffffff;
}

.bg-green .strategy-list {
    list-style: disc;
    padding-left: 22px;
}

.bg-green .strategy-list li::before {
    content: none;
}

.architecture-note {
    background: var(--bg-light);
    border-left: 4px solid var(--brand-green);
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
}

/* Project Overview section */
.overview-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.overview-stats {
    padding: 40px 50px 36px;
    border-bottom: 1px solid #eee;
}

.overview-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.overview-stat-item {
    padding: 24px 30px;
    text-align: center;
    border-right: 1px solid #eee;
}

.overview-stat-item:last-child {
    border-right: none;
}

.overview-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(67, 176, 42, 0.1);
    border: 1px solid rgba(67, 176, 42, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.overview-stat-icon i {
    font-size: 1.5rem;
    color: var(--brand-green);
}

.overview-stat-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.overview-stat-value {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1.3;
}

.overview-highlights {
    padding: 22px 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    background: var(--bg-light);
}

.overview-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.overview-highlight-item i {
    color: var(--brand-green);
    font-size: 1rem;
    flex-shrink: 0;
}

.overview-highlight-item span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.architecture-image {
    margin-top: 30px;
}

.architecture-img {
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
}

.tech-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 120px;
}

.tech-item i {
    font-size: 2.4rem;
    color: var(--brand-green);
}

.tech-item span {
    font-weight: 600;
    font-size: 1rem;
    color: #555;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 35px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.12);
    padding: 26px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-align: center;
}

.metric-val {
    font-size: 2.2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
    color: #fff;
}

.metric-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.result-list {
    margin-top: 30px;
}

/* --- TESTIMONIAL --- */
.quote-box {
    background: var(--white);
    padding: 70px 50px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(255, 193, 7, 0.2);
    position: absolute;
    top: 30px;
    left: 30px;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #333;
    position: relative;
    z-index: 2;
}

.feedback-desc {
    max-width: 920px;
    margin: 20px auto 40px !important;
    text-align: start;
}

@media (max-width: 992px) {
    .summary-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .hero h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .snapshot-grid {
        grid-template-columns: 1fr;
    }
    .summary-box {
        padding: 30px;
    }
    .hero {
        padding: 150px 0 100px;
    }
}

@media only screen and (min-width: 992px) {
    .ebook-form-wrap {
        max-width: none;
    }
}
/* --- HERO DOWNLOAD BUTTON --- */
.cs-hero-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 14px 32px;
    background: #43b02a;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 20px rgba(67, 176, 42, 0.35);
}

.cs-hero-download-btn:hover {
    background: #2d8a17;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(67, 176, 42, 0.45);
}

.cs-hero-download-btn i {
    font-size: 0.9rem;
}

/* --- CTA BANNER --- */
.acg-cta-banner {
    background: var(--bg-light);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.acg-cta-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

.acg-cta-text {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.5;
    margin: 0;
}

.acg-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #43b02a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.acg-cta-btn:hover {
    background: #2d8a17;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(67, 176, 42, 0.45);
}

.acg-cta-logo {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.08;
    pointer-events: none;
}

.acg-cta-logo img {
    width: 220px;
    height: 220px;
    object-fit: contain;
}

/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 992px) {
    .problem-grid,
    .solutions-grid,
    .overview-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.25;
    }

    .hero p,
    .section-desc,
    .feedback-desc {
        text-align: center;
    }

    .problem-grid,
    .solutions-grid,
    .overview-stats-grid {
        grid-template-columns: 1fr;
    }

    .challenge-context {
        padding: 24px 20px;
        flex-direction: column;
    }

    .quote-box {
        padding: 40px 24px;
    }

    .acg-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .acg-cta-logo {
        display: none;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }

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

    .overlap-section {
        margin-top: -36px;
        padding-bottom: 40px;
    }

    .summary-box {
        padding: 24px 20px;
    }

    .cs-hero-download-btn {
        margin-top: 22px;
        margin-bottom: 20px;
    }

    .meta-tag {
        width: 100%;
        text-align: center;
    }

    .cs-hero-download-btn,
    .acg-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .cs-gate-sticky-btn {
        top: 68%;
    }
}
