/* --- BRAND VARIABLES --- */
:root {
    /* Theme: Deep Navy & Electric Teal */
    --brand-primary: #00bcd4;
    /* Teal */
    --brand-secondary: #006064;
    /* Dark Cyan */
    --brand-dark: #0f172a;
    /* Slate Dark */
    --brand-darker: #020617;
    /* Deepest Navy */
    --brand-accent: #ef4444;
    /* Alert Red */
    --text-main: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --font-stack: 'Inter', sans-serif;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 188, 212, 0.15);
    --radius-md: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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


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

.section {
    padding: 80px 0;
}

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

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

.bg-dark {
    background: var(--brand-dark) !important;
    color: white;
}

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

.section-tag {
    display: inline-block;
    background: rgba(0, 188, 212, 0.1);
    color: var(--brand-secondary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
}

.bg-dark .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--brand-primary);
}

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

.bg-dark .section-title {
    color: var(--white);
}

.section-desc {
    max-width: 800px;
    margin: 0 auto 60px !important;
    text-align: start;
}

.bg-dark .section-desc {
    color: #94a3b8;
}

/* --- ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* --- QUOTE STYLE --- */
.impact-quote {
    position: relative;
    text-align: center;
    padding: 40px;
    margin: 40px 0;
    background: linear-gradient(135deg, #fff, #f0f9ff);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.impact-quote::before {
    content: '\f10d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 2rem;
    color: var(--brand-primary);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
}

.impact-quote p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.6;
    margin: 0;
}

/* --- HERO --- */
.hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(0, 96, 100, 0.85)), url('https://d1e5ggoymkuik7.cloudfront.net/case-studies/block-tam/hero-banner.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 180px 0 120px;
    text-align: center;
    /* position: relative; */
}

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

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

.hero .section-tag {
    color: var(--bg-light);
}

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

/* --- PROLOGUE & CLIENT PROFILE --- */
.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-primary);
}

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

.summary-grid .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.summary-grid .section-tag + p {
    margin-bottom: 20px;
}

/* --- VILLAIN --- */
.grid-2x2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.problem-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand-primary);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.card-icon {
    font-size: 1.8rem;
    color: var(--brand-primary);
    margin-bottom: 20px;
    background: #fff5f5;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

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

.problem-card p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.375;
}

/* --- BIG QUESTION --- */
.question-section {
    background: var(--bg-light);
    color: var(--text-main);
    position: relative;
    overflow: hidden;
}

.question-content {
    position: relative;
    z-index: 2;
}

.question-highlight {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto 50px;
    font-style: italic;
    color: var(--text-main);
}

.question-highlight strong {
    color: var(--brand-primary);
    font-weight: 700;
    font-style: normal;
}

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

.benefit-item {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.12), rgba(0, 96, 100, 0.08));
    border: 1px solid rgba(0, 188, 212, 0.3);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.1);
}

.benefit-item:hover {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(0, 96, 100, 0.15));
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-primary);
}

.benefit-item p {
    margin: 0;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: var(--brand-dark);
    text-transform: uppercase;
    color: #111;
}

/* --- SOLUTION --- */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.solution-card {
    background: white;
    padding: 35px;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.solution-num {
    background: var(--brand-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 20px;
}

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

.solution-card p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.375;
}

/* --- STRATEGY / DISCOVERY CARDS --- */
.discovery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.discovery-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.discovery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.15);
    border-color: var(--brand-primary);
}

.discovery-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 188, 212, 0.1);
    color: var(--brand-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.discovery-card h5 {
    font-size: 1rem;
    color: var(--brand-dark);
    margin-bottom: 10px;
    font-weight: 700;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discovery-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.375;
    margin: 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
}

/* --- NEW ROADBLOCKS UI --- */
.roadblock-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.rb-header {
    padding: 25px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

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

.rb-header h5 {
    color: var(--brand-dark);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.rb-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rb-section {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.rb-icon {
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.rb-problem .rb-icon {
    color: var(--brand-accent);
}

.rb-solution .rb-icon {
    color: var(--brand-success);
}

.rb-text strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 5px;
    opacity: 0.7;
}

.rb-problem .rb-text strong {
    color: var(--brand-accent);
}

.rb-solution .rb-text strong {
    color: var(--brand-success);
}

.rb-text p {
    font-size: 0.9rem;
    color: var(--text-main);
    margin: 0;
    line-height: 1.5;
}

.rb-arrow {
    text-align: center;
    color: #cbd5e1;
    font-size: 1.2rem;
    margin: -10px 0;
}

/* --- ARCHITECTURE --- */
.arch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.arch-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.arch-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: var(--brand-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

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

.arch-card:hover::after {
    transform: scaleX(1);
}

.arch-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--brand-primary);
}

.arch-card h5 {
    font-size: 1rem;
    color: var(--brand-dark);
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.arch-card p {
    font-size: 16px;
    line-height: 1.375;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* --- QA SECTION (LIGHT) --- */
.qa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.qa-card {
    background: var(--white);
    border: 1px solid rgba(0, 188, 212, 0.2);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.qa-card:hover {
    background: var(--white);
    transform: translateY(-5px);
    border-color: var(--brand-primary);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.15);
}

.qa-icon {
    font-size: 2rem;
    color: var(--brand-primary);
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(0, 188, 212, 0.1);
    padding: 12px;
    border-radius: 50%;
}

.qa-title {
    color: var(--brand-dark);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.qa-desc {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.375;
    margin: 0;
}

/* --- TECH STACK GRID --- */
.tech-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--brand-primary);
}

.tech-item span {
    font-weight: 600;
    font-size: 1rem;
    color: var(--brand-dark);
}

/* --- OLD STACK CARDS (unused) --- */
.stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stack-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px;
    transition: var(--transition);
    border: 1px solid rgba(0, 188, 212, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stack-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-primary);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.15);
}

.stack-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 188, 212, 0.15);
    padding-bottom: 15px;
}

.stack-header i {
    font-size: 1.5rem;
    color: var(--brand-primary);
}

.stack-header h5 {
    color: var(--brand-dark);
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.stack-body p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.375;
    margin: 0;
}

.stack-body li {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.375;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.stack-body li::before {
    content: '›';
    color: var(--brand-primary);
    position: absolute;
    left: 0;
    font-weight: 800;
}

/* --- DEPLOYMENT (LIGHT) --- */
.deployment-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 70px;
    position: relative;
}

.deployment-track::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, var(--brand-primary), rgba(0, 188, 212, 0.15));
    z-index: 1;
}

.deploy-card {
    position: relative;
    z-index: 2;
    text-align: center;
}

.deploy-step-num {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.25);
}

.deploy-card h6 {
    color: var(--brand-dark);
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 700;
}

.deploy-card p {
    color: var(--text-light);
    font-size: 16px;
    margin: 0;
    line-height: 1.375;
    padding: 0 10px;
}

.deploy-closing {
    margin-top: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-dark);
    text-align: center;
}

/* --- RESULTS --- */
.impact-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    margin-top: 50px;
}

.metric-card {
    background: white;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-primary);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 1px;
}

/* --- COMPARATIVE TABLE --- */
.comparison-wrapper {
    margin-top: 60px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.comp-header-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--brand-dark);
    color: white;
}

.comp-header {
    padding: 20px 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.comp-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    border-bottom: 1px solid #f1f5f9;
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-cell {
    padding: 30px;
    font-size: 16px;
    line-height: 1.375;
    font-weight: 700;
}

.comp-cell.before {
    background: #fff5f5;
    color: #64748b;
    border-right: 1px solid #e2e8f0;
    position: relative;
}

.comp-cell.before::before {
    content: '\f00d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--brand-accent);
    margin-right: 10px;
    opacity: 0.6;
}

.comp-cell.after {
    background: #f0fdfa;
    color: var(--brand-dark);
    font-weight: 600;
}

.comp-cell.after::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--brand-success);
    margin-right: 10px;
}

/* --- CONCLUSION (WHITE BG) --- */
.conclusion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.conc-card-white {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.conc-card-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.1);
    border-color: var(--brand-primary);
}

.conc-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 188, 212, 0.1);
    color: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.conc-card-white h4 {
    color: var(--brand-dark);
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 800;
}

.conc-card-white p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cta-btn {
    display: inline-block;
    background: var(--brand-primary);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 30px;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #00acc1;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 188, 212, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.2rem;
    }

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

    .summary-box {
        padding: 30px;
    }

    .grid-2x2,
    .impact-grid,
    .stack-grid,
    .comparison-wrapper,
    .comp-row,
    .comp-header-row,
    .conclusion-grid,
    .discovery-grid,
    .card-grid {
        grid-template-columns: 1fr;
    }

    .deployment-track {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }

    .deployment-track::before {
        display: none;
    }

    .comp-cell.before {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}

 @media only screen and (min-width: 992px) {
     .ebook-form-wrap {
         max-width: none;
     }
 }


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


@media (max-width: 900px) {

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

    .section {
        padding: 70px 0;
    }

    .overlap-section {
        margin-top: -60px;
    }

    .comp-row {
        display: block;
    }

    .comp-cell {
        display: block;
        padding: 20px;
    }

    .comp-cell.before {
        border-bottom: 1px solid #eee;
    }
}

@media (max-width: 480px) {

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

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

@media (max-width: 576px) {
    .meta-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.0rem !important;
    }
}

.feedback-desc {
    max-width: 920px;
    margin: 20px auto 40px !important;
    text-align: start;
}
.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #333;
    position: relative;
    z-index: 2;
}

.cs-hero-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 14px 32px;
    background: rgba(0, 188, 212, 0.1);
    color: var(--bg-light);
    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;
}

.cs-hero-download-btn:hover {
    background: (--brand-secondary);
    transform: translateY(-2px);
    box-shadow: rgba(0, 188, 212, 0.1);
}

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

/* --- CTA BANNER --- */
.acg-cta-banner {
    background: #f0fdfa;
    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: var(--brand-secondary);
    color: var(--white);
    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;
}

/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 900px) {
    .solution-grid,
    .qa-grid,
    .impact-grid {
        grid-template-columns: 1fr !important;
    }

    .comp-header-row {
        grid-template-columns: 1fr;
    }

    .comp-header {
        padding: 18px 20px;
    }

    .comp-cell {
        padding: 20px;
    }

    .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: 768px) {
    .container {
        padding: 0 16px;
    }

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

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

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

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

    .img-box.acg-img-box {
        margin-bottom: 30px !important;
    }

    .review-slider-arrows {
        margin-top: 10px;
    }
}

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

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

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

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