/* DREBP landing — image layouts + Sunvine theme tokens */

.drebp-page {
    --drebp-mint: #f0f3f6;
    --drebp-lime: #b0cb1f;
    --drebp-radius: 16px;
    --drebp-shell-radius: 16px;
    --drebp-header-gap: 20px;
    --drebp-hero-side: clamp(16px, 2.5vw, 24px);
    --drebp-hero-pad-x: clamp(28px, 5.5vw, 80px);
    --drebp-overlay: linear-gradient(100deg, rgba(5, 8, 6, 0.9) 0%, rgba(5, 8, 6, 0.72) 46%, rgba(5, 8, 6, 0.28) 100%);
    background: #fff;
}

/* ─── HERO: full-bg, content left, form right ─── */
.drebp-hero {
    position: relative;
    margin: var(--drebp-header-gap) var(--drebp-hero-side) 0;
    padding: 70px var(--drebp-hero-pad-x) 88px;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background-color: #0a0f0c;
    background-image: var(--drebp-overlay), url(../images/Slider/slide1.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--drebp-shell-radius);
    overflow: hidden;
}

.drebp-hero .container {
    position: relative;
    z-index: 1;
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}

.drebp-hero > .container > .row {
    --bs-gutter-x: 3rem;
}

.drebp-hero-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 22px;
}

.drebp-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.drebp-hero-breadcrumb a:hover {
    color: #fff;
}

.drebp-hero-breadcrumb .sep {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}

.drebp-hero-breadcrumb .current {
    color: var(--drebp-lime);
}

@keyframes drebp-dot-blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(0.85);
    }
}

.drebp-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 16px;
    background: var(--drebp-lime);
    flex-shrink: 0;
    animation: drebp-dot-blink 1.4s ease-in-out infinite;
}

.drebp-badge-dot--alt {
    animation-delay: 0.7s;
}

.drebp-badge-sep {
    opacity: 0.85;
    margin: 0 1px;
}

.drebp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 16px;
    border: 1px solid rgba(176, 203, 31, 0.45);
    background: rgba(10, 28, 16, 0.72);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.drebp-hero-badge .drebp-badge-sep {
    color: rgba(255, 255, 255, 0.7);
}

.drebp-hero-title {
    font-family: var(--sunvin-heading-typography-font-family);
    font-size: clamp(36px, 4.8vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.drebp-hero-title .highlight {
    color: var(--drebp-lime);
    display: block;
}

.drebp-hero-desc {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin-bottom: 28px;
}

.drebp-hero-features {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(10px, 2vw, 15px);
    margin-top: 32px;
    max-width: 100%;
}

.drebp-hero-features span {
    font-size: clamp(11px, 1.05vw, 13px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 1 auto;
}

.drebp-hero-features i {
    color: var(--drebp-lime);
    font-size: 11px;
}

@media (min-width: 992px) and (max-width: 1399px) {
    .drebp-hero-features {
        gap: 12px;
    }

    .drebp-hero-features span {
        font-size: 11px;
        gap: 5px;
    }
}

.drebp-hero-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 24px;
}

.drebp-hero .drebp-btn-phone,
.drebp-cta-inner .drebp-btn-phone {
    background: rgba(24, 24, 24, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 7px 22px 7px 7px;
    min-height: 56px;
}

.drebp-hero .drebp-btn-phone:hover,
.drebp-cta-inner .drebp-btn-phone:hover {
    background: rgba(36, 36, 36, 0.95);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
}

.drebp-btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px 8px 8px;
    border-radius: 16px;
    background: rgba(12, 30, 18, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.drebp-btn-phone:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.drebp-hero .drebp-btn-phone .icon-circle,
.drebp-cta-inner .drebp-btn-phone .icon-circle {
    width: 42px;
    height: 42px;
    background: var(--drebp-lime);
}

.drebp-hero .drebp-btn-phone strong,
.drebp-cta-inner .drebp-btn-phone strong {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.drebp-btn-phone .icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: var(--sunvin-global-color);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.drebp-btn-phone .icon-circle i {
    color: #000;
}

.drebp-btn-phone small {
    display: block;
    font-size: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.85;
}

.drebp-btn-phone strong {
    font-size: 15px;
    font-weight: 600;
}

.drebp-btn-phone .phone-text {
    text-align: left;
    line-height: 1.35;
}

/* Primary CTA — green pill + inline arrow */
.drebp-btn-consult {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 16px;
    border: none;
    font-family: var(--sunvin-btn-typography-font-family);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    background-color: var(--sunvin-global-color);
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.25s, color 0.25s;
}

.drebp-btn-consult:hover {
    color: #000;
    background-color: #fff;
}

.drebp-btn-consult--dark:hover {
    color: #fff;
    background-color: #1a2e1a;
}

.drebp-hero .drebp-btn-consult.drebp-btn-consult--hero,
.drebp-cta-inner .drebp-btn-consult.drebp-btn-consult--hero {
    gap: 12px;
    padding: 7px 22px 7px 7px;
    min-height: 56px;
    background: rgba(24, 24, 24, 0.88) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #fff !important;
}

.drebp-hero .drebp-btn-consult.drebp-btn-consult--hero:hover,
.drebp-cta-inner .drebp-btn-consult.drebp-btn-consult--hero:hover {
    background: rgba(36, 36, 36, 0.95) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
}

.drebp-hero .drebp-btn-consult--hero .icon-circle,
.drebp-cta-inner .drebp-btn-consult--hero .icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: var(--drebp-lime);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.drebp-hero .drebp-btn-consult--hero .drebp-arrow,
.drebp-cta-inner .drebp-btn-consult--hero .drebp-arrow {
    color: #000;
    font-size: 18px;
    line-height: 1;
}

.drebp-hero .drebp-btn-consult--hero .consult-text,
.drebp-cta-inner .drebp-btn-consult--hero .consult-text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    white-space: nowrap;
}

.drebp-btn-consult .drebp-arrow {
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    transition: transform 0.2s;
}

.drebp-btn-consult:hover .drebp-arrow {
    transform: translateX(3px);
}

/* Quote form card */
.drebp-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 28px 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.drebp-form-card .form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 16px;
    border: 1px solid rgba(176, 203, 31, 0.35);
    background: rgba(176, 203, 31, 0.14);
    color: #4a5c0e;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
    line-height: 1;
}

.drebp-form-card .form-badge .drebp-badge-sep {
    color: #4a5c0e;
    opacity: 0.7;
}

.drebp-form-card .sunvin-title {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.drebp-form-card .form-sub {
    font-size: 13px;
    line-height: 1.5;
    color: #64748b;
    margin-bottom: 18px;
}

.drebp-form-card .form-label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #1a1a1a;
}

/* Override global theme form styles (base.css / style.css) */
.drebp-page .drebp-form-card form .form-control,
.drebp-page .drebp-form-card form .form-select,
.drebp-page .drebp-form-card form select.form-select {
    display: block;
    width: 100%;
    height: 44px !important;
    min-height: 44px;
    border-radius: 16px !important;
    padding: 9px 14px !important;
    font-size: 14px !important;
    font-weight: 400;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
}

.drebp-page .drebp-form-card form .form-control {
    border: 1px solid #dde3ea !important;
    background-color: #fff !important;
    color: #303030 !important;
}

.drebp-page .drebp-form-card form .form-select,
.drebp-page .drebp-form-card form select.form-select {
    border: 1px solid #dde3ea !important;
    background-color: #fff !important;
    color: #303030 !important;
    padding-right: 36px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 12px 8px !important;
    cursor: pointer;
}

.drebp-page .drebp-form-card form .form-select option {
    background: #fff;
    color: #303030;
}

.drebp-page .drebp-form-card form .form-control::placeholder {
    color: #94a3b8;
}

.drebp-page .drebp-form-card form .form-control:focus {
    border-color: var(--drebp-lime) !important;
    background-color: #fff !important;
    color: #303030 !important;
    box-shadow: 0 0 0 2px rgba(176, 203, 31, 0.18) !important;
    outline: none !important;
}

.drebp-page .drebp-form-card form .form-select:focus,
.drebp-page .drebp-form-card form select.form-select:focus {
    border-color: var(--drebp-lime) !important;
    background-color: #fff !important;
    color: #303030 !important;
    box-shadow: 0 0 0 2px rgba(176, 203, 31, 0.18) !important;
    outline: none !important;
}

.drebp-page .drebp-form-card .drebp-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    padding: 13px 24px;
    border: 1px solid #1a1a1a !important;
    border-radius: 16px !important;
    font-family: var(--sunvin-btn-typography-font-family);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a !important;
    background-color: #e9ebee !important;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
}

.drebp-page .drebp-form-card .drebp-form-submit:hover {
    background-color: #dcdfe3 !important;
    border-color: #000 !important;
    color: #000 !important;
}

.drebp-form-submit .drebp-arrow {
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
}

.drebp-form-card .drebp-form-note {
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
    margin: 10px 0 0;
}

/* ─── ABOUT ─── */
.drebp-section {
    padding: 80px 0;
}

.drebp-about-layout {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
    grid-template-areas:
        "head"
        "content"
        "stats";
}

@media (min-width: 992px) {
    .drebp-about-layout {
        grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
        grid-template-rows: auto 1fr;
        column-gap: 48px;
        row-gap: 24px;
        grid-template-areas:
            "head stats"
            "content stats";
        align-items: stretch;
    }
}

.drebp-about-head {
    grid-area: head;
}

.drebp-about-content {
    grid-area: content;
}

.drebp-about-stats {
    grid-area: stats;
    display: flex;
    align-self: stretch;
    min-height: 0;
    width: 100%;
    justify-content: center;
}

.drebp-pill-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.drebp-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 16px;
    background: rgba(176, 203, 31, 0.12);
    border: 1px solid rgba(176, 203, 31, 0.25);
    font-size: 13px;
    font-weight: 500;
    color: #303030;
}

.drebp-pill i {
    color: var(--sunvin-global-color);
}

.drebp-info-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 16px;
    margin-bottom: 14px;
    transition: box-shadow 0.2s;
}

.drebp-info-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.drebp-info-card .icon-box {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    min-width: 64px;
    max-width: 64px;
    min-height: 64px;
    max-height: 64px;
    border-radius: 16px;
    background: #B0CB1F;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.drebp-info-card .icon-box img.drebp-why-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    max-width: 32px;
    min-height: 32px;
    max-height: 32px;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
    mix-blend-mode: lighten;
}

.drebp-info-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #000;
}

.drebp-info-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.drebp-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: 100%;
}

@media (min-width: 992px) {
    .drebp-stat-grid {
        grid-template-rows: 1fr 1fr;
        width: 100%;
        height: 100%;
        flex: 1;
    }
}

.drebp-stat-box {
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
}

@media (min-width: 992px) {
    .drebp-stat-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        min-height: 0;
        padding: 24px 18px;
    }
}

.drebp-stat-box h3 {
    font-size: clamp(24px, 2.8vw, 32px);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.1;
}

.drebp-stat-box p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.drebp-stat-solid,
.drebp-stat-light {
    background: var(--sunvin-global-color);
    border: none;
    color: #fff;
}

.drebp-stat-solid h3,
.drebp-stat-solid p,
.drebp-stat-light h3,
.drebp-stat-light p {
    color: #fff;
}

.drebp-stat-solid p,
.drebp-stat-light p {
    opacity: 0.92;
}

/* ─── MINT SECTIONS (process, scope, returns) ─── */
.drebp-section-mint {
    padding: 80px 0;
    background: var(--drebp-mint);
}

.drebp-section-mint .sunvin-heading-desc {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Process */
.drebp-process-row {
    --drebp-process-mid-width: clamp(140px, 18vw, 200px);
    --drebp-process-line-inset: clamp(8px, 1.5vw, 16px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--drebp-process-mid-width) minmax(0, 1fr);
    column-gap: clamp(20px, 4vw, 40px);
    align-items: center;
    max-width: 980px;
    margin: 56px auto 0;
    padding-bottom: 8px;
}

.drebp-process-card {
    background: #fff;
    border: 1px solid rgba(176, 203, 31, 0.25);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    grid-row: 1;
}

.drebp-process-card:first-child {
    grid-column: 1;
}

.drebp-process-card:last-child {
    grid-column: 3;
}

.drebp-process-card .avatar {
    width: 64px;
    height: 64px;
    min-width: 64px;
    max-width: 64px;
    min-height: 64px;
    max-height: 64px;
    border-radius: 16px;
    background: #B0CB1F;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.drebp-process-card .avatar img.drebp-why-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    max-width: 32px;
    min-height: 32px;
    max-height: 32px;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
    mix-blend-mode: lighten;
}

.drebp-process-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.drebp-process-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.drebp-process-mid {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    width: 100%;
    padding: 0 var(--drebp-process-line-inset);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    z-index: 2;
    pointer-events: none;
    align-self: center;
}

.drebp-process-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.drebp-process-step__line {
    flex: 1 1 0;
    height: 1px;
    min-width: 12px;
    background: var(--drebp-lime);
    opacity: 0.85;
}

.drebp-process-step__label {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    color: var(--drebp-lime);
    white-space: nowrap;
    text-align: center;
}

.drebp-process-step--ppa .drebp-process-step__line {
    background: #b8c5d4;
    opacity: 1;
}

.drebp-process-step--ppa .drebp-process-step__label {
    color: #8fa3b8;
    font-weight: 500;
}

/* Theme ihbox cards (ground mount style) */
.drebp-ihbox-cards {
    margin-top: 10px;
}

.drebp-ihbox-cards .sunvin-miconheading-style-1.swiper-slide {
    height: auto;
}

.drebp-ihbox-cards .sunvin-ihbox-icon-wrapper {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px;
    max-width: 64px;
    min-height: 64px;
    max-height: 64px;
    padding: 0 !important;
    border-radius: 16px !important;
    background: #B0CB1F !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.drebp-ihbox-cards .sunvin-ihbox-icon-wrapper img.drebp-why-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    max-width: 32px;
    min-height: 32px;
    max-height: 32px;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
    mix-blend-mode: lighten;
}

.drebp-page .sunvin-ihbox-style-1 .sunvin-ihbox-box {
    border-radius: var(--drebp-radius);
}

.drebp-page .sunvin-ihbox-style-1 .sunvin-ihbox-icon-wrapper,
.drebp-page .sunvin-ihbox-style-1 .sunvin-ihbox-svg-wrapper {
    border-radius: var(--drebp-radius);
}

.drebp-page .sunvin-ihbox-style-1 .sunvin-box-number-wrap {
    border-radius: var(--drebp-radius) 0 0;
}

.drebp-page .sunvin-ihbox-style-1 .sunvin-box-number-wrap::after,
.drebp-page .sunvin-ihbox-style-1 .sunvin-box-number-wrap::before {
    border-bottom-right-radius: var(--drebp-radius);
}

.drebp-page .sunvin-ihbox-style-1 .sunvin-ihbox-box-number {
    border-radius: var(--drebp-radius);
}

/* Returns */
.drebp-phase-row {
    margin-top: 40px;
}

.drebp-phase-card {
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    height: 100%;
    background: #fff;
    border: 1px solid #e8edf2;
}

.drebp-phase-card.peak {
    background: var(--sunvin-global-color);
    border-color: var(--sunvin-global-color);
    color: #fff;
    transform: scale(1.04);
    box-shadow: none;
}

.drebp-phase-card .phase-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    margin-bottom: 6px;
}

.drebp-phase-card.peak .phase-label,
.drebp-phase-card.peak .years,
.drebp-phase-card.peak h3,
.drebp-phase-card.peak .per-month {
    color: #fff;
}

.drebp-phase-card.peak .phase-label {
    opacity: 0.92;
}

.drebp-phase-card.peak .per-month {
    opacity: 0.88;
}

.drebp-phase-card .years {
    font-weight: 600;
    margin-bottom: 12px;
}

.drebp-phase-card h3 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 600;
    margin-bottom: 4px;
}

.drebp-phase-card .per-month {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
}

.drebp-disclaimer {
    margin-top: 28px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 16px;
    font-size: 13px;
    color: #64748b;
    text-align: center;
}

/* ─── FINANCIALS ─── */
.drebp-fin-layout {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
    grid-template-areas:
        "head"
        "highlight"
        "table"
        "sidebar";
}

@media (min-width: 992px) {
    .drebp-fin-layout {
        grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
        grid-template-rows: auto 1fr;
        column-gap: 48px;
        row-gap: 28px;
        grid-template-areas:
            "head highlight"
            "table sidebar";
        align-items: start;
    }

    .drebp-fin-highlight {
        grid-area: highlight;
        align-self: start;
        width: 100%;
        margin-bottom: 0;
    }

    .drebp-fin-sidebar {
        display: flex;
        flex-direction: column;
        align-self: stretch;
        min-height: 0;
        height: 100%;
        gap: 14px;
    }

    .drebp-fin-metric {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 0;
    }

    .drebp-fin-metric p {
        margin-bottom: 0;
    }

    .drebp-fin-sidebar .drebp-fin-card {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 0;
        margin-bottom: 0;
    }
}

.drebp-fin-head {
    grid-area: head;
    align-self: start;
}

.drebp-fin-highlight {
    grid-area: highlight;
}

.drebp-fin-sidebar {
    grid-area: sidebar;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.drebp-fin-table-wrap {
    grid-area: table;
    align-self: stretch;
}

.drebp-fin-table {
    border-radius: 16px;
    overflow: hidden;
    margin-top: 0;
}

.drebp-fin-table thead th {
    background: var(--drebp-mint);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
    padding: 14px 20px;
    border-color: #e8edf2;
}

.drebp-fin-table tbody td {
    padding: 14px 20px;
    font-size: 14px;
    border-color: #e8edf2;
    background: #fff;
}

.drebp-fin-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(176, 203, 31, 0.12);
    border: 1px solid rgba(176, 203, 31, 0.3);
    margin-bottom: 24px;
}

.drebp-fin-highlight .icon-wrap {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 16px;
    background: var(--sunvin-global-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.drebp-fin-highlight h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--sunvin-global-color);
    margin-bottom: 2px;
}

.drebp-fin-highlight p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.drebp-fin-metric .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    margin-bottom: 4px;
}

.drebp-fin-metric h3 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 6px;
}

.drebp-fin-metric p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 24px;
}

.drebp-fin-metric-box {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 16px;
    background: rgba(176, 203, 31, 0.12);
    
}

.drebp-fin-metric-box p:last-child {
    margin-bottom: 0;
}

.drebp-fin-card {
    background: var(--sunvin-global-color);
    color: #fff;
    border-radius: 16px;
    padding: 22px 24px;
    margin-bottom: 14px;
}

.drebp-fin-card .label,
.drebp-fin-card h3,
.drebp-fin-card p {
    color: #fff;
}

.drebp-fin-card .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.92;
    margin-bottom: 8px;
}

.drebp-fin-card h3 {
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 700;
    margin-bottom: 6px;
}

.drebp-fin-card p {
    font-size: 13px;
    margin: 0;
    opacity: 0.88;
}

/* ─── WHY SUNVINE (reference card grid) ─── */
.drebp-why-section {
    padding: 80px 0;
    background: #fff !important;
}

.drebp-why-ihbox {
    margin-top: 8px;
}

.drebp-why-ihbox .drebp-why-card {
    padding-top: 0;
    overflow: visible;
}

.drebp-why-ihbox .drebp-why-card .sunvin-ihbox-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    min-height: 230px;
    padding: 32px 22px 28px;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    border-bottom: 3px solid #e0e0e0;
    background: #ececec;
    box-shadow: none;
    overflow: visible;
}

.drebp-why-ihbox .sunvin-ihbox-icon {
    margin-bottom: 0;
}

.drebp-why-ihbox .sunvin-ihbox-icon-wrapper {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px;
    max-width: 64px;
    min-height: 64px;
    max-height: 64px;
    padding: 0 !important;
    border-radius: 16px !important;
    background: #B0CB1F !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.drebp-why-ihbox .drebp-why-card,
.drebp-why-ihbox .drebp-why-card:hover,
.drebp-page .drebp-why-ihbox .sunvin-ihbox-style-1:hover {
    transform: none;
}

.drebp-why-ihbox .sunvin-ihbox-icon-wrapper img.drebp-why-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    max-width: 32px;
    min-height: 32px;
    max-height: 32px;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
    mix-blend-mode: lighten;
}

.drebp-why-ihbox .sunvin-element-title {
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 600;
    line-height: 1.1;
    margin-top: 22px;
    margin-bottom: 0;
    color: #000;
}

.drebp-why-ihbox .sunvin-heading-desc {
    margin-top: auto;
    padding-top: 20px;
    font-size: 13px;
    line-height: 1.5;
    color: #64748b;
    max-width: 100%;
}

/* ─── CTA (contained banner) ─── */
.drebp-cta-wrap {
    padding: 0 0 80px;
    background: #fff;
}

.drebp-cta-banner {
    position: relative;
    border-radius: 16px;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 32px;
    overflow: hidden;
}

.drebp-cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(10, 20, 15, 0.78);
}

.drebp-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    width: 100%;
    text-align: center;
}

.drebp-cta-inner .sunvin-title {
    color: #fff;
}

.drebp-cta-inner p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
    margin: 0 auto;
}

.drebp-cta-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 24px;
    margin-top: 4px;
}

/* WhatsApp float */
.drebp-wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    text-decoration: none;
}

.drebp-wa-float:hover {
    color: #fff;
    transform: scale(1.06);
}

/* ─── Responsive ─── */

@media (max-width: 991px) {
    .drebp-page {
        --drebp-shell-radius: 16px;
        --drebp-header-gap: 16px;
        --drebp-hero-pad-x: clamp(20px, 4vw, 40px);
    }

    .drebp-hero {
        margin: var(--drebp-header-gap) var(--drebp-hero-side) 0;
        padding: 50px var(--drebp-hero-pad-x) 60px;
        min-height: auto;
        border-radius: var(--drebp-shell-radius);
    }

    .drebp-hero-desc {
        max-width: none;
    }

    .drebp-form-card {
        margin-top: 40px;
    }

    .drebp-section,
    .drebp-section-mint,
    .drebp-why-section {
        padding: 64px 0;
    }

    .drebp-cta-wrap {
        padding-bottom: 64px;
    }

    .drebp-cta-banner {
        min-height: 340px;
        padding: 56px 28px;
    }

    .drebp-phase-card.peak {
        transform: none;
    }

    .drebp-fin-highlight {
        margin-bottom: 0;
    }

    .drebp-fin-layout {
        gap: 24px;
    }
}

@media (max-width: 860px) {
    .drebp-process-row {
        --drebp-process-mid-width: 100%;
        --drebp-process-line-inset: 12px;
        grid-template-columns: 1fr;
        row-gap: 24px;
        max-width: 520px;
        margin-top: 40px;
    }

    .drebp-process-card:first-child,
    .drebp-process-card:last-child,
    .drebp-process-mid {
        grid-column: 1;
        grid-row: auto;
    }

    .drebp-process-mid {
        max-width: 320px;
        margin: 0 auto;
        padding: 8px var(--drebp-process-line-inset);
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .drebp-page {
        --drebp-hero-side: 12px;
        --drebp-hero-pad-x: 20px;
    }

    .drebp-section,
    .drebp-section-mint,
    .drebp-why-section {
        padding: 56px 0;
    }

    .drebp-hero {
        padding: 40px var(--drebp-hero-pad-x) 48px;
    }

    .drebp-hero-title {
        font-size: clamp(28px, 8vw, 40px);
    }

    .drebp-hero-breadcrumb {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .drebp-form-card {
        padding: 24px 20px;
        margin-top: 32px;
    }

    .drebp-info-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 16px;
    }

    .drebp-stat-grid {
        grid-template-columns: 1fr;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .drebp-stat-box {
        padding: 22px 16px;
        width: 100%;
    }

    .drebp-about-stats {
        justify-content: center;
    }

    .drebp-phase-card {
        padding: 28px 18px;
    }

    .drebp-phase-card h3 {
        font-size: clamp(28px, 8vw, 36px);
    }

    .drebp-disclaimer {
        padding: 14px 16px;
        font-size: 12px;
        text-align: left;
    }

    .drebp-fin-table thead th,
    .drebp-fin-table tbody td {
        padding: 12px 14px;
        font-size: 13px;
    }

    .drebp-fin-card {
        padding: 18px 20px;
    }

    .drebp-why-ihbox .drebp-why-card .sunvin-ihbox-box {
        min-height: auto;
        padding: 24px 18px 22px;
    }

    .drebp-cta-banner {
        min-height: 300px;
        padding: 48px 20px;
    }

    .drebp-cta-wrap {
        padding-bottom: 56px;
    }

    .drebp-wa-float {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .drebp-hero-features {
        gap: 10px 14px;
    }

    .drebp-hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .drebp-btn-phone,
    .drebp-hero-btns .drebp-btn-consult--hero,
    .drebp-cta-btns .drebp-btn-consult--hero {
        width: 100%;
        justify-content: center;
    }

    .drebp-cta-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .drebp-btn-phone .phone-text {
        text-align: center;
    }

    .drebp-process-card {
        padding: 28px 20px;
    }
}

@media (max-width: 575px) {
    .drebp-hero-badge {
        font-size: 10px;
        padding: 6px 12px;
        letter-spacing: 0.04em;
    }

    .drebp-pill-badges {
        gap: 8px;
    }

    .drebp-pill {
        font-size: 12px;
        padding: 7px 12px;
    }

    .drebp-hero .drebp-btn-consult.drebp-btn-consult--hero,
    .drebp-cta-inner .drebp-btn-consult--hero {
        white-space: normal;
        text-align: center;
        justify-content: center;
    }
}
