:root {
        --brand-primary: #0260a8;
        --brand-dark: #1a1a1a;
        --text-main: #2d3436;
        --text-light: #636e72;
        --bg-light: #f8f9fa;
        --white: #ffffff;
        --font-stack: 'Inter', sans-serif;
        --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
        --shadow-hover: 0 20px 40px rgba(211, 47, 47, 0.15);
        --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;
    }

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

    .universal_color_bg{
        background-color: #D32D27 !important;
    }

    .universal_color_text{
        color: #D32D27;
    }

    .section {
        padding: 80px 0;
    }

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

    .bg-red {
        background: linear-gradient(135deg, var(--brand-primary), #b71c1c);
        color: var(--white);
    }

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

    .section-tag {
        display: inline-block;
        background: #dfdfdf78;
        color: #D32D27;
        padding: 10px 24px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        margin-top: 0;
        color: var(--brand-dark);
        position: relative;
        display: block;
        width: 100%;
    }

    .section-title::after {
       display: none;
    }

    .section-intro {
        max-width: 900px;
        margin: 30px auto 0;
        font-size: 1.1rem;
        color: var(--text-light);
        line-height: 1.8;
    }

    .section-divider {
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
        margin: 60px auto;
        border-radius: 2px;
    }

    .content-block {
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
        margin-top: 30px;
    }

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

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    /* Hero */
    .hero {
        background: linear-gradient(rgb(68 21 21 / 80%), rgb(28 7 7 / 80%)), url(https://d1e5ggoymkuik7.cloudfront.net/uploads/technologies/lastpass_hero.png);
        background-size: cover;
        background-position: center;
        color: var(--white);
        padding: 180px 0 120px;
        text-align: center;
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        color: var(--white);
		line-height: 1.2;
    }
	
	.hero p {
		font-size: 1.25rem;
		margin: 0 auto;
		opacity: 0.95;
		font-weight: 300;
		color: var(--white);
	}

    .hero .subtitle {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-top: 15px;
    }

    /* Executive Summary Overlap */
    .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 #D32D27;
    }

    .team-showcase {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin: 40px 0;
        flex-wrap: wrap;
    }

    .team-member {
        position: relative;
        transition: transform 0.3s ease;
    }

    .team-member:hover {
        transform: translateY(-5px);
    }

    .team-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 4px solid var(--brand-primary);
        box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
        object-fit: cover;
        background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    }

    .team-divider {
        width: 1px;
        height: 60px;
        background: linear-gradient(to bottom, transparent, var(--brand-primary), transparent);
    }

    .collaboration-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, var(--brand-primary), #b71c1c);
        color: white;
        padding: 12px 25px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        margin-top: 20px;
        box-shadow: 0 5px 20px rgba(211, 47, 47, 0.3);
    }

    .collaboration-badge i {
        font-size: 1.1rem;
    }

    /* Metrics Grid */
    .metrics-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .metric-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        padding: 35px;
        border-radius: 20px;
        text-align: center;
        border: 1px solid rgba(211, 47, 47, 0.1);
        position: relative;
        overflow: hidden;
        transition: var(--transition);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    }

    .metric-card::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--brand-primary), #d6f6f0);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .metric-card:hover::before {
        transform: scaleX(1);
    }

    .metric-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(211, 47, 47, 0.2);
        border-color: var(--brand-primary);
    }

    .metric-card h2 {
        font-size: 3rem;
        background: linear-gradient(135deg, var(--brand-primary), #d6f6f0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 10px;
        font-weight: 800;
    }

    .metric-card p {
        color: var(--text-light);
        font-weight: 500;
    }

    .metric-icon {
        position: absolute;
        top: 15px;
        right: 15px;
        color: rgba(211, 47, 47, 0.1);
        font-size: 2.5rem;
    }

    /* Systems Landscape */
    .systems-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .system-card {
        background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
        padding: 30px;
        border-radius: 18px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
        display: flex;
        align-items: flex-start;
        gap: 20px;
        transition: var(--transition);
        border: 1px solid rgba(211, 47, 47, 0.08);
        position: relative;
        overflow: hidden;
    }

    .system-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: #D32D27;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .system-card:hover::after {
        opacity: 1;
    }

    .system-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgb(239 44 44 / 15%);
        border-color: #a81902a3;
    }

    .system-card i {
        color: #D32D27;
        font-size: 2rem;
        margin-top: 5px;
        background: #f9aba8;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .system-card:hover i {
        transform: scale(1.1) rotate(5deg);
        /* background: rgba(211, 47, 47, 0.15); */
    }

    .system-card h4 {
        color: var(--brand-dark);
        margin-bottom: 8px;
        font-size: 1.15rem;
    }

    .system-card p {
        color: var(--text-light);
        font-size: 0.92rem;
        line-height: 1.5;
    }

    /* Phase Cards */
    .phase-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        margin-top: 50px;
        position: relative;
    }

    .phase-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transition: var(--transition);
        position: relative;
        border: 1px solid rgba(211, 47, 47, 0.1);
    }

    .phase-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background: linear-gradient(to bottom, var(--brand-primary), #d6f6f0);
        border-radius: 20px 0 0 20px;
        transition: width 0.3s ease;
    }

    .phase-card:hover::before {
        width: 10px;
    }

    .phase-card:hover {
        transform: translateX(5px);
        box-shadow: 0 15px 40px rgba(211, 47, 47, 0.2);
        border-color: var(--brand-primary);
    }

    .phase-number {
        position: absolute;
        top: -20px;
        left: 30px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--brand-primary), #d6f6f0);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        font-weight: 800;
        box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
        border: 4px solid white;
    }

    .phase-card h3 {
        color: var(--brand-dark);
        margin-bottom: 12px;
        font-size: 1.7rem;
        font-weight: 800;
        margin-top: 10px;
    }

    .phase-card .phase-label {
        display: inline-block;
        background: rgba(211, 47, 47, 0.1);
        color: var(--brand-primary);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .phase-card p {
        font-size: 1.05rem;
    }

    /* Table Styles */
    .styled-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 40px;
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }

    .styled-table th {
        background: linear-gradient(135deg, var(--brand-dark), #2c2c2c);
        color: white;
        padding: 18px;
        text-align: left;
        font-weight: 600;
        font-size: 1.05rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .styled-table td {
        padding: 18px;
        border-bottom: 1px solid #eee;
        font-size: 1rem;
    }

    .styled-table tr:last-child td {
        border-bottom: none;
    }

    .styled-table tr:hover {
        background: rgba(211, 47, 47, 0.03);
        transition: background 0.3s ease;
    }

    .styled-table tbody tr {
        transition: all 0.3s ease;
    }

    .styled-table tbody tr:hover {
        transform: scale(1.01);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    /* Comparison Section */
    .comparison-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 35px;
        margin-top: 50px;
    }

    .comparison-card {
        background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: var(--transition);
        border: 2px solid transparent;
    }

    .comparison-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

    .comparison-card h3 {
        margin-bottom: 25px;
        font-size: 1.9rem;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .comparison-card h3 i {
        font-size: 1.5rem;
    }

    .comparison-card.before {
        border-color: rgba(231, 76, 60, 0.2);
    }

    .comparison-card.before h3 {
        color: #e74c3c;
    }

    .comparison-card.after {
        border-color: rgba(39, 174, 96, 0.2);
    }

    .comparison-card.after h3 {
        color: #27ae60;
    }

    .comparison-card ul {
        list-style: none;
    }

    .comparison-card li {
        padding: 15px 0;
        padding-left: 35px;
        position: relative;
        font-size: 1.05rem;
        line-height: 1.6;
        color: var(--text-main);
    }

    .comparison-card li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        border-radius: 50%;
    }

    .comparison-card.before li::before {
        background: rgba(231, 76, 60, 0.2);
        border: 2px solid #e74c3c;
    }

    .comparison-card.after li::before {
        background: rgba(39, 174, 96, 0.2);
        border: 2px solid #27ae60;
    }

    /* Roadmap */
    .roadmap-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .roadmap-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        padding: 35px 30px 30px;
        border-radius: 18px;
        border-left: 5px solid var(--brand-primary);
        position: relative;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transition: var(--transition);
        border: 1px solid rgba(211, 47, 47, 0.1);
    }

    .roadmap-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(211, 47, 47, 0.2);
        border-color: var(--brand-primary);
    }

    .roadmap-card .date-tag {
        position: absolute;
        top: -15px;
        left: 25px;
        background: linear-gradient(135deg, var(--brand-primary), #d6f6f0);
        color: white;
        padding: 8px 18px;
        border-radius: 20px;
        font-weight: 700;
        font-size: 0.85rem;
        box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
    }

    .roadmap-card h4 {
        color: var(--brand-dark);
        font-size: 1.3rem;
        margin-bottom: 15px;
        margin-top: 10px;
        font-weight: 700;
    }

    .roadmap-card p {
        line-height: 1.7;
        font-size: 1.02rem;
    }

    /* Results Grid */
    .results-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .result-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        padding: 35px 25px;
        border-radius: 18px;
        text-align: center;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transition: var(--transition);
        border: 1px solid rgba(211, 47, 47, 0.1);
        position: relative;
        overflow: hidden;
    }

    .result-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #e7684b, #edc1bf);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.4s ease;
    }

    .result-card:hover::before {
        transform: scaleX(1);
    }

    .result-card:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 15px 35px rgba(211, 47, 47, 0.2);
        border-color: #D32D27;
    }

    .result-card h2 {
        background: linear-gradient(135deg, var(--brand-primary), #d6f6f0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 3.5rem;
        margin-bottom: 15px;
        font-weight: 800;
    }

    .result-card h4 {
        color: var(--brand-dark);
        font-size: 1.1rem;
        margin-bottom: 10px;
        font-weight: 700;
    }

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

    /* Testimonial */
    .testimonial-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .testimonial-box {
        background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
        padding: 35px;
        border-radius: 18px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        border-left: 5px solid var(--brand-primary);
        transition: var(--transition);
        position: relative;
    }

    .testimonial-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(211, 47, 47, 0.15);
    }

    .testimonial-box::before {
        content: '\201C';
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 5rem;
        color: rgba(211, 47, 47, 0.1);
        font-family: Georgia, serif;
        line-height: 1;
		background-image: none;
    }

    .testimonial-box p {
        font-size: 1.05rem;
        font-style: italic;
        margin-bottom: 20px;
        line-height: 1.8;
        color: var(--text-main);
        position: relative;
        z-index: 1;
    }

    .testimonial-box strong {
        color: var(--brand-primary);
        font-style: normal;
        display: block;
        margin-top: 15px;
        font-size: 0.95rem;
        font-weight: 600;
    }

    .testimonial-box .role {
        color: var(--text-light);
        font-size: 0.9rem;
        font-style: normal;
    }

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

    .governance-card {
        background: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: var(--shadow-card);
        transition: var(--transition);
    }

    .governance-card:hover {
        transform: translateY(-5px);
    }

    .governance-card h4 {
        color: var(--brand-primary);
        margin-bottom: 15px;
        font-size: 1.3rem;
    }

    /* Scalable Solutions Grid */
    .solutions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

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

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

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

    /* Impact Boxes */
    .impact-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 50px;
    }

    .impact-box {
        background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
        padding: 40px;
        border-radius: 18px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(211, 47, 47, 0.1);
        transition: var(--transition);
        position: relative;
    }

    .impact-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(to bottom, var(--brand-primary), #d6f6f0);
        border-radius: 18px 0 0 18px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .impact-box:hover::before {
        opacity: 1;
    }

    .impact-box:hover {
        transform: translateX(5px);
        box-shadow: 0 12px 30px rgba(211, 47, 47, 0.15);
        border-color: var(--brand-primary);
    }

    .impact-box h3 {
        color: var(--brand-primary);
        font-size: 1.7rem;
        font-weight: 700;
    }

    .impact-box ul {
        list-style: none;
    }

    .impact-box li {
        padding: 12px 0;
        padding-left: 30px;
        position: relative;
        font-size: 1.05rem;
        line-height: 1.6;
        color: var(--text-main);
    }

    .impact-box li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--brand-primary);
        font-weight: bold;
        font-size: 1.2rem;
    }

    /* Transformation Theme Cards */
    .problem-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .problem-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        padding: 35px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(211, 47, 47, 0.1);
    }

    .problem-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,#D32D27, #d6f6f0);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .problem-card:hover::before {
        transform: scaleX(0);
    }

    .problem-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(211, 47, 47, 0.2);
        border-color: #D32D27;
    }

    .problem-card i {
        font-size: 3rem;
        color: #D32D27;
        margin-bottom: 20px;
        display: block;
        transition: all 0.3s ease;
    }

    .problem-card:hover i {
        transform: scale(1.15) rotate(5deg);
        color: #D32D27;
    }

    .problem-card h4 {
        font-size: 1.3rem;
        color: var(--brand-dark);
        margin-bottom: 12px;
        font-weight: 700;
        line-height: 1.3;
    }

    .problem-card p {
        color: var(--text-light);
        font-size: 0.95rem;
    }

    .theme-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #D32D27;
        color: white;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.85rem;
        opacity: 0.9;
    }

    /* Future Roadmap Icons */
    .future-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .future-card {
        background: white;
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: var(--shadow-card);
        transition: var(--transition);
    }

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

    .future-card i {
        font-size: 3rem;
        color: var(--brand-primary);
        margin-bottom: 15px;
    }

    .future-card h4 {
        margin-bottom: 10px;
    }

    /* footer {
        background: var(--brand-dark);
        color: white;
        padding: 80px 0 40px;
        text-align: center;
    }

    .footer-grid {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        margin: 30px 0;
    }

    .footer-grid span {
        display: flex;
        align-items: center;
        gap: 10px;
    } */

    /* summary-box padding — 900px matches Omnidian reference */
    @media (max-width: 900px) {
        .summary-grid {
            grid-template-columns: 1fr;
        }

        .summary-box {
            padding: 30px;
        }

        /* Cap image height on tablet so it doesn't dominate */
        .summary-grid > div:last-child img {
            max-height: 360px;
            width: auto;
            margin: 0 auto;
        }
    }

    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2.2rem;
        }

        .summary-box {
            padding: 24px;
        }

        /* Stack image below text and display full width on mobile */
        .summary-grid {
            grid-template-columns: 1fr !important;
            gap: 28px;
        }

        .summary-grid > div:last-child img {
            max-height: none;
            width: 100%;
        }

        .overlap-section {
            margin-top: -60px !important;
            padding-bottom: 40px;
        }

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

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

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

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

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

        .phase-grid::before {
            display: none;
        }

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

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

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

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

    .databricks-testimonial-section {
        background-color: #f9fbfd;
    }

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

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

    .summary-section-title {
        margin-bottom: 30px;
        font-size: 2.2rem;
        line-height: 1.3;
    }

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

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

   .summary-grid .summary-right h4 {
       color: var(--white);
   }

   .summary-grid .summary-right p {
       color: var(--white);
   }

   /* Summary image — full width, border-radius via global img rule */
   .summary-grid > div:last-child img {
       width: 100%;
       height: auto;
       border-radius: var(--radius-md);
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
       display: block;
   }

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


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

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

.tech-item i {
    font-size: 3rem;
    margin-bottom: 15px;
}

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

/* Images */
.acg-img-box img {
    max-height: 500px;
    width: auto;
    margin: 0 auto;
}

.strategy-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #D32D27;
    margin-top: 1px;
}

.strategy-list li {
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
}

.lastpass-svg{
    color: #D32D27;
    height: 90px;
    width: 96px;
    position: relative;
    top: -14px;
}

/* PROJECT OVERVIEW */

.project-overview{
    padding-top:90px;
}

.overview-grid{
    display:grid;
    grid-template-columns: 1.1fr 1fr;
    gap:60px;
    align-items:center;
    margin-top:50px;
}

.overview-text p{
    font-size:16px;
    line-height:1.8;
    margin-bottom:20px;
    color:#555;
}

.overview-image img{
    width:100%;
    border-radius:16px;
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

/* Project Stats */

.project-stats{
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:25px;
    margin-top:60px;
}

.program-highlights {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 40px;
}

.program-highlight-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    padding: 26px 22px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.program-highlight-label {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff1f1;
    color: #D32D27;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.program-highlight-card h3 {
    font-size: 1.08rem;
    color: #111827;
    margin-bottom: 10px;
}

.program-highlight-card p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
}

.stat-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

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

.stat-card i{
    font-size:26px;
    color:#D32D27;
    margin-bottom:12px;
}

.stat-card h4{
    font-size:22px;
    margin-bottom:5px;
    color:#222;
}

.stat-card p{
    font-size:14px;
    color:#777;
}

.solution-layout{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
margin-top:60px;
}

.section-visual-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 36px;
    align-items: center;
    margin-top: 48px;
    padding: 34px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.section-visual-card h3 {
    font-size: 1.8rem;
    color: #111827;
    margin-bottom: 14px;
}

.section-visual-card p {
    margin: 0;
    color: #475569;
    font-size: 1rem;
    line-height: 1.85;
}

.section-visual-media img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
}

.solution-image img{
width:100%;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.solution-step{
margin-bottom:25px;
padding-left:25px;
border-left:3px solid #D32D27;
}

.solution-step h4{
font-size:18px;
margin-bottom:6px;
color:#111;
}

.solution-step p{
color:#666;
font-size:14px;
}

.delivery-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 42px;
}

.delivery-pillar {
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.delivery-pillar h3 {
    font-size: 1.25rem;
    color: #D32D27;
    margin-bottom: 10px;
}

.delivery-pillar p {
    margin: 0;
    font-size: 0.95rem;
}

/* Architecture */

.architecture-diagram{
margin-top:50px;
text-align:center;
}

.architecture-diagram img{
width:100%;
max-width:1000px;
border-radius:14px;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.architecture-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:60px;
}

.architecture-card{
background:#fff;
padding:25px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
text-align:center;
transition:0.3s;
}

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

.architecture-card i{
font-size:30px;
color:#D32D27;
margin-bottom:12px;
}

.architecture-card h4{
margin-bottom:8px;
font-size:17px;
}

.architecture-card p{
font-size:14px;
color:#666;
}

/* Pipeline */

.pipeline-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.pipeline-step {
    flex: 1;
    min-width: 140px;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: #f5f5f5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pipeline-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pipeline-step.bronze {
    background-color: #f5f5f5;
    color: #333;
}

.pipeline-step.silver {
    background-color: #f5f5f5;
    color: #333;
}

.pipeline-step.gold {
    background-color: #f5f5f5;
    color: #333;
}

.pipeline-step.analytics {
    background-color: #f5f5f5;
    color: #333;
}

.pipeline-step i {
    font-size: 32px;
    margin-bottom: 10px;
}

.pipeline-step h4 {
    margin: 8px 0;
    font-size: 14px;
    font-weight: 600;
}

.pipeline-step p {
    font-size: 12px;
    margin: 0;
    line-height: 1.3;
}

.pipeline-arrow {
    display: none;
}

.pipeline-step{
background:#fff;
border-radius:12px;
padding:25px;
width:180px;
text-align:center;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
transition:.3s;
}

.pipeline-step:hover{
transform:translateY(-5px);
}

.pipeline-step i{
font-size:26px;
color:#D32D27;
margin-bottom:10px;
}

.pipeline-arrow{
width:40px;
height:2px;
background:#ddd;
position:relative;
}

.pipeline-arrow::after{
content:'';
position:absolute;
right:-5px;
top:-4px;
border-top:6px solid transparent;
border-bottom:6px solid transparent;
border-left:8px solid #ddd;
}

.data-flow-section {
    background: #fff;
}

.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.flow-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.flow-column h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.flow-box {
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    width: 120px;
    transition: 0.3s;
}

.flow-box i {
    font-size: 18px;
    margin-bottom: 6px;
    color: #D32D27;
}

.flow-box:hover {
    transform: translateY(-5px);
}

.flow-arrow {
    font-size: 24px;
    color: #bbb;
}

.highlight {
    border: 2px solid var(--brand-primary);
}

.bronze .highlight {
    border-color: #cd7f32;
}

.silver .highlight {
    border-color: #c0c0c0;
}

.gold .highlight {
    border-color: #ffd700;
}

.flow-note {
    font-size: 12px;
    color: #777;
}

.tech-stack-advanced {
    background: #f9fbfd;
}

.tech-stack-title {
    color: #D32D27;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.tech-stack-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.14);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-stack-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
}

.tech-stack-card-featured {
    border-color: rgba(211, 45, 39, 0.22);
}

.tech-stack-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #fff1f1;
    color: #D32D27;
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.tech-stack-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #111827;
}

.tech-stack-card p {
    font-size: 0.96rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 18px;
}

.tech-stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-stack-tags span {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-size: 0.88rem;
    font-weight: 600;
}

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

.security-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.security-card i {
    font-size: 22px;
    color: #D32D27;
    margin-bottom: 10px;
}

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

.security-roles {
    margin-top: 50px;
}

.roles-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.role-box {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    min-width: 140px;
}

.results-section {
    background: #f9fbfd;
}

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

.result-card {
    background: #f9fbfd;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.result-card h3 {
    font-size: 28px;
    color: #D32D27;
}

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

/* Comparison Table */
.comparison-table {
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 15px;
    background: white;
    border-bottom: 1px solid #eee;
}

.comparison-row.header {
    background: #f1f5f9;
    font-weight: bold;
}

.comparison-row .highlight {
    color: var(--brand-primary);
    font-weight: 600;
}

.results-notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.results-note-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 22px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.results-note-card h4 {
    font-size: 1.05rem;
    color: #111827;
    margin-bottom: 10px;
}

.results-note-card p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.75;
    color: #475569;
}

@media (max-width: 768px) {
    .acg-img-box img {
        max-height: 320px;
    }
}

.conclusion-box {
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
    padding: 56px;
    border-radius: 24px;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(211, 45, 39, 0.08);
    max-width: 1040px;
    margin: auto;
}

.conclusion-lead {
    max-width: 820px;
    margin: 18px auto 0;
    font-size: 1.05rem;
}

.conclusion-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.conclusion-card {
    background: #f9fbfd;
    padding: 28px 24px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    text-align: left;
}

.conclusion-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #111827;
}

.conclusion-card p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
}

.conclusion-highlight {
    margin-top: 28px;
    padding: 22px 24px;
    background: #fff7f6;
    border-left: 4px solid #D32D27;
    border-radius: 16px;
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    font-weight: 500;
}

.conclusion-cta {
    margin-top: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--brand-primary);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #b71c1c;
}

.text_center {
    text-align: center;
}

@media (max-width: 991px) {
    .conclusion-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .conclusion-box {
        padding: 32px 22px;
        border-radius: 18px;
    }

    .conclusion-lead {
        font-size: 1rem;
    }

    .conclusion-card {
        padding: 22px 18px;
    }

    .conclusion-highlight {
        padding: 18px;
    }
}

/* Hero */
@media (max-width: 768px) {
    .hero {
        padding: 110px 0 80px;
    }

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

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

/* Grids */
@media (max-width: 1024px) {
    .summary-grid,
    .intro-grid,
    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .program-highlights,
    .delivery-pillars,
    .results-notes {
        grid-template-columns: 1fr 1fr;
    }

    .section-visual-card {
        grid-template-columns: 1fr;
    }
}

/* Sections */
@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }

    .section-desc {
        font-size: 1rem;
        text-align: left;
    }

    .program-highlights,
    .delivery-pillars,
    .results-notes {
        grid-template-columns: 1fr;
    }

    .section-visual-card {
        padding: 24px;
    }

    .section-visual-card h3 {
        font-size: 1.45rem;
    }
}

/* Slider safety */
@media (max-width: 768px) {
    .review-slider {
        margin: 0 -10px;
    }
}

.databricks-challenge-section {
    background-color: #80808012;
}

@media (max-width: 768px) {

    section {
        padding: 60px 0 !important;
    }

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

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

    .stat-val {
        font-size: 1.5rem;
    }

}


@media (max-width: 768px) {

    .impact-metric-card {
        padding: 25px 20px;
    }

    .metric-value {
        font-size: 2.3rem;
    }

    .research-card {
        padding: 25px;
    }

    .research-outcome {
        padding: 25px;
    }

    .stat-val {
        font-size: 2.2rem;
    }

}

@media (max-width: 480px) {

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

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

}

/* ===============================
   RESPONSIVE FIXES — All screen sizes
================================ */

/* --- Hero paragraph width cap --- */
.hero p {
    margin-left: auto;
    margin-right: auto;
}

/* --- 1200px: large tablet landscape --- */
@media (max-width: 1200px) {
    .project-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* --- 1024px: tablet landscape --- */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .solution-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .solution-image {
        max-width: 600px;
        margin: 0 auto;
    }

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

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

/* --- 900px: small tablet --- */
@media (max-width: 900px) {
    .section-title {
        font-size: 2.1rem;
    }

    .summary-box {
        padding: 36px 28px;
    }

    .conclusion-box {
        padding: 40px 28px;
    }

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

/* --- 768px: mobile --- */
@media (max-width: 768px) {

    /* systems-grid: CRITICAL — 500px min causes horizontal overflow */
    .systems-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* project-stats: collapse 4-col to 2-col */
    .project-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* overview grid */
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* solution layout */
    .solution-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* architecture grid */
    .architecture-grid {
        grid-template-columns: 1fr;
    }

    /* pipeline: stack vertically, hide arrows */
    .pipeline-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .pipeline-step {
        width: 100%;
        height: auto;
        min-width: unset;
        flex-direction: row;
        justify-content: flex-start;
        gap: 16px;
        text-align: left;
        padding: 18px 20px;
    }

    .pipeline-step i {
        font-size: 22px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .pipeline-arrow {
        display: none !important;
    }

    /* flow diagram: stack columns */
    .flow-diagram {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .flow-column {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 100%;
        gap: 10px;
    }

    .flow-column h4 {
        width: 100%;
        margin-bottom: 4px;
    }

    .flow-box {
        width: auto;
        min-width: 100px;
        flex: 1;
    }

    .flow-arrow {
        display: none;
    }

    /* quote box: reduce padding on mobile */
    .quote-box {
        padding: 48px 24px 36px;
    }

    /* comparison row: reduce text size */
    .comparison-row {
        font-size: 0.88rem;
        padding: 12px 10px;
    }

    /* section visual card */
    .section-visual-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 20px;
    }

    /* delivery pillars */
    .delivery-pillars {
        grid-template-columns: 1fr;
    }

    /* program highlights */
    .program-highlights {
        grid-template-columns: 1fr;
    }

    /* results notes */
    .results-notes {
        grid-template-columns: 1fr;
    }

    /* tech stack tags wrap nicely */
    .tech-stack-tags {
        gap: 8px;
    }

    /* roles grid stacks */
    .roles-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .role-box {
        width: 100%;
        min-width: unset;
    }

    /* feedback desc */
    .feedback-desc {
        text-align: left;
        padding: 0 4px;
    }
}

/* --- 480px: small mobile --- */
@media (max-width: 480px) {

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

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

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

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

    .section-tag {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    /* project-stats: single column on very small screens */
    .project-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 22px 16px;
    }

    .summary-box {
        padding: 28px 18px;
    }

    .conclusion-box {
        padding: 28px 16px;
    }

    .quote-box {
        padding: 40px 16px 28px;
    }

    .quote-text {
        font-size: 1rem;
    }

    .result-card h3 {
        font-size: 22px;
    }

    .comparison-row {
        font-size: 0.8rem;
        padding: 10px 8px;
    }

    .acg-cta-text {
        font-size: 1rem;
    }

    .cs-hero-download-btn {
        padding: 12px 22px;
        font-size: 0.88rem;
    }

    .flow-box {
        min-width: 80px;
        padding: 12px 14px;
    }
}

/* ===============================
   CTA GATE COMPONENTS — LastPass Databricks
================================ */

/* Hero download button */
.cs-hero-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 14px 32px;
    background: #D32D27;
    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(211, 45, 39, 0.35);
}

.cs-hero-download-btn:hover {
    background: #b02420;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(211, 45, 39, 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: #D32D27;
    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: #b02420;
    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;
}

/* Sticky sidebar button — LastPass red brand */
.cs-gate-sticky-btn {
    background: #D32D27;
}

.cs-gate-sticky-btn:hover {
    background: #b02420;
}

/* Sidebar drawer header — LastPass red brand */
.cs-sidebar-header {
    background: #D32D27;
}

@media (max-width: 768px) {
    .acg-cta-inner {
        flex-direction: column;
        text-align: center;
    }

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

/* ================= DATA SOURCES SECTION ================= */

/* Section background */
.dsr-section { background: #f8f9fa; }

/* Stats bar */
.dsr-stats {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2.5rem 0 1.5rem;
}
.dsr-stat {
    text-align: center;
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem 2rem;
    min-width: 110px;
    flex: 1;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    border-bottom: 3px solid #D32D27;
}
.dsr-stat span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #D32D27;
    line-height: 1;
}
.dsr-stat p {
    margin: .4rem 0 0;
    font-size: .78rem;
    color: #636e72;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* Legend */
.dsr-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .6rem 1.8rem;
    margin-bottom: 2.5rem;
}
.dsr-legend-item {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    font-weight: 500;
    color: #555;
}
.dsr-legend-item i { font-size: .55rem; }
.dsr-legend-item.api  { color: #D32D27; }
.dsr-legend-item.s3   { color: #0260a8; }
.dsr-legend-item.ftp  { color: #D32D27; }
.dsr-legend-item.db   { color: #0260a8; }

/* Cards grid */
.dsr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 1.25rem;
}

/* Individual card */
.dsr-card {
    display: flex;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0,0,0,.07);
    transition: transform .25s ease, box-shadow .25s ease;
}
.dsr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

/* Colored left type bar */
.dsr-type-bar {
    width: 5px;
    flex-shrink: 0;
}
.dsr-card[data-type="api"]  .dsr-type-bar { background: #D32D27; }
.dsr-card[data-type="s3"]   .dsr-type-bar { background: #D32D27; }
.dsr-card[data-type="ftp"]  .dsr-type-bar { background: #D32D27; }
.dsr-card[data-type="db"]   .dsr-type-bar { background: #D32D27; }

/* Card body */
.dsr-body {
    padding: 1.25rem 1.25rem 1.25rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

/* Top row: icon + title + frequency badge */
.dsr-top {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.dsr-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
    border: 1.5px solid transparent;
}
.dsr-card[data-type="api"]  .dsr-icon { background: #fce8e8; color: #D32D27; border-color: #f5c0c0; }
.dsr-card[data-type="s3"]   .dsr-icon { background: #fce8e8; color: #D32D27; border-color: #f5c0c0; }
.dsr-card[data-type="ftp"]  .dsr-icon { background: #fce8e8; color: #D32D27; border-color: #f5c0c0; }
.dsr-card[data-type="db"]   .dsr-icon { background: #fce8e8; color: #D32D27; border-color: #f5c0c0; }

.dsr-title { flex: 1; min-width: 0; }
.dsr-title h4 {
    margin: 0;
    font-size: .95rem;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dsr-title span {
    font-size: .74rem;
    color: #888;
}

/* Frequency badge */
.dsr-freq {
    font-size: .68rem;
    font-weight: 700;
    padding: .22rem .6rem;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.dsr-freq.realtime  { background: #fce8e8; color: #D32D27; }
.dsr-freq.batch     { background: #fce8e8; color: #D32D27; }
.dsr-freq.scheduled { background: #fce8e8; color: #D32D27; }
.dsr-freq.ondemand  { background: #fce8e8; color: #D32D27; }

/* Description */
.dsr-desc {
    margin: 0;
    font-size: .855rem;
    color: #555;
    line-height: 1.6;
    flex: 1;
}
.dsr-desc code {
    background: #fce8e8;
    color: #D32D27;
    padding: .08rem .3rem;
    border-radius: 3px;
    font-size: .8rem;
}

/* Spec chips */
.dsr-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
}
.dsr-chip {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .72rem;
    font-weight: 500;
    background: #f4f6f8;
    color: #444;
    padding: .28rem .65rem;
    border-radius: 6px;
    border: 1px solid #e8eaed;
}
.dsr-chip i { font-size: .6rem; color: #888; }
.dsr-chip.pii {
    background: #fce8e8;
    color: #D32D27;
    border-color: #f5c0c0;
}
.dsr-chip.pii i { color: #D32D27; }

/* Responsive */
@media (max-width: 900px) {
    .dsr-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .dsr-grid { grid-template-columns: 1fr; }
    .dsr-stats { gap: .6rem; }
    .dsr-stat { padding: 1rem 1.25rem; min-width: 80px; }
    .dsr-stat span { font-size: 1.6rem; }
}

/* ===============================
   SOLUTION SECTION
================================ */

.solution-section {
    padding-bottom: 0;
    background: var(--bg-light);
}

/* Architecture banner */
.sol-arch-banner {
    background: linear-gradient(135deg, #D32D27 0%, #b71c1c 100%);
    margin-top: 50px;
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.sol-deco-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.sol-deco-circle--tr {
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.06);
}

.sol-deco-circle--bl {
    bottom: -60px;
    left: -60px;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.04);
}

.sol-arch-inner {
    position: relative;
    z-index: 2;
}

.sol-arch-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.sol-arch-text {
    color: #fff;
}

.sol-arch-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sol-arch-title {
    font-size: 1.9rem;
    color: #fff;
    line-height: 1.35;
    margin: 0 0 16px;
}

.sol-arch-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 30px;
}

.sol-layer-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sol-layer-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    border-radius: 12px;
    border-left: 3px solid rgba(255, 255, 255, 0.6);
}

.sol-layer-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.sol-layer-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
}

.sol-layer-label strong {
    color: #fff;
}

.sol-arch-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    display: block;
}

/* Cards grid */
.sol-cards-container {
    padding-top: 60px;
    padding-bottom: 80px;
}

.sol-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.sol-card-chips {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Unity Catalog featured card */
.sol-unity-card {
    margin-top: 26px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(211, 45, 39, 0.12);
    overflow: hidden;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: stretch;
}

.sol-unity-panel {
    background: linear-gradient(180deg, #D32D27 0%, #b71c1c 100%);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-width: 180px;
}

.sol-unity-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
}

.sol-unity-step {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sol-unity-panel-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.sol-unity-body {
    padding: 36px 40px;
}

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

.sol-unity-header h4 {
    font-size: 1.35rem;
    color: var(--brand-dark);
    margin: 0;
}

.sol-unity-badge {
    background: #fff1f1;
    color: #D32D27;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.sol-unity-body > p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.sol-unity-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Delivery pillars — 5-column solution variant */
.sol-delivery-pillars {
    grid-template-columns: repeat(5, 1fr);
    margin-top: 50px;
}

.sol-delivery-pillars .delivery-pillar h3 {
    color: #D32D27;
}

.lastpass-faq-theme { --faq-accent: #D32D27; }

.cs-gate .cs-faq-section.lastpass-faq-theme {
    background: #f8f9fa;
}

.cs-gate .cs-faq-section.lastpass-faq-theme .section-tag {
    background: #dfdfdf78;
    color: var(--faq-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cs-gate .cs-faq-section.lastpass-faq-theme .faq-item {
    border-radius: 18px;
    border-color: rgba(211, 45, 39, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.cs-gate .cs-faq-section.lastpass-faq-theme .faq-item:hover,
.cs-gate .cs-faq-section.lastpass-faq-theme .faq-item.open {
    border-color: rgba(211, 45, 39, 0.35);
    box-shadow: 0 15px 35px rgba(211, 47, 47, 0.14);
}

.cs-gate .cs-faq-section.lastpass-faq-theme .faq-question {
    color: var(--brand-dark, #1a1a1a);
}

.cs-gate .cs-faq-section.lastpass-faq-theme .faq-detailed-answer p {
    color: var(--text-light, #636e72);
}

.cs-gate .cs-faq-section.lastpass-faq-theme .faq-question i.fa-plus {
    position: relative;
    font-size: 0;
}

.cs-gate .cs-faq-section.lastpass-faq-theme .faq-question i.fa-plus::before,
.cs-gate .cs-faq-section.lastpass-faq-theme .faq-question i.fa-plus::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    background: #555;
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: background 0.25s ease;
}

.cs-gate .cs-faq-section.lastpass-faq-theme .faq-question i.fa-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.cs-gate .cs-faq-section.lastpass-faq-theme .faq-item.open .faq-question i.fa-plus::before,
.cs-gate .cs-faq-section.lastpass-faq-theme .faq-item.open .faq-question i.fa-plus::after {
    background: #fff;
}


/* Responsive */
@media (max-width: 1024px) {
    .sol-arch-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .sol-delivery-pillars {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .sol-arch-banner {
        padding: 48px 0;
    }

    .sol-cards-grid {
        grid-template-columns: 1fr;
    }

    .sol-unity-card {
        grid-template-columns: 1fr;
    }

    .sol-unity-panel {
        padding: 28px 24px;
        min-width: unset;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .sol-unity-body {
        padding: 24px 20px;
    }

    .sol-delivery-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .sol-delivery-pillars {
        grid-template-columns: 1fr;
    }
}
