/* CellRechargeBox CSS - Clean Slate */

/* Hero Section */
.crb-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('../img/cellrecharge-hero-clean-v1.webp');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 40px;
    font-family: 'Outfit', 'Inter', sans-serif;
    color: #fff;
}

.crb-hero-inner {
    width: min(1640px, 95%);
    margin: 0 auto;
    position: relative;
    padding-top: 80px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Logo */
.crb-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #e4d3b6;
    margin-bottom: 60px;
}

.crb-logo-mark {
    font-size: 42px;
    color: #d1aa68;
}

/* Main Content */
.crb-content {
    max-width: 850px;
    margin-bottom: 60px;
}

.crb-title {
    font-size: clamp(48px, 6.5vw, 96px);
    line-height: 1.1;
    font-weight: 500;
    margin: 0 0 24px;
    color: #fff;
    font-family: Georgia, serif;
}

.crb-title-highlight {
    color: #d1aa68;
    display: block;
}

.crb-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.6;
    color: #e4d3b6;
    margin: 0 0 40px;
    font-weight: 400;
}

/* Buttons */
.crb-actions {
    display: flex;
    gap: 24px;
    align-items: center;
}

.crb-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.crb-button--primary {
    background: linear-gradient(135deg, #ae8b51 0%, #d5b577 50%, #ae8b51 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(209, 170, 104, 0.2);
}

.crb-button--primary:hover {
    box-shadow: 0 6px 20px rgba(209, 170, 104, 0.4);
    transform: translateY(-2px);
}

.crb-button-arrow {
    margin-left: 12px;
    font-size: 18px;
}

.crb-button--secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.crb-button--secondary:hover {
    border-color: #d1aa68;
    color: #d1aa68;
}

.crb-button-play {
    margin-left: 12px;
    font-size: 14px;
    color: #d1aa68;
    border: 1px solid #d1aa68;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
}

/* Trustbar */
.crb-trustbar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.crb-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.crb-trust-icon {
    font-size: 42px;
    color: #d1aa68;
    line-height: 1;
}

.crb-trust-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.crb-trust-title {
    font-size: 12px;
    font-weight: 700;
    color: #d1aa68;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.crb-trust-copy {
    font-size: 13px;
    color: #b0ada8;
    line-height: 1.4;
}

/* Mobile */
@media (max-width: 768px) {
    .crb-hero {
        background-image: url('../img/cellrecharge-hero-clean-v2.webp');
        min-height: auto;
        padding-top: 60px;
        background-position: center;
    }
    
    .crb-hero-inner {
        padding-top: 20px;
    }

    .crb-title {
        font-size: 42px;
    }

    .crb-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .crb-trustbar {
        flex-direction: column;
        gap: 24px;
        padding-top: 32px;
        padding-bottom: 40px;
    }
}

/* Science Section */
.crb-science {
    position: relative;
    padding: 0; /* Remove gap */
    background: #000; /* Match banner background if needed, or white. Let's use #000 to seamlessly blend with hero */
}

.crb-science-inner {
    width: 100%; /* Full width */
    margin: 0 auto;
    overflow: hidden; /* To allow cropping if we use negative margins to hide image borders */
}

.crb-science-banner {
    width: calc(100% + 4px); /* Slight stretch to crop out any baked-in 1px border */
    margin-left: -2px;
    margin-top: -2px;
    position: relative;
    container-type: inline-size;
    container-name: scienceBanner;
}

.crb-science-banner img {
    display: block;
    width: 100%;
    height: auto;
}

/* Absolute Texts over Image */
.crb-sci-intro {
    position: absolute;
    top: 8%;
    left: 9.5%;
    width: 35%;
}
.crb-sci-kicker {
    font-size: 0.6cqw;
    color: #ae8b51;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin: 0 0 1cqw;
    text-transform: uppercase;
}
.crb-sci-title {
    font-size: 2.3cqw;
    font-family: Georgia, serif;
    color: #27231f;
    line-height: 1.1;
    margin: 0 0 1cqw;
}
.crb-sci-copy {
    font-size: 0.85cqw;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

.crb-sci-card {
    position: absolute;
    top: 8.5%;
    width: 13%;
}
.crb-sci-card--1 { left: 41%; }
.crb-sci-card--2 { left: 63.5%; }
.crb-sci-card--3 { left: 84%; }

.crb-sci-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1cqw;
}
.crb-sci-card-title {
    font-size: 1cqw;
    font-weight: 700;
    color: #27231f;
    margin: 0;
    line-height: 1.3;
    position: relative;
    left: 2.5cqw;
    top: 1.2cqw;
}
.crb-sci-card-copy {
    font-size: 0.95cqw;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
    position: relative;
    top: 1cqw;
    left: -1.5cqw;
}

.crb-sci-card--2 .crb-sci-card-copy {
    left: -7cqw;
    width: 16cqw;
    top: 2cqw;
}

.crb-sci-card--2 .crb-sci-card-title {
    position: relative;
    left: -2.5cqw;
    top: 1.8cqw;
}

.crb-sci-card--3 .crb-sci-card-title {
    position: relative;
    left: -5cqw;
    top: 1cqw;
}

.crb-sci-card--3 .crb-sci-card-copy {
    position: relative;
    left: -9.5cqw;
    top: 0.5cqw;
    width: 16cqw;
}

.crb-sci-synergy {
    position: absolute;
    top: 70%;
    left: 54%;
    width: 20%;
    display: flex;
    flex-direction: column;
}
.crb-sci-synergy-title {
    font-size: 0.8cqw;
    font-weight: 700;
    color: #ae8b51;
    margin: 0 0 1cqw;
    letter-spacing: 0.1em;
}
.crb-sci-synergy-copy {
    font-size: 0.95cqw;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

/* Produktdetails Section */
.crb-details-section {
    position: relative;
    width: 100%;
    background: #fff;
    overflow: hidden;
}

.crb-details-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    container-type: inline-size;
    container-name: detailsContainer;
}

.crb-details-bg {
    display: block;
    width: 100%;
    height: auto;
}

/* Header Text (Top Left) */
.crb-details-header {
    position: absolute;
    top: 11%;
    left: 4%;
    width: 28%;
    max-width: 28%;
    z-index: 3;
}

.crb-details-kicker {
    font-size: 0.85cqw;
    font-weight: 700;
    color: #ae8b51;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.6cqw;
}

.crb-details-title {
    font-size: 2.3cqw;
    font-family: Georgia, serif;
    color: #27231f;
    line-height: 1.15;
    font-weight: 400;
    margin: 0;
}

/* 9 Cards Grid (Top Right) - Stretches vertically to fill top-to-bottom space */
.crb-details-grid {
    position: absolute;
    top: 11%;
    bottom: 11%;
    left: 54.5%;
    width: 43.5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0.9cqw;
    z-index: 2;
}

.crb-detail-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(220, 220, 220, 0.7);
    border-radius: 8px;
    padding: 1cqw 1.1cqw;
    display: flex;
    align-items: center;
    gap: 0.7cqw;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.25s ease;
    height: 100%;
    box-sizing: border-box;
}

.crb-detail-card:hover {
    transform: translateY(-2px);
    border-color: #d1aa68;
    box-shadow: 0 6px 18px rgba(209, 170, 104, 0.15);
}

.crb-card-icon {
    color: #ae8b51;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crb-card-icon svg {
    width: 1.5cqw;
    height: 1.5cqw;
    min-width: 18px;
    min-height: 18px;
}

.crb-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.3cqw;
}

.crb-card-title {
    font-size: 0.78cqw;
    font-weight: 700;
    color: #27231f;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
}

.crb-card-text {
    font-size: 0.68cqw;
    color: #555;
    line-height: 1.4;
    margin: 0;
}

/* Target Audience Section ("FÜR WEN IST DIE CELLRECHARGEBOX?") */
.crb-audience-section {
    width: 100%;
    background: #faf8f5;
    padding: 60px 0 80px;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.crb-audience-inner {
    width: min(1640px, 92%);
    margin: 0 auto;
}

.crb-audience-kicker {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #ae8b51;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.crb-audience-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.crb-audience-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crb-audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.crb-audience-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.crb-audience-card:hover img {
    transform: scale(1.04);
}

/* Responsiveness for Mobile & Tablet */
@media (max-width: 1200px) {
    .crb-audience-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 1024px) {
    .crb-details-container {
        display: flex;
        flex-direction: column;
        padding: 40px 24px;
        background: #fbf9f6;
    }

    .crb-details-bg {
        position: relative;
        width: 100%;
        order: 2;
        margin: 24px 0;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .crb-details-header {
        position: static;
        max-width: 100%;
        width: 100%;
        order: 1;
        margin-bottom: 8px;
    }

    .crb-details-kicker {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .crb-details-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .crb-details-grid {
        position: static;
        width: 100%;
        order: 3;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-top: 8px;
    }

    .crb-detail-card {
        padding: 16px;
        gap: 12px;
        background: #ffffff;
        border-radius: 8px;
        border: 1px solid #e8e4de;
    }

    .crb-card-icon svg {
        width: 22px;
        height: 22px;
    }

    .crb-card-title {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .crb-card-text {
        font-size: 13px;
        line-height: 1.4;
    }
}

@media (max-width: 768px) {
    .crb-audience-section {
        padding: 40px 0 60px;
    }

    .crb-audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .crb-details-container {
        padding: 28px 16px;
    }

    .crb-details-title {
        font-size: 26px;
    }

    .crb-details-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Benefits Section ("NACHHALTIGE VORTEILE - Mehr Energie. Mehr du.") */
.crb-benefits-section {
    width: 100%;
    background: #000000;
    padding: 75px 0;
    font-family: 'Outfit', 'Inter', sans-serif;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.crb-benefits-inner {
    width: min(1680px, 94%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.crb-benefits-header {
    flex-shrink: 0;
    max-width: 340px;
}

.crb-benefits-kicker {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #d1aa68;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.crb-benefits-title {
    font-size: clamp(36px, 3.8vw, 54px);
    font-family: Georgia, serif;
    color: #ffffff;
    line-height: 1.12;
    font-weight: 400;
    margin: 0;
}

.crb-benefits-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
}

.crb-benefit-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    padding: 0 20px;
    position: relative;
}

.crb-benefit-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 5%;
    height: 90%;
    width: 1px;
    background: rgba(255, 255, 255, 0.16);
}

.crb-benefit-icon {
    color: #d1aa68;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.crb-benefit-icon svg {
    width: 44px;
    height: 44px;
}

.crb-benefit-item:hover .crb-benefit-icon {
    transform: translateY(-4px) scale(1.1);
}

.crb-benefit-text {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.35;
    letter-spacing: 0.02em;
}

/* Responsiveness for Benefits Section */
@media (max-width: 1200px) {
    .crb-benefits-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 36px;
    }

    .crb-benefits-header {
        max-width: 100%;
    }

    .crb-benefits-grid {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 16px;
    }

    .crb-benefit-item:not(:last-child)::after {
        display: none;
    }

    .crb-benefit-item {
        padding: 20px 16px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 640px) {
    .crb-benefits-section {
        padding: 50px 0;
    }

    .crb-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .crb-benefit-text {
        font-size: 13px;
    }

    .crb-benefit-icon svg {
        width: 36px;
        height: 36px;
    }
}

/* 48-Minuten-Session & Entwickelt für Menschen Section */
.crb-session-steps-section {
    width: 100%;
    background: #ffffff;
    padding: 95px 0 110px;
    font-family: 'Outfit', 'Inter', sans-serif;
    color: #27231f;
}

.crb-session-steps-inner {
    width: min(1580px, 92%);
    margin: 0 auto;
}

/* Header */
.crb-steps-header {
    text-align: center;
    margin-bottom: 52px;
}

.crb-steps-title {
    font-size: clamp(32px, 3.2vw, 48px);
    font-family: Georgia, serif;
    color: #27231f;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0 0 12px 0;
}

.crb-steps-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #888888;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.crb-steps-dot {
    color: #c5a059;
    font-size: 16px;
}

/* 4 Step Cards Grid */
.crb-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 95px;
}

.crb-step-card {
    background: #ffffff;
    border: 1px solid #f1f0ea;
    border-radius: 20px;
    padding: 28px 24px 22px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.025);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crb-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
}

.crb-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #c5a059;
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.crb-step-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #27231f;
    margin: 0 0 12px 0;
}

.crb-step-card-copy {
    font-size: 13px;
    color: #777777;
    line-height: 1.5;
    margin: 0 0 24px 0;
    min-height: 54px;
}

.crb-step-card-copy strong {
    font-weight: 700;
    color: #222222;
}

.crb-step-card-img {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f5f5f5;
}

.crb-step-card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Entwickelt für Menschen Block */
.crb-people-block {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.crb-people-left {
    flex: 0 0 32%;
    max-width: 32%;
    padding-top: 10px;
}

.crb-people-title {
    font-size: clamp(32px, 3.2vw, 44px);
    font-family: Georgia, serif;
    color: #27231f;
    line-height: 1.18;
    font-weight: 400;
    margin: 0 0 36px 0;
}

.crb-people-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.crb-people-checklist li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #444444;
}

.crb-check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #c5a059;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Right Photo Collage */
.crb-people-right {
    flex: 1;
    min-width: 0;
}

.crb-collage-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 0.9fr 0.9fr;
    gap: 14px;
    align-items: stretch;
    height: 420px;
}

.crb-collage-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.crb-collage-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Dark Badge on Main Photo */
.crb-collage-main {
    position: relative;
    overflow: visible !important;
}

.crb-collage-main img {
    border-radius: 16px;
    overflow: hidden;
}

.crb-floating-badge {
    position: absolute;
    bottom: -18px;
    left: -18px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px 22px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 3px;
    white-space: nowrap;
}

.crb-badge-kicker {
    font-size: 14px;
    color: #d5b577;
    font-weight: 600;
    line-height: 1.3;
}

.crb-badge-title {
    font-size: 15px;
    color: #d5b577;
    font-weight: 700;
    line-height: 1.3;
}

.crb-collage-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.crb-collage-sm {
    flex: 1;
}

/* Responsiveness for Session Steps & People Block */
@media (max-width: 1200px) {
    .crb-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .crb-people-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .crb-people-left {
        flex: 100%;
        max-width: 100%;
        padding-top: 0;
    }

    .crb-people-right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .crb-session-steps-section {
        padding: 55px 0;
    }

    .crb-steps-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .crb-collage-grid {
        grid-template-columns: 1fr 1fr;
        height: auto;
        gap: 12px;
    }

    .crb-collage-main {
        grid-column: span 2;
        height: 280px;
    }

    .crb-collage-man {
        height: 220px;
    }

    .crb-collage-stack {
        height: 220px;
    }

    .crb-collage-device {
        grid-column: span 2;
        height: 220px;
    }
}

/* Final CTA Section with fbck1.webp Background (No Border) */
.crb-final-cta-section {
    width: 100%;
    background: #000000 url('../img/fbck1.webp') no-repeat center right / cover;
    padding: 100px 0;
    font-family: 'Outfit', 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.crb-final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.8) 70%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.crb-final-cta-container {
    width: min(1680px, 94%);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 480px;
}

.crb-final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.crb-cta-kicker {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #d5b577;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.crb-cta-line {
    width: 40px;
    height: 1.5px;
    background: #d5b577;
    margin: 12px 0 24px;
}

.crb-cta-title {
    font-size: clamp(32px, 3.2vw, 44px);
    font-family: Georgia, serif;
    color: #d5b577;
    line-height: 1.18;
    font-weight: 400;
    margin: 0 0 24px 0;
}

.crb-cta-desc {
    font-size: 14px;
    color: #d0d0d0;
    line-height: 1.6;
    margin: 0 0 18px 0;
}

.crb-cta-target {
    font-size: 14px;
    font-weight: 500;
    color: #b8b8b8;
    line-height: 1.5;
    margin: 0 0 36px 0;
}

.crb-cta-button {
    display: inline-block;
    padding: 16px 34px;
    background: linear-gradient(135deg, #e5c07b 0%, #b88a44 100%);
    color: #000000;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(184, 138, 68, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crb-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(184, 138, 68, 0.5);
    color: #000000;
}

/* Responsiveness for Final CTA */
@media (max-width: 992px) {
    .crb-final-cta-container {
        padding: 45px 35px;
        min-height: auto;
        border-radius: 20px;
    }

    .crb-final-cta-container::before {
        width: 100%;
        background: rgba(0, 0, 0, 0.88);
    }

    .crb-final-cta-content {
        max-width: 100%;
    }
}
