/* =========================================================
   MADINA BIZ TECH — V2 HOMEPAGE
   Development stylesheet
   ========================================================= */

.mbt-v2-home {
    --mbt-dark: #111827;
    --mbt-dark-2: #1f2937;
    --mbt-accent: #f59e0b;
    --mbt-accent-2: #f97316;
    --mbt-light: #f8fafc;
    --mbt-white: #ffffff;
    --mbt-text: #374151;
    --mbt-muted: #6b7280;
    --mbt-border: #e5e7eb;
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--mbt-text);
    background: #fff;
    overflow: hidden;
}

.mbt-v2-home *,
.mbt-v2-home *::before,
.mbt-v2-home *::after {
    box-sizing: border-box;
}

.mbt-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   HERO
   ========================= */

.mbt-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 75% 45%, rgba(245,158,11,.22), transparent 30%),
        linear-gradient(120deg, #111827 0%, #182536 55%, #0b1220 100%);
    color: #fff;
}

.mbt-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17,24,39,.98) 0%, rgba(17,24,39,.85) 45%, rgba(17,24,39,.28) 100%);
}

.mbt-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 50px;
    align-items: center;
    padding: 85px 0;
}

.mbt-eyebrow,
.mbt-label,
.mbt-heading > span,
.mbt-final-cta > .mbt-container > span {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mbt-accent);
    margin-bottom: 18px;
}

.mbt-hero-copy h1 {
    margin: 0 0 24px;
    font-size: clamp(46px, 6vw, 76px);
    line-height: .98;
    letter-spacing: -2px;
    font-weight: 300;
}

.mbt-hero-copy h1 strong {
    color: var(--mbt-accent);
    font-weight: 800;
}

.mbt-hero-copy p {
    max-width: 650px;
    margin: 0 0 32px;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.8;
}

.mbt-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.mbt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 4px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
    transition: all .25s ease;
}

.mbt-btn-primary {
    color: #111827 !important;
    background: var(--mbt-accent);
}

.mbt-btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
}

.mbt-btn-outline {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(255,255,255,.04);
}

.mbt-btn-outline:hover {
    border-color: var(--mbt-accent);
    color: var(--mbt-accent) !important;
}

.mbt-btn-dark {
    color: #fff !important;
    background: var(--mbt-dark);
}

.mbt-btn-dark:hover {
    background: var(--mbt-accent);
    color: #111827 !important;
    transform: translateY(-2px);
}

.mbt-btn-light {
    color: #111827 !important;
    background: #fff;
}

.mbt-btn-light:hover {
    background: var(--mbt-accent);
    transform: translateY(-2px);
}

.mbt-btn-outline-light {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.5);
}

.mbt-btn-outline-light:hover {
    background: #fff;
    color: #111827 !important;
}

.mbt-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px;
    color: rgba(255,255,255,.65);
    font-size: 12px;
}

.mbt-hero-points span:first-letter {
    color: var(--mbt-accent);
}

/* Hero visual */

.mbt-hero-visual {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mbt-light-ring {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 1px solid rgba(245,158,11,.35);
    box-shadow:
        0 0 70px rgba(245,158,11,.15),
        inset 0 0 70px rgba(245,158,11,.08);
}

.mbt-light-ring::after {
    content: "";
    position: absolute;
    inset: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
}

.mbt-light-card {
    position: relative;
    width: 300px;
    padding: 38px 34px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
}

.mbt-light-card span {
    display: block;
    margin-bottom: 12px;
    color: var(--mbt-accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.mbt-light-card strong {
    display: block;
    font-size: 32px;
    line-height: 1;
    color: #fff;
}

.mbt-light-card small {
    display: block;
    margin-top: 18px;
    color: rgba(255,255,255,.62);
    line-height: 1.6;
}

/* =========================
   TRUST STRIP
   ========================= */

.mbt-trust {
    background: var(--mbt-accent);
}

.mbt-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.mbt-trust-grid > div {
    padding: 25px 20px;
    border-right: 1px solid rgba(17,24,39,.12);
}

.mbt-trust-grid > div:last-child {
    border-right: 0;
}

.mbt-trust strong,
.mbt-trust span {
    display: block;
}

.mbt-trust strong {
    color: #111827;
    font-size: 14px;
    margin-bottom: 4px;
}

.mbt-trust span {
    color: rgba(17,24,39,.7);
    font-size: 11px;
}

/* =========================
   COMMON SECTIONS
   ========================= */

.mbt-section {
    padding: 100px 0;
}

.mbt-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.mbt-heading h2,
.mbt-feature-copy h2,
.mbt-dark-section h2,
.mbt-solar-copy h2 {
    margin: 0 0 22px;
    color: var(--mbt-dark);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.mbt-heading p,
.mbt-feature-copy p,
.mbt-dark-section p,
.mbt-solar-copy p {
    color: var(--mbt-muted);
    font-size: 16px;
    line-height: 1.8;
}

/* =========================
   SOLUTION CARDS
   ========================= */

.mbt-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.mbt-solution-card {
    position: relative;
    min-height: 390px;
    padding: 36px;
    background: #fff;
    border: 1px solid var(--mbt-border);
    color: var(--mbt-text) !important;
    text-decoration: none !important;
    transition: all .3s ease;
}

.mbt-solution-card:hover {
    transform: translateY(-8px);
    border-color: var(--mbt-accent);
    box-shadow: 0 25px 60px rgba(17,24,39,.12);
}

.mbt-solution-card.mbt-featured {
    background: var(--mbt-dark);
    color: #fff !important;
    border-color: var(--mbt-dark);
}

.mbt-card-number {
    position: absolute;
    top: 25px;
    right: 28px;
    color: rgba(107,114,128,.35);
    font-size: 13px;
    font-weight: 700;
}

.mbt-featured .mbt-card-number {
    color: rgba(255,255,255,.25);
}

.mbt-card-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    border-radius: 50%;
    background: rgba(245,158,11,.13);
    color: var(--mbt-accent);
    font-size: 25px;
}

.mbt-solution-card > span {
    display: block;
    margin-bottom: 12px;
    color: var(--mbt-accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.mbt-solution-card h3 {
    margin: 0 0 18px;
    color: inherit;
    font-size: 27px;
}

.mbt-solution-card p {
    margin-bottom: 28px;
    color: var(--mbt-muted);
    line-height: 1.7;
}

.mbt-featured p {
    color: rgba(255,255,255,.65);
}

.mbt-solution-card b {
    color: var(--mbt-dark);
    font-size: 12px;
}

.mbt-featured b {
    color: var(--mbt-accent);
}

/* =========================
   CANOPY SECTION
   ========================= */

.mbt-feature-section {
    padding: 100px 0;
    background: var(--mbt-light);
}

.mbt-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mbt-feature-image {
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 30%, rgba(245,158,11,.42), transparent 25%),
        linear-gradient(145deg, #253448, #0b1220);
}

.mbt-feature-image::before,
.mbt-feature-image::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,255,255,.12);
}

.mbt-feature-image::before {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.mbt-feature-image::after {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    top: 125px;
    left: 50%;
    transform: translateX(-50%);
}

.mbt-image-placeholder {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.mbt-image-placeholder span,
.mbt-image-placeholder strong,
.mbt-image-placeholder small {
    display: block;
}

.mbt-image-placeholder span {
    color: var(--mbt-accent);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 5px;
}

.mbt-image-placeholder strong {
    margin: 5px 0;
    color: #fff;
    font-size: 54px;
    line-height: .95;
}

.mbt-image-placeholder small {
    color: rgba(255,255,255,.6);
    font-size: 11px;
    letter-spacing: 5px;
}

.mbt-feature-copy h2 strong,
.mbt-solar-copy h2 strong {
    color: var(--mbt-accent-2);
}

.mbt-applications {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 30px 0;
}

.mbt-applications div {
    padding: 13px 15px;
    background: #fff;
    border-left: 3px solid var(--mbt-accent);
    color: var(--mbt-dark);
    font-size: 12px;
    font-weight: 600;
}

/* =========================
   STREET LIGHT SECTION
   ========================= */

.mbt-dark-section {
    padding: 110px 0;
    background: #111827;
    color: #fff;
}

.mbt-dark-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.mbt-dark-section h2 {
    color: #fff;
}

.mbt-dark-section h2 strong {
    color: var(--mbt-accent);
}

.mbt-dark-section p {
    color: rgba(255,255,255,.65);
    max-width: 600px;
    margin-bottom: 32px;
}

.mbt-street-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mbt-street-glow {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,158,11,.38), rgba(245,158,11,.04) 50%, transparent 70%);
}

.mbt-street-lamp {
    position: absolute;
    font-size: 150px;
    color: var(--mbt-accent);
    text-shadow: 0 0 50px rgba(245,158,11,.8);
}

/* =========================
   SOLAR
   ========================= */

.mbt-solar-section {
    padding: 110px 0;
    background: #fff;
}

.mbt-solar-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.mbt-solar-visual {
    position: relative;
    min-height: 420px;
    background: linear-gradient(145deg, #e5e7eb, #f8fafc);
    overflow: hidden;
}

.mbt-sun {
    position: absolute;
    top: 45px;
    right: 55px;
    color: var(--mbt-accent);
    font-size: 70px;
    text-shadow: 0 0 30px rgba(245,158,11,.4);
}

.mbt-solar-panel {
    position: absolute;
    width: 310px;
    height: 190px;
    left: 50%;
    bottom: 55px;
    transform: translateX(-50%) skewY(-8deg);
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,.16) 0 2px, transparent 2px 44px),
        repeating-linear-gradient(0deg, rgba(255,255,255,.16) 0 2px, transparent 2px 44px),
        #243447;
    border: 8px solid #111827;
    box-shadow: 0 30px 50px rgba(17,24,39,.25);
}

.mbt-solar-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 30px 0;
}

.mbt-solar-items span {
    padding: 13px 15px;
    border: 1px solid var(--mbt-border);
    font-size: 12px;
    font-weight: 600;
}

/* =========================
   CUSTOM SOLUTIONS
   ========================= */

.mbt-custom {
    padding: 70px 0;
    background: var(--mbt-accent);
}

.mbt-custom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.mbt-custom .mbt-label {
    color: #111827;
    margin-bottom: 10px;
}

.mbt-custom h2 {
    max-width: 700px;
    margin: 0 0 12px;
    color: #111827;
    font-size: 34px;
    line-height: 1.15;
}

.mbt-custom p {
    margin: 0;
    color: rgba(17,24,39,.7);
}

/* =========================
   FINAL CTA
   ========================= */

.mbt-final-cta {
    padding: 110px 0;
    background: linear-gradient(135deg, #111827, #263548);
    text-align: center;
    color: #fff;
}

.mbt-final-cta > .mbt-container > span {
    color: var(--mbt-accent);
}

.mbt-final-cta h2 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -1px;
}

.mbt-final-cta p {
    max-width: 600px;
    margin: 0 auto 32px;
    color: rgba(255,255,255,.65);
    font-size: 16px;
    line-height: 1.7;
}

.mbt-final-cta .mbt-buttons {
    justify-content: center;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 991px) {

    .mbt-hero-content,
    .mbt-feature-grid,
    .mbt-dark-grid,
    .mbt-solar-grid {
        grid-template-columns: 1fr;
    }

    .mbt-hero {
        min-height: auto;
    }

    .mbt-hero-content {
        padding: 70px 0;
    }

    .mbt-hero-visual {
        min-height: 320px;
    }

    .mbt-solution-grid {
        grid-template-columns: 1fr;
    }

    .mbt-trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mbt-trust-grid > div:nth-child(2) {
        border-right: 0;
    }

    .mbt-feature-grid,
    .mbt-dark-grid,
    .mbt-solar-grid {
        gap: 50px;
    }

    .mbt-custom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {

    .mbt-container {
        width: 90%;
    }

    .mbt-hero-copy h1 {
        font-size: 46px;
    }

    .mbt-hero-copy p {
        font-size: 15px;
    }

    .mbt-hero-points {
        flex-direction: column;
        gap: 8px;
    }

    .mbt-light-ring {
        width: 260px;
        height: 260px;
    }

    .mbt-light-card {
        width: 240px;
        padding: 28px;
    }

    .mbt-light-card strong {
        font-size: 25px;
    }

    .mbt-trust-grid {
        grid-template-columns: 1fr;
    }

    .mbt-trust-grid > div {
        border-right: 0;
        border-bottom: 1px solid rgba(17,24,39,.12);
    }

    .mbt-trust-grid > div:last-child {
        border-bottom: 0;
    }

    .mbt-section,
    .mbt-feature-section,
    .mbt-dark-section,
    .mbt-solar-section {
        padding: 70px 0;
    }

    .mbt-feature-image {
        min-height: 360px;
    }

    .mbt-image-placeholder strong {
        font-size: 42px;
    }

    .mbt-applications,
    .mbt-solar-items {
        grid-template-columns: 1fr;
    }

    .mbt-street-visual {
        height: 280px;
    }

    .mbt-solar-visual {
        min-height: 330px;
    }

    .mbt-solar-panel {
        width: 250px;
        height: 150px;
    }

    .mbt-custom h2 {
        font-size: 28px;
    }
}