:root {
    --brand-primary: #1B72BE;
    --brand-secondary: #1A3A6B;
    --brand-accent: #F47920;
    --brand-purple: #7B3FA0;
    --brand-green: #6CB33F;
    --brand-dark: #12213A;
    --brand-mist: #E8F2FB;
    --text-main: #2c3444;
    --text-light: #5c6878;
    --bg-light: #F5F8FC;
    --white: #ffffff;
    --font-stack: 'Inter', sans-serif;
    --shadow-card: 0 10px 30px rgba(27, 114, 190, 0.08);
    --shadow-hover: 0 20px 40px rgba(27, 114, 190, 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;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.2;
}

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

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

.section {
    padding: 80px 0;
}

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

.bg-dark {
    /* background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary)); */
    color: var(--white);
}

.bg-impact {
    background: linear-gradient(135deg, #1A3A6B 0%, #1B72BE 60%, #2176AE 100%);
    color: var(--white);
}

.bg-impact .section-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.bg-impact .section-title {
    text-align: center;
}

.bg-impact .section-tag {
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
}

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

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

.bg-dark .section-tag {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
}

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

.section-desc {
    max-width: 885px;
    margin: 0 auto;
    text-align: start;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

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

/* ===== HERO ===== */
.hero {
    background:
        linear-gradient(160deg, rgba(26, 58, 107, 0.82) 0%, rgba(18, 33, 58, 0.88) 100%),
        url('https://d1e5ggoymkuik7.cloudfront.net/case-studies/ithos/ithos-cosmetics.jfif') center center / cover no-repeat;
    color: var(--white);
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-center {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgb(27 114 190);
    color: #ffff;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

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

.hero p {
    font-size: 1.25rem;
    margin: 0 auto;
    opacity: 0.9;
    color: var(--white);
    font-weight: 300;
}
.meta-info {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.meta-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 0.88rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 7px;
}

.meta-tag i {
    opacity: 0.75;
    font-size: 0.82rem;
}

/* ===== ABOUT CLIENT ===== */
.client-section {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

.client-box {
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(27, 114, 190, 0.12);
    border-top: 5px solid var(--brand-primary);
}

.client-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.9fr);
    gap: 52px;
    align-items: start;
}

.client-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Prevents section-tag from stretching full width */
}

.client-left .section-tag {
    margin-bottom: 18px;
}

.client-left h2 {
    text-align: left;
    font-size: 2rem;
    color: var(--brand-dark);
    margin-bottom: 20px;
    width: 100%;
}

.client-left p {
    margin-bottom: 1rem;
    color: var(--text-light);
    width: 100%;
}

.client-snapshot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
    width: 100%;
}

.snapshot-card {
    background: #f5f8fc;
    border: 1px solid rgba(27, 114, 190, 0.1);
    border-radius: 14px;
    padding: 18px 20px;
    transition: 0.3s;
}

.snapshot-card:hover {
    border-color: rgba(27, 114, 190, 0.25);
    background: #e8f2fb;
}

.snapshot-card strong {
    display: block;
    margin-bottom: 5px;
    color: var(--brand-primary);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.snapshot-card span {
    color: var(--brand-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

.client-img-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(27, 114, 190, 0.15);
    align-self: start;
    position: sticky;
    top: 100px;
height:350px;
}


.client-img-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.5s ease;
}

.client-img-box:hover img {
    transform: scale(1.03);
}

/* ===== CHALLENGE ===== */
.challenge-section .problem-card:nth-child(1) { border-top: 5px solid #1B72BE; }  /* Ithos blue */
.challenge-section .problem-card:nth-child(2) { border-top: 5px solid #7B3FA0; }  /* Ithos purple */
.challenge-section .problem-card:nth-child(3) { border-top: 5px solid #F47920; }  /* Ithos orange */
.challenge-section .problem-card:nth-child(4) { border-top: 5px solid #6CB33F; }  /* Ithos green */
.challenge-section .problem-card:nth-child(5) { border-top: 5px solid #1B72BE; }  /* Ithos blue */
.challenge-section .problem-card:nth-child(6) { border-top: 5px solid #7B3FA0; }  /* Ithos purple */

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

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

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

.card-num {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(27, 114, 190, 0.14);
    line-height: 1;
    margin-bottom: 12px;
}

.problem-card i {
    font-size: 1.8rem;
    color: var(--brand-primary);
    margin-bottom: 16px;
    display: block;
}

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

.problem-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* ===== OBJECTIVES ===== */
.objectives-section .section-desc {
    max-width: 900px;
}

.goal-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.goal-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 30px;
    border: 1px solid #dce8f5;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(27, 114, 190, 0.06);
}

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

.goal-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--brand-primary), #2A8CE0);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.goal-content h4 {
    font-size: 1rem;
    color: var(--brand-dark);
    margin-bottom: 8px;
}

.goal-content p {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.65;
}

/* ===== SOLUTION ===== */
.solution-section {
    position: relative;
}

.solution-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background:
        radial-gradient(circle at 12% 18%, rgba(231, 198, 107, 0.12), transparent 24%),
        radial-gradient(circle at 88% 78%, rgba(255, 255, 255, 0.08), transparent 20%); */
    pointer-events: none;
}

.strategy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.strategy-card {
    background: rgba(255, 255, 255, 0.96);
    padding: 40px;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--brand-accent);
    box-shadow: 0 5px 15px rgba(27, 114, 190, 0.08);
}

.strategy-card h3 {
    color: var(--brand-secondary);
    margin-bottom: 20px;
    font-size: 1.15rem;
}

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

.strategy-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.solution-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--brand-accent);
    box-shadow: 0 5px 20px rgba(27, 114, 190, 0.08);
    transition: transform 0.3s ease;
}

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

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

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

.solution-card h3 {
    font-size: 1.25rem;
    color: var(--brand-dark);
    margin: 0;
}

.solution-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== PLATFORM FEATURES ===== */
.platform-scope .section-tag {
    background: rgba(27, 114, 190, 0.10);
    color: var(--brand-primary);
    border: 1px solid rgba(27, 114, 190, 0.18);
    box-shadow: 0 6px 14px rgba(27, 114, 190, 0.08);
}

.platform-scope .section-title {
    color: var(--brand-dark);
}

.platform-scope .section-desc {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 860px;
}

.capability-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); */

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

.capability-card {
    background: linear-gradient(180deg, #ffffff, #f5f9fd);
    padding: 35px;
    border-radius: var(--radius-md);
    border: 1px solid #dce8f5;
    transition: 0.4s;
}

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

.capability-card i {
    font-size: 1.8rem;
    color: var(--brand-primary);
    margin-bottom: 18px;
    display: block;
}

.capability-card h3 {
    margin-bottom: 12px;
    color: var(--brand-dark);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.capability-card p {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== ARCHITECTURE ===== */
.architecture-layout {
    margin-top: 40px;
}

.blueprint-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.blueprint-card {
    background: linear-gradient(180deg, #ffffff, #f5f9fd);
    padding: 35px;
    border-radius: var(--radius-md);
    border: 1px solid #dce8f5;
    transition: 0.4s;
}

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

.blueprint-card i {
    font-size: 1.8rem;
    color: var(--brand-primary);
    margin-bottom: 18px;
    display: block;
}

.blueprint-card h4 {
    margin-bottom: 12px;
    color: var(--brand-dark);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.blueprint-card p {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== TECH STACK ===== */
.tech-section-wrap {
    position: relative;
}

.tech-section-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(27, 114, 190, 0.06), transparent);
}

.tech-grid-img {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.ithos-tech-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 48px;
    margin-top: 48px;
}

.ithos-tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100px;
}

.ithos-tech-item img {
    height: 75px;
    width: auto;
    object-fit: contain;
}

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

.tech-item-img {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid #dce8f5;
    box-shadow: 0 4px 12px rgba(27, 114, 190, 0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.tech-item-img:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(27, 114, 190, 0.25);
}

.tech-fa-icon {
    font-size: 2.6rem;
    color: var(--brand-primary);
    display: block;
}

.tech-item-img img {
    margin: 0 auto;
}

.tech-item-img span {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
    line-height: 1.3;
}

.tech-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.tech-tag {
    background: rgba(27, 114, 190, 0.08);
    color: var(--brand-primary);
    border: 1px solid rgba(27, 114, 190, 0.18);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
}

.tech-tag:hover {
    background: var(--brand-primary);
    color: var(--white);
}

/* ===== BUSINESS IMPACT ===== */
.impact-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.impact-stat-card {
    background: var(--white);
    border: 1px solid #dce8f5;
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(27, 114, 190, 0.07);
}

.impact-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.stat-val {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--brand-primary);
    font-weight: 600;
    letter-spacing: 0.6px;
    line-height: 1.4;
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 8px;
    text-align: start;
}

.impact-summary {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 28px 32px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.impact-summary p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
}

.impact-summary p:last-child {
    margin-bottom: 0;
}

/* ===== OUTCOME ===== */
.research-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.research-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

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

.research-card h3 {
    color: var(--brand-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.research-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.75;
}

.highlight-card {
    border-left: 5px solid var(--brand-primary);
}

.insight-list {
    list-style: none;
    margin-top: 5px;
}

.insight-list li {
    margin-bottom: 14px;
    padding-left: 25px;
    position: relative;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
}

.insight-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--brand-primary);
    font-weight: bold;
}

.research-outcome {
    margin-top: 40px;
    background: linear-gradient(135deg, #f5f8fc, #ffffff);
    padding: 28px 36px;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--brand-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.75;
}

.research-outcome strong {
    color: var(--brand-primary);
}

/* ===== CONCLUSION ===== */
.scope-summary,
.conclusion-box {
    max-width: 900px;
    margin: 28px auto 0;
    padding: 28px 32px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f5f8fc);
    box-shadow: var(--shadow-card);
    color: var(--text-main);
}

.conclusion-box p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.8;
}

.conclusion-box p:last-child {
    margin-bottom: 0;
}

/* ===== 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(244, 121, 32, 0.25);
    position: absolute;
    top: 30px;
    left: 30px;
}

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

.feedback-desc {
    margin: 20px auto 40px !important;
    text-align: left;
    max-width: 885px;
    color: var(--text-light);
}

/* ===== PORTFOLIO ===== */
.ithos-img-box {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid #dce8f5;
    transition: box-shadow 0.4s ease;
}

.ithos-img-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    display: block;
    transition: transform 0.5s ease;
}

.ithos-img-box:hover {
    box-shadow: var(--shadow-hover);
}

.ithos-img-box:hover img {
    transform: scale(1.02);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 130px 0 90px;
    }

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

    .client-grid,
    .strategy-grid,
    .research-grid {
        grid-template-columns: 1fr;
    }

    .client-box {
        padding: 32px;
    }

    .client-snapshot {
        grid-template-columns: 1fr 1fr;
    }

    .client-img-box {
        position: static;
        max-height: 320px;
    }

    .client-img-box img {
        height: 320px;
        object-fit: cover;
    }

    .solutions-grid,
    .capability-grid,
    .blueprint-grid {
        grid-template-columns: 1fr;
    }

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

    .tech-grid-img {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

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

    .hero {
        padding: 110px 0 70px;
    }

    .hero h1 {
        font-size: 1.65rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .meta-info {
        gap: 10px;
    }

    .client-section {
        margin-top: -40px;
    }

    .client-box {
        padding: 24px;
    }

    .client-snapshot {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .impact-stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tech-grid-img {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

@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: rgb(27 114 190);
    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(27, 114, 190, 0.35);
}

.cs-hero-download-btn:hover {
    background: rgb(18 85 145);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(27, 114, 190, 0.45);
}

.cs-hero-download-btn i {
    font-size: 0.9rem;
}
/* --- CTA BANNER --- */
.acg-cta-banner {
    background: #f0f5fb;
    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: rgb(27 114 190);
    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;
    flex-shrink: 0;
}

.acg-cta-btn:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
}

.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;
}
