:root {
    /* MJ brand palette — blue · red · gold */
    --mj-blue: #1d4ed8;
    --mj-blue-light: #3b82f6;
    --mj-blue-dark: #0c1e4a;
    --mj-red: #dc2626;
    --mj-red-light: #ef4444;
    --mj-orange: #ea580c;
    --mj-gold: #f59e0b;
    --mj-gold-light: #fcd34d;
    --mj-gold-dark: #d97706;
    --mj-dark: #0f172a;
    --mj-gray: #64748b;
    --mj-gray-light: #94a3b8;
    --mj-light: #f8fafc;
    --mj-cream: #fffbf5;
    --mj-white: #ffffff;
    --gradient-brand: linear-gradient(135deg, var(--mj-blue-dark) 0%, var(--mj-blue) 55%, #1e40af 100%);
    --gradient-cta: linear-gradient(135deg, #ea580c 0%, #f59e0b 50%, #fbbf24 100%);
    --gradient-hero: linear-gradient(
        108deg,
        rgba(12, 30, 74, 0.94) 0%,
        rgba(29, 78, 216, 0.72) 42%,
        rgba(234, 88, 12, 0.28) 100%
    );
    --shadow-sm: 0 2px 8px rgba(12, 30, 74, 0.07);
    --shadow-md: 0 10px 30px rgba(12, 30, 74, 0.11);
    --shadow-lg: 0 20px 50px rgba(12, 30, 74, 0.14);
    --shadow-nav: 0 8px 32px rgba(12, 30, 74, 0.1);
    --shadow-cta: 0 6px 20px rgba(234, 88, 12, 0.45);
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --nav-height: 88px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    color: var(--mj-dark);
    background: var(--mj-white);
    line-height: 1.65;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ─── Navbar ─── */
.mj-nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 1rem 1.5rem 0;
    pointer-events: none;
    transition: padding 0.3s ease;
}

.mj-nav-wrap.scrolled {
    padding: 0.5rem 1.5rem 0;
}

.mj-navbar {
    pointer-events: auto;
    max-width: 1240px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-nav);
    padding: 0.5rem 1rem 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(29, 78, 216, 0.12);
    transition: box-shadow 0.3s, padding 0.3s;
}

.mj-nav-wrap.scrolled .mj-navbar {
    box-shadow: var(--shadow-md);
    padding: 0.4rem 1rem 0.4rem 0.65rem;
}

/* Logo — cropped assets fill the brand area */
.mj-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0.25rem 0.5rem 0.25rem 0.35rem;
    border-radius: 12px;
    transition: opacity 0.2s;
}

.mj-brand:hover { opacity: 0.9; }

.mj-brand-logo {
    height: 58px;
    width: auto;
    max-width: 200px;
    min-width: 140px;
    object-fit: contain;
    object-position: left center;
    display: block;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.mj-nav-wrap.scrolled .mj-brand-logo {
    height: 52px;
}

.mj-brand-text {
    display: none;
    margin-left: 0.65rem;
    line-height: 1.2;
}

.mj-brand-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--mj-blue-dark);
    letter-spacing: -0.02em;
}

.mj-brand-text span {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--mj-gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@media (min-width: 1200px) {
    .mj-brand-logo { height: 62px; max-width: 210px; }
}

.mj-nav-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.mj-nav-links a {
    padding: 0.55rem 0.9rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--mj-dark);
    border-radius: 12px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.mj-nav-links a:hover {
    color: var(--mj-orange);
    background: rgba(234, 88, 12, 0.08);
}

.mj-nav-links a.active {
    color: var(--mj-blue-dark);
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.1), rgba(245, 158, 11, 0.12));
    box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.18);
}

.mj-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.mj-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--mj-dark);
    white-space: nowrap;
    padding: 0.45rem 0.75rem;
    border-radius: 10px;
    background: var(--mj-light);
    transition: background 0.2s;
}

.mj-phone:hover {
    background: #e2e8f0;
    color: var(--mj-blue-dark);
}

.mj-phone i {
    color: white;
    background: linear-gradient(135deg, var(--mj-orange), var(--mj-gold));
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

/* Orange — main order / quote CTA */
.btn-mj-cta {
    background: var(--gradient-cta);
    color: white !important;
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: var(--shadow-cta);
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.01em;
}

.btn-mj-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(234, 88, 12, 0.5);
    color: white;
}

.btn-mj-primary {
    background: var(--gradient-brand);
    color: white !important;
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 16px rgba(29, 78, 216, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-mj-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(29, 78, 216, 0.42);
    color: white;
}

.btn-mj-outline {
    border: 2px solid var(--mj-orange);
    color: var(--mj-orange) !important;
    background: transparent;
    padding: 0.6rem 1.35rem;
    border-radius: 14px;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-mj-outline:hover {
    background: var(--gradient-cta);
    border-color: transparent;
    color: white !important;
}

.btn-mj-ghost {
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: white !important;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.65rem 1.5rem;
    border-radius: 14px;
    font-weight: 700;
    backdrop-filter: blur(4px);
    transition: all 0.2s;
}

.btn-mj-ghost:hover {
    background: white;
    color: var(--mj-blue-dark) !important;
    border-color: white;
}

/* ─── Hero ─── */
.mj-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 2rem) 0 6rem;
    background-size: cover;
    background-position: 75% center;
    background-attachment: fixed;
}

.mj-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.mj-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to top, var(--mj-white), transparent);
    pointer-events: none;
}

/* Welcome banner — one line, slow right-to-left float + separate bottom line */
.mj-welcome-banner {
    position: absolute;
    top: calc(var(--nav-height) + 0.5rem);
    left: 0;
    right: 0;
    z-index: 4;
    pointer-events: none;
}

.mj-welcome-inner {
    background: rgba(8, 20, 50, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(251, 191, 36, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.mj-welcome-viewport {
    position: relative;
    height: clamp(46px, 6vw, 54px);
    overflow: hidden;
}

.mj-welcome-oneline {
    position: absolute;
    top: 50%;
    left: 0;
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
    animation: mjWelcomeFloatRTL 28s linear infinite;
    will-change: transform;
}

.mj-welcome-prefix {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(0.7rem, 1.4vw, 0.82rem);
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.mj-welcome-prefix::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 1em;
    background: rgba(251, 191, 36, 0.45);
    margin-left: 1rem;
    vertical-align: middle;
}

.mj-welcome-name {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.05rem, 2.2vw, 1.5rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #fbbf24;
    line-height: 1.2;
}

.mj-welcome-bottom-line {
    height: 3px;
    width: 100%;
    background: linear-gradient(
        90deg,
        rgba(251, 191, 36, 0.15) 0%,
        rgba(251, 191, 36, 0.95) 50%,
        rgba(251, 191, 36, 0.15) 100%
    );
    box-shadow: 0 1px 8px rgba(251, 191, 36, 0.35);
}

@keyframes mjWelcomeFloatRTL {
    0% {
        transform: translate(calc(100vw + 2rem), -50%);
        opacity: 0;
    }
    4% {
        opacity: 1;
    }
    96% {
        opacity: 1;
    }
    100% {
        transform: translate(calc(-100% - 2rem), -50%);
        opacity: 0;
    }
}

.page-home .mj-hero {
    padding-top: calc(var(--nav-height) + 5.25rem);
}

@media (prefers-reduced-motion: reduce) {
    .mj-welcome-oneline {
        animation: none;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .mj-welcome-oneline {
        gap: 0.55rem;
    }
    .mj-welcome-prefix {
        letter-spacing: 0.16em;
    }
    .mj-welcome-prefix::after {
        margin-left: 0.55rem;
    }
}

.mj-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 680px;
}

.mj-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(234, 88, 12, 0.25);
    border: 1px solid rgba(251, 191, 36, 0.55);
    color: #fef3c7;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.mj-hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--mj-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--mj-gold);
}

.mj-hero h1 {
    font-size: clamp(2.1rem, 5.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.mj-hero h1 .highlight {
    background: linear-gradient(90deg, #fef3c7 0%, #fbbf24 45%, #93c5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mj-hero p.lead {
    font-size: 1.12rem;
    opacity: 0.9;
    margin: 1.35rem 0 2rem;
    max-width: 540px;
    line-height: 1.7;
}

.mj-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mj-hero-stat strong {
    display: block;
    font-size: 1.65rem;
    font-weight: 800;
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mj-hero-stat span {
    font-size: 0.8rem;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Service cards */
.mj-services-strip {
    margin-top: -5rem;
    position: relative;
    z-index: 10;
    padding-bottom: 1rem;
}

.mj-service-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.25rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mj-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    opacity: 1;
    transition: height 0.3s;
}

.mj-service-card.card-metal::before { background: linear-gradient(90deg, #ea580c, #fbbf24); }
.mj-service-card.card-electric::before { background: linear-gradient(90deg, #1d4ed8, #60a5fa); }
.mj-service-card.card-quote::before { background: linear-gradient(90deg, #059669, #34d399); }

.mj-service-card:hover::before { height: 6px; }

.mj-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(37, 99, 235, 0.18);
}

.mj-service-card .icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.35rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.mj-service-card h3 {
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
    color: var(--mj-dark);
    line-height: 1.35;
}

.mj-service-card p {
    color: var(--mj-gray);
    font-size: 0.92rem;
    margin: 0 0 1rem;
}

.mj-service-card .card-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--mj-orange);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.mj-service-card.card-electric .card-link { color: var(--mj-blue); }
.mj-service-card.card-quote .card-link { color: #059669; }

.icon-metal { background: linear-gradient(135deg, #ffedd5, #fdba74); color: #c2410c; }
.icon-electric { background: linear-gradient(135deg, #dbeafe, #60a5fa); color: var(--mj-blue-dark); }
.icon-quote { background: linear-gradient(135deg, #d1fae5, #34d399); color: #047857; }

/* Sections */
.mj-section {
    padding: 5.5rem 0;
}

.mj-section-alt {
    background: linear-gradient(180deg, var(--mj-cream) 0%, var(--mj-light) 50%, #fff 100%);
}

.mj-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mj-orange);
    background: rgba(234, 88, 12, 0.1);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.mj-section-title {
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.mj-section-lead {
    color: var(--mj-gray);
    font-size: 1.08rem;
    max-width: 560px;
    line-height: 1.75;
}

/* Pillars */
.mj-pillar {
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    height: 100%;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
}

.mj-pillar:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.mj-pillar .pillar-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.mj-pillar h4 {
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.4;
}

.pillar-1 { background: #fffbeb; }
.pillar-1 .pillar-icon { background: #fef3c7; color: #b45309; }
.pillar-2 { background: #eff6ff; }
.pillar-2 .pillar-icon { background: #dbeafe; color: var(--mj-blue); }
.pillar-3 { background: #f0fdf4; }
.pillar-3 .pillar-icon { background: #d1fae5; color: #047857; }
.pillar-4 { background: #fff7ed; }
.pillar-4 .pillar-icon { background: #ffedd5; color: #c2410c; }

/* Split blocks */
.mj-split-img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: cover;
    object-position: center;
    background: var(--mj-light);
    border: 1px solid rgba(15, 23, 42, 0.06);
    display: block;
}

.mj-split-visual {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    min-height: 320px;
    box-shadow: var(--shadow-lg);
}

.mj-split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
}

.mj-split-visual .overlay-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* CTA band */
.mj-cta {
    background: var(--gradient-brand);
    color: white;
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.mj-cta::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.35) 0%, transparent 65%);
    top: -120px;
    right: -80px;
}

.mj-cta::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.2) 0%, transparent 70%);
    bottom: -80px;
    left: -60px;
}

.mj-cta .btn-light {
    background: var(--gradient-cta) !important;
    border: none !important;
    color: white !important;
    font-weight: 800;
    box-shadow: var(--shadow-cta);
}

.mj-cta .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(234, 88, 12, 0.5);
}

.mj-cta h2 {
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

/* Page banner */
.mj-page-banner {
    padding: calc(var(--nav-height) + 2.5rem) 0 3.5rem;
    background: var(--gradient-brand);
    color: white;
    position: relative;
    overflow: hidden;
}

.mj-page-banner::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background: url('../img/hero-electrician.jpg') center/cover;
    opacity: 0.2;
    mask-image: linear-gradient(90deg, transparent 0%, black 80%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 80%);
}

.mj-page-banner h1 {
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 800;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.mj-breadcrumb {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.mj-breadcrumb a:hover { color: var(--mj-gold-light); }

/* Contact */
.mj-contact-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
}

.mj-sidebar-card {
    background: linear-gradient(155deg, var(--mj-blue-dark) 0%, var(--mj-blue) 60%, #1e3a8a 100%);
    color: white;
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    height: 100%;
}

.mj-sidebar-card h3 {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 1.75rem;
    color: #fff;
    display: flex;
    align-items: center;
}

.mj-sidebar-card h3 i {
    color: var(--mj-gold-light);
    font-size: 1.1rem;
}

.mj-sidebar-card a.mj-contact-value { color: #fff; }
.mj-sidebar-card a.mj-contact-value:hover { color: var(--mj-gold-light); }

.mj-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.35rem;
    align-items: flex-start;
}

.mj-contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mj-orange), var(--mj-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.4);
}

.mj-contact-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.mj-contact-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    word-break: break-word;
}

.mj-sidebar-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
    opacity: 1;
}

.mj-sidebar-note {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.mj-sidebar-note i {
    color: var(--mj-gold-light);
}

/* Legacy contact item icons (form area / other pages) */
.mj-contact-item > i:not(.mj-contact-icon) {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mj-blue);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.form-label { font-weight: 600; font-size: 0.9rem; }

.form-control {
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 0.7rem 1rem;
}

.form-control:focus {
    border-color: var(--mj-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

/* Footer */
.mj-footer {
    background: linear-gradient(180deg, #0c1e4a 0%, #0f172a 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 0 1.5rem;
    margin-top: 0;
}

.mj-footer a { color: rgba(255, 255, 255, 0.65); transition: color 0.2s; }
.mj-footer a:hover { color: var(--mj-gold-light); }

.mj-footer-logo {
    height: auto;
    width: auto;
    max-height: 120px;
    max-width: 280px;
    object-fit: contain;
    margin-bottom: 1rem;
    display: block;
    background: transparent;
}

.mj-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
}

/* About */
.mj-about-portrait {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.mj-logo-panel {
    background: transparent;
    border-radius: var(--radius-xl);
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
}

.mj-logo-panel img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

/* Process steps */
.mj-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.mj-step {
    text-align: center;
    padding: 1.5rem;
}

.mj-step-num {
    width: 48px;
    height: 48px;
    background: var(--gradient-cta);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 1rem;
    font-size: 1.1rem;
}

.text-mj-blue { color: var(--mj-blue); }
.bg-mj-light { background: var(--mj-light); }

.mj-mobile-toggle {
    display: none;
    border: none;
    background: var(--mj-light);
    padding: 0.55rem 0.8rem;
    border-radius: 12px;
    font-size: 1.2rem;
    color: var(--mj-dark);
    margin-left: auto;
}

@media (max-width: 991px) {
    .mj-nav-links, .mj-phone { display: none; }
    .mj-mobile-toggle { display: flex; align-items: center; }
    .mj-navbar { flex-wrap: wrap; position: relative; }
    .mj-nav-links.show {
        display: flex;
        flex-direction: column;
        width: 100%;
        order: 10;
        background: white;
        padding: 0.75rem;
        border-radius: var(--radius);
        margin-top: 0.25rem;
        box-shadow: var(--shadow-sm);
    }
    .mj-services-strip { margin-top: 1.5rem; }
    .mj-hero { background-attachment: scroll; min-height: 90vh; }
    .mj-steps { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .mj-brand-logo { height: 48px; max-width: 160px; }
    .mj-nav-actions { width: 100%; justify-content: space-between; order: 5; }
    .mj-hero-stats { gap: 1.25rem; }
}
