/* Offering page - UI from reference healthcare page
   Tronixware colors only (variables.css) */

/* ========== Hero - split: left text, right gradient + hex grid + icons ========== */
.offering-hero {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 680px;
    width: 100%;
}

.offering-hero.offering-bg-white {
    background: var(--bg-primary);
}

.offering-hero-left {
    background: transparent;
    display: flex;
    align-items: center;
    padding: 60px 48px 60px max(48px, calc((100vw - 1200px) / 2 + 24px));
}

.offering-hero-content {
    max-width: 520px;
}

.offering-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 600;
    color: #7f8990;
}

.offering-breadcrumbs a {
    color: #0c4f5d;
    text-decoration: none;
}

.offering-breadcrumbs a:hover {
    text-decoration: underline;
}

.offering-breadcrumbs-separator {
    color: #98a1a8;
    font-weight: 700;
}

.offering-breadcrumb-current {
    color: #3a3d42;
    font-weight: 500;
}

.offering-hero-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin: 0 0 16px;
}

.offering-hero-title {
    font-size: clamp(22px, 4vw, 44px);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.offering-hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0 0 28px;
    line-height: 1.65;
}

.offering-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    transition: background 0.2s, transform 0.2s;
}

.offering-hero-cta:hover {
    background: var(--accent-color-hover);
    transform: translateY(-1px);
}

.offering-hero-right {
    position: relative;
    background: linear-gradient(135deg, #009fbe 0%, #32c4da 50%, #009fbe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Smooth fade: left edge of hero image blends into white left section */
.offering-hero-right::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 55%;
    background: linear-gradient(to right,
            var(--bg-primary) 0%,
            var(--bg-primary) 8%,
            rgba(255, 255, 255, 0.92) 18%,
            rgba(255, 255, 255, 0.7) 30%,
            rgba(255, 255, 255, 0.35) 50%,
            transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.offering-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.75;
}

.offering-hero--feature {
    grid-template-columns: minmax(300px, 0.86fr) minmax(560px, 1.14fr);
    min-height: auto;
    gap: 64px;
    align-items: center;
    padding: 72px max(32px, calc((100vw - 1540px) / 2 + 40px));
    background: #ececec;
}

.offering-hero--feature .offering-hero-left {
    padding: 0;
    align-items: center;
}

.offering-hero--feature .offering-hero-content {
    max-width: 620px;
}


.offering-hero--feature .offering-hero-label {
    display: none;
}

.offering-hero--feature .offering-hero-title {
    font-size: clamp(28px, 2.9vw, 42px);
    font-weight: 600;
    line-height: 1.16;
    letter-spacing: -0.03em;
    margin: 0 0 22px;
    max-width: 12ch;
}

.offering-hero--feature .offering-hero-subtitle {
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.5;
    color: var(--text-primary);
    margin: 0 0 24px;
    max-width: 46ch;
}

.offering-hero--feature .offering-hero-right {
    width: 100%;
    min-height: 360px;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    background: transparent;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.offering-hero--feature .offering-hero-right::after {
    display: none;
}

.offering-hero--feature .offering-hero-bg {
    opacity: 1;
}

.offering-hero-cta--feature {
    padding: 16px 28px;
    border: 3px solid #009fbe;
    background: transparent;
    color: var(--text-primary);
    border-radius: 999px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.offering-hero-cta--feature:hover {
    background: rgba(0, 159, 190, 0.12);
    color: var(--text-primary);
    transform: translateY(-1px);
}

/* ========== Empowering patient-centric care - 2x2 cards ========== */

.offering-section>.offering-solution-wrap {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.offering-solution-wrap {
    width: 100%;
    padding: 80px 24px;
}

.offering-solution-wrap>.offering-solution-block {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.offering-section-centered .offering-section-title,
.offering-section-centered .offering-section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}



.offering-empowering-section {
    position: relative;
    background-image: url("../../images/offering/download-1.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 96px;
    padding-bottom: 96px;
}

/* Smooth fade at top of background image */

.offering-empowering-section>* {
    position: relative;
    z-index: 1;
}

.offering-section-title {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.offering-section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 680px;
}


.offering-empowering-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.offering-empowering-card {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px var(--shadow-light);
}

.offering-empowering-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: var(--accent-color);
}

.offering-empowering-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--text-primary);
}

.offering-empowering-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

html[data-theme="dark"] .offering-section--light-lock .offering-section-title {
    color: #1a1a1a;
}

html[data-theme="dark"] .offering-section--light-lock .offering-section-subtitle {
    color: #000000;
}


/* ========== Stats strip ========== */
.offering-stats {
    padding: 56px 24px;
}

.offering-stats.offering-bg-white {
    background: var(--bg-primary);
}

.offering-stats-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    text-align: center;
}

.offering-stat-num {
    font-size: clamp(40px, 4.6vw, 58px) !important;
    font-weight: 700 !important;
    color: var(--accent-color);
    margin: 0 0 8px;
}

.offering-stat-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ========== Our experience - horizontal cards ========== */
.offering-experience-section .offering-section-title,
.offering-experience-section .offering-section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.offering-experience-section .offering-section-subtitle {
    max-width: 720px;
}

.offering-experience-wrap {
    position: relative;
    padding: 0;
}

/* Nav buttons float on top of content, vertically centered on left/right */
.offering-experience-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    background: var(--bg-primary);
    color: var(--accent-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, opacity 0.2s, border-color 0.2s;
    box-shadow: 0 2px 12px var(--shadow-light);
    pointer-events: auto;
}

.offering-experience-btn:hover:not(:disabled) {
    background: var(--accent-color);
    color: #fff;
}

.offering-experience-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: var(--border-color);
    color: var(--text-tertiary);
}

/* Backward button hidden until user has scrolled forward; then always visible when enabled */
.offering-experience-prev:disabled {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.offering-experience-prev {
    left: 12px;
    transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.25s, visibility 0.25s;
}

.offering-experience-next {
    right: 12px;
}

.offering-experience-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.offering-experience-track::-webkit-scrollbar {
    display: none;
}

.offering-experience-card {
    flex: 0 0 min(320px, 90vw);
    display: block;
    scroll-snap-align: start;
    background: var(--bg-primary);
    color: inherit;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px var(--shadow-light);
    transition: opacity 0.3s ease;
}

/* Partially visible cards are dimmed so nav buttons stand out */
.offering-experience-card.offering-experience-card-dimmed {
    opacity: 0.45;
}

/* ========== Image strip after Our experience (bottom fade) ========== */
.offering-image-strip {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-primary);
}

.offering-image-strip-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.offering-image-strip-fade-bottom::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: min(120px, 60%);
    background: linear-gradient(to top,
            var(--bg-primary) 0%,
            transparent 100%);
    pointer-events: none;
}

.offering-experience-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--bg-tertiary);
}

.offering-experience-card-body {
    padding: 20px;
}

.offering-experience-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--text-primary);
}

.offering-experience-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.55;
}

/* ========== A healthy dose - solution blocks (same layout for all) ========== */

/* Section head: title left, intro right - matches reference */
.offering-solutions-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 56px;
}

.offering-solutions-head .offering-section-title {
    margin: 0;
    font-weight: 400;
    font-size: clamp(32px, 3.8vw, 44px);
}

.offering-solutions-intro {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* Two-column block: text + features left, large image right (or swapped for alternating blocks) */
.offering-solution-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    margin-bottom: 80px;
}

.offering-solution-block:last-child {
    margin-bottom: 0;
}

/* Default: text on left, image on right */
.offering-solution-block .offering-solution-text {
    order: 1;
}

.offering-solution-block .offering-solution-visual {
    order: 2;
}

/* Image left = visual first (column 1), text second (column 2) */
.offering-solution-block.offering-solution-image-left .offering-solution-text {
    order: 2;
}

.offering-solution-block.offering-solution-image-left .offering-solution-visual {
    order: 1;
}

/* Align image to the side it sits on: right-aligned when image is on right, left-aligned when on left */
.offering-solution-block.offering-solution-image-right .offering-solution-visual {
    margin-left: auto;
}

.offering-solution-block.offering-solution-image-left .offering-solution-visual {
    margin-right: auto;
}

.offering-solution-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin: 0 0 8px;
}

.offering-solution-block h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--text-primary);
}

.offering-solution-block .offering-solution-p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0 0 24px;
    line-height: 1.65;
}

.offering-solution-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 28px;
}

.offering-solution-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.45;
}

.offering-solution-feature svg {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    color: var(--accent-color);
}

/* Image widget: fixed portrait aspect ratio, reduced size so both columns feel equal */
.offering-solution-visual {
    position: relative;
    width: 100%;
    max-width: 72%;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    overflow: hidden;
}

.offering-solution-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Advisory image: 70% size, left edge fades into background (soft blend like reference) */
.offering-solution-visual--fade-left {
    max-width: 70%;
}

.offering-solution-visual--wide-rect {
    max-width: 92%;
    aspect-ratio: 16 / 10;
}

.offering-solution-visual--fade-left::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 55%;
    background: linear-gradient(to right,
            var(--bg-primary) 0%,
            var(--bg-primary) 15%,
            rgba(255, 255, 255, 0.6) 40%,
            transparent 100%);
    pointer-events: none;
}


/* ========== Insights - four cards ========== */
.offering-insights-section {
    padding-bottom: 80px;
    text-align: left;
}

/* Single inner container so "Insights" heading and cards share the same left edge */
.offering-insights-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.offering-insights-section .offering-insights-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 400;
    color: var(--text-primary);
    margin: 0 0 14px;
    letter-spacing: -0.02em;
    text-align: center;
}

.offering-insights-intro {
    max-width: 760px;
    margin: 0 auto 40px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
    text-align: center;
}

.offering-insights-grid-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 -24px;
    padding: 0 24px 12px;
    -webkit-overflow-scrolling: touch;
}

.offering-insights-grid {
    display: grid;
    grid-template-columns: repeat(4, 340px);
    gap: 24px;
}

.offering-insights-card {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px var(--shadow-light);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
    text-align: left;
}

.offering-insights-card:hover {
    box-shadow: 0 8px 24px var(--shadow-light);
    transform: translateY(-2px);
}

.offering-insights-card-visual {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.offering-insights-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.offering-insights-card-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin: 0;
    padding: 20px 20px 0;
    text-align: left;
}

.offering-insights-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    padding: 12px 20px 0;
    line-height: 1.35;
    text-align: left;
}

.offering-insights-card-tags {
    font-size: 14px;
    color: var(--accent-color);
    margin: 0;
    padding: 8px 20px 24px;
    line-height: 1.4;
    text-align: left;
}

.footer-actions {
    margin-top: 40px;
}

/* ========== Strategic partner CTA banner (dark green card) ========== */

/* ========== Footer CTA (single box) ========== */
.offering-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
}

.offering-cta-box {
    padding: 64px 48px;
    color: #fff;
}

.offering-cta-box:first-child {
    background: linear-gradient(135deg, #009fbe 0%, #32c4da 100%);
}

.offering-cta-box:last-child {
    background: linear-gradient(135deg, #32c4da 0%, #009fbe 100%);
}

.offering-cta-box h2 {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    margin: 0 0 12px;
}

.offering-cta-box p {
    font-size: 15px;
    opacity: 0.95;
    margin: 0 0 24px;
    line-height: 1.5;
}

.offering-cta-box .offering-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.offering-cta-box .offering-cta-btn.outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.offering-cta-box .offering-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ========== Hero outline CTA (Markets & Industries style) ========== */
.offering-hero-cta--outline {
    background: transparent;
    border: 2px solid #009fbe;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 13px;
    padding: 16px 32px;
    border-radius: 0;
    margin-top: 28px;
    display: inline-block;
}

.offering-hero-cta--outline:hover {
    background: #009fbe;
    color: #000;
    transform: none;
}

/* ========== IoT FAQ Accordion ========== */
.offering-faq-section {
    padding: 80px 24px;
}

.offering-faq-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.offering-faq-list {
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 4px;
    overflow: hidden;
}

.offering-faq-item {
    border-bottom: 1px solid var(--border-color, #e0e0e0);
}

.offering-faq-item:last-child {
    border-bottom: none;
}

.offering-faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    transition: background 0.15s;
}

.offering-faq-question:hover {
    background: var(--bg-secondary, #f5f5f5);
}

.offering-faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: #009fbe;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    transition: transform 0.2s;
}

.offering-faq-item[data-open="true"] .offering-faq-icon {
    transform: none;
}

.offering-faq-answer {
    padding: 0 24px 20px 64px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.offering-faq-answer p {
    margin: 0;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .offering-hero {
        grid-template-columns: 1fr;
    }

    .offering-hero--feature {
        gap: 32px;
        padding: 40px 24px 56px;
    }

    .offering-hero--feature .offering-hero-content {
        max-width: 100%;
    }

    .offering-hero--feature .offering-hero-title {
        font-size: clamp(26px, 6vw, 34px);
        max-width: 100%;
        margin-bottom: 18px;
    }

    .offering-hero--feature .offering-hero-subtitle {
        max-width: 100%;
        font-size: 15px;
        margin-bottom: 22px;
    }

    .offering-hero--feature .offering-hero-right {
        min-height: 300px;
    }

    /* Mobile: image on top, content below */
    .offering-hero-left {
        order: 2;
        padding: 48px 24px;
    }

    .offering-breadcrumbs {
        gap: 8px;
        margin-bottom: 16px;
        font-size: 12px;
    }

    .offering-hero-right {
        order: 1;
        min-height: 320px;
    }

    /* Smooth fade at bottom of hero image on mobile (blend into content below) */
    .offering-hero-right::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: min(180px, 45%);
        background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
        pointer-events: none;
        z-index: 1;
    }

    .offering-hero-icons {
        max-width: 100%;
    }

    .offering-empowering-grid {
        grid-template-columns: 1fr;
    }

    .offering-stats-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .offering-solutions-head {
        grid-template-columns: 1fr;
    }

    .offering-solution-block {
        grid-template-columns: 1fr;
    }

    /* Mobile: image on top, content below; align image to center */
    .offering-solution-block .offering-solution-text {
        order: 2;
    }

    .offering-solution-block .offering-solution-visual {
        order: 1;
        margin-left: auto;
        margin-right: auto;
    }

    .offering-cta {
        grid-template-columns: 1fr;
    }

    .offering-faq-section {
        padding: 48px 16px;
    }

    .offering-faq-question {
        font-size: 15px;
        padding: 16px 16px;
        gap: 12px;
    }

    .offering-faq-answer {
        padding: 0 16px 16px 52px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .offering-empowering-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .offering-hero-left {
        padding: 40px 20px;
    }

    .offering-hero--feature {
        padding: 28px 16px 40px;
    }

    .offering-hero--feature .offering-hero-title {
        font-size: clamp(24px, 8vw, 30px);
        margin-bottom: 16px;
    }

    .offering-hero--feature .offering-hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .offering-hero--feature .offering-hero-right {
        min-height: 220px;
        border-radius: 14px;
    }

    .offering-hero-cta--feature {
        width: 100%;
        justify-content: center;
        letter-spacing: 0.12em;
        font-size: 15px;
    }

    .offering-hero-title {
        font-size: 28px;
    }

    .offering-experience-wrap {
        padding: 0;
    }

    .offering-experience-btn {
        width: 38px;
        height: 38px;
    }

    .offering-experience-btn svg {
        width: 20px;
        height: 20px;
    }

    .offering-solution-wrap {
        padding: 48px 16px;
    }

    .offering-section-title {
        font-size: 26px;
    }

    .offering-solutions-head .offering-section-title {
        font-size: 30px;
    }

    .offering-solution-block {
        gap: 32px;
        margin-bottom: 56px;
    }

    .offering-solution-block h3 {
        font-size: 22px;
    }

    .offering-solution-features {
        grid-template-columns: 1fr;
    }

    .offering-cta-box {
        padding: 48px 24px;
    }
}

.offering-solution-visual {
    position: relative;
}

.offering-solution-overlay-text {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: clamp(42px, 5vw, 100px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: -0.02em;
    line-height: 1;
    pointer-events: none;
}

