/* ================================================
   JETPRIX INTERNATIONAL — STYLESHEET v3
   Scrollable layout, full home page
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:      #0c1e35;
    --navy-mid:  #132a48;
    --navy-lt:   #1a3a5c;
    --orange:    #e8851a;
    --orange-lt: #f4a448;
    --blue:      #1557a0;
    --white:     #ffffff;
    --light:     #f4f6f9;
    --gray-100:  #e8ecf2;
    --gray-300:  #c4cdd9;
    --gray-500:  #8a9bb0;
    --dark:      #0c1e35;
    --body:      #3d4e5f;
    --font:      'Inter', system-ui, -apple-system, sans-serif;
    --r:         8px;
    --r-lg:      14px;
    --sh-sm:     0 2px 10px rgba(12,30,53,.07);
    --sh-md:     0 8px 32px rgba(12,30,53,.12);
    --sh-lg:     0 24px 64px rgba(12,30,53,.18);
    --ease:      cubic-bezier(.4,0,.2,1);
    --t:         .3s var(--ease);
    --maxw:      1200px;
    --hh:        72px;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--body);
    background: var(--navy);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; }

/* ---------- section label ---------- */
.section-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: .85rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}
.section-label::before {
    content: '';
    display: block;
    width: 22px; height: 2px;
    background: var(--orange);
    flex-shrink: 0;
}
.section-label.light { color: #f4a448; }
.section-label.light::before { background: #f4a448; }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 1.9rem;
    border-radius: var(--r);
    font-weight: 600;
    font-size: .92rem;
    border: 2px solid transparent;
    transition: var(--t);
    white-space: nowrap;
    cursor: pointer;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-lt); border-color: var(--orange-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,133,26,.35); }
.btn-green { background: linear-gradient(135deg, #F5F7FA, #ffffff); color: var(--navy); border-color: #F5F7FA; }
.btn-green:hover { background: linear-gradient(135deg, #ffffff, #F5F7FA); border-color: #e8ecf2; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,247,250,.6); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--light); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-full { width: 100%; }


/* ================================================
   HEADER — sticky (scrolls with page, sticks at top)
   ================================================ */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--hh);
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-self: start;
    margin-left: 0;
    outline: none;
    border: none;
}
.logo-img {
    height: 52px;
    width: auto;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.logo-svg { display: block; }

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-nav ul { display: flex; list-style: none; gap: .15rem; align-items: center; justify-content: center; }

.nav-btn {
    padding: .5rem .95rem;
    font-size: .92rem;
    font-weight: 500;
    color: rgba(12,30,53,.75);
    border-radius: 6px;
    transition: var(--t);
    position: relative;
    white-space: nowrap;
}
.nav-btn::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%; right: 50%;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: left .25s var(--ease), right .25s var(--ease);
}
.nav-btn:hover { color: var(--navy); background: rgba(12,30,53,.06); }
.nav-btn.active { color: var(--navy); font-weight: 600; }
.nav-btn.active::after { left: .95rem; right: .95rem; }

.dd-caret {
    font-size: .55rem;
    display: inline-block;
    vertical-align: middle;
    margin-left: .3rem;
    transition: transform .25s var(--ease);
    opacity: .75;
}
.has-dropdown:hover .dd-caret,
.has-dropdown.dd-open .dd-caret { transform: rotate(180deg); opacity: 1; }

.has-dropdown { position: relative; }
.nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 210px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 12px;
    padding: .5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s var(--ease), visibility .25s, transform .25s var(--ease);
    z-index: 500;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
    pointer-events: none;
}
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -6px; left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 11px; height: 11px;
    background: var(--white);
    border-left: 1px solid rgba(0,0,0,.1);
    border-top: 1px solid rgba(0,0,0,.1);
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown.dd-open .nav-dropdown {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}
.dd-item {
    display: flex; align-items: center; gap: .65rem;
    width: 100%; padding: .8rem 1rem;
    font-size: .875rem; font-weight: 600;
    color: rgba(12,30,53,.8);
    border-radius: 8px; transition: var(--t); text-align: left;
}
.dd-item:hover { background: rgba(232,133,26,.1); color: var(--orange); }
.dd-ico { flex-shrink: 0; opacity: .85; }
.dd-ayudh-logo { height: 18px; width: auto; display: block; opacity: 1; }

.header-right {
    display: flex; align-items: center; gap: .85rem;
    justify-self: end;
}
.header-cta { padding: .6rem 1.35rem; font-size: .87rem; }

.mobile-toggle {
    display: none; flex-direction: column; gap: 5px;
    padding: 8px; border-radius: 6px; transition: var(--t);
}
.mobile-toggle:hover { background: rgba(0,0,0,.06); }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--t); }
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ================================================
   MAIN CONTENT — normal document flow
   ================================================ */
#main-content { display: block; }

.page { display: none; }
.page.active { display: block; }

@keyframes pageIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.page-about.active,
.page-contact.active,
.page-divisions.active {
    animation: pageIn .35s var(--ease);
}


/* ================================================
   PAGE: HOME
   ================================================ */
.page-home.active { display: block; }
.page-home { background: var(--white); }

/* ---- HERO ---- */
.home-hero {
    min-height: calc(100vh - var(--hh));
    padding-bottom: 5rem;
    background: linear-gradient(160deg, #091729 0%, #0d2240 45%, #12305a 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 70px 70px;
}
.hero-glow {
    position: absolute; pointer-events: none;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(232,133,26,.06) 0%, transparent 65%);
    top: -10%; left: -5%;
}

.hero-inner {
    position: relative; z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem 8rem;
    max-width: 820px;
    margin: 0 auto;
}
.hero-loc {
    font-size: .73rem; font-weight: 700;
    letter-spacing: .28em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 1.4rem;
}
.hero-h {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 900; color: var(--white);
    line-height: 1.08; letter-spacing: -.03em;
    margin-bottom: 1.5rem;
}
.hero-sub {
    font-size: 1.02rem; color: rgba(255,255,255,.68);
    line-height: 1.8; margin-bottom: 2.25rem; max-width: 540px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* Skyline */
.skyline-wrap {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 1; pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.15) 25%, black 55%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.15) 25%, black 55%);
}
.skyline-svg { width: 100%; height: auto; display: block; min-height: 200px; }

/* Skyline parallax animations */
@keyframes slFar {
    0%   { transform: translateX(0); }
    50%  { transform: translateX(-4px); }
    100% { transform: translateX(0); }
}
@keyframes slLeft {
    0%   { transform: translateX(0) translateY(0); }
    40%  { transform: translateX(-7px) translateY(-2px); }
    70%  { transform: translateX(5px) translateY(-1px); }
    100% { transform: translateX(0) translateY(0); }
}
@keyframes slMid {
    0%   { transform: translateX(0) translateY(0); }
    35%  { transform: translateX(-5px) translateY(-3px); }
    65%  { transform: translateX(4px) translateY(-2px); }
    100% { transform: translateX(0) translateY(0); }
}
@keyframes slPalace {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}
@keyframes slRight {
    0%   { transform: translateX(0) translateY(0); }
    40%  { transform: translateX(6px) translateY(-2px); }
    70%  { transform: translateX(-4px) translateY(-1px); }
    100% { transform: translateX(0) translateY(0); }
}
@keyframes planeFly {
    0%   { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-22px) translateY(4px); }
}

.sl-far     { animation: slFar    28s ease-in-out infinite; transform-origin: center bottom; }
.sl-left    { animation: slLeft   20s ease-in-out infinite; transform-origin: center bottom; }
.sl-midleft { animation: slMid    17s ease-in-out infinite; transform-origin: center bottom; }
.sl-palace  { animation: slPalace 22s ease-in-out infinite; transform-origin: center bottom; }
.sl-midright{ animation: slMid    19s ease-in-out infinite reverse; transform-origin: center bottom; }
.sl-right   { animation: slRight  21s ease-in-out infinite; transform-origin: center bottom; }
.skyline-plane { animation: planeFly 16s ease-in-out infinite alternate; }

/* ---- STATS BAR ---- */
.home-stats-bar {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.08);
}
.stats-row {
    display: flex; align-items: stretch; height: 115px;
}
.stat-item {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 1rem 1.5rem; text-align: center; gap: 0;
}
.stat-num {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900; color: var(--white);
    letter-spacing: -.03em;
    display: flex; align-items: flex-start;
}
.stat-plus { font-size: 1.2rem; color: var(--orange); font-weight: 700; margin-top: .35rem; }
.stat-lbl { font-size: .75rem; color: rgba(255,255,255,.45); line-height: 1.5; max-width: 160px; }
.stat-sep { width: 1px; background: rgba(255,255,255,.09); align-self: stretch; flex-shrink: 0; margin: 18px 0; }


/* ---- BUILT ON TRADE (white) ---- */
.home-about {
    background: var(--white);
    padding: 6rem 0;
}
.ha-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.ha-eyebrow {
    font-size: .72rem; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 1rem;
}
.ha-heading {
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 900; color: var(--dark);
    letter-spacing: -.03em; line-height: 1.1;
    margin-bottom: 1rem;
}
.ha-rule {
    width: 48px; height: 4px;
    background: var(--orange); border-radius: 2px;
    margin-bottom: 1.75rem;
}
.ha-text p {
    color: var(--body); line-height: 1.85;
    margin-bottom: 1.1rem; font-size: .97rem;
}

.ha-card {
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-md);
}
.hac-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.hac-cell {
    padding: 2rem 1.75rem;
    display: flex; flex-direction: column; gap: .5rem;
}
.hac-border-r { border-right: 1.5px solid var(--gray-100); }
.hac-border-b { border-bottom: 1.5px solid var(--gray-100); }
.hac-label {
    font-size: 2rem; font-weight: 900;
    color: var(--navy); letter-spacing: -.03em;
    line-height: 1;
}
.hac-num {
    font-size: 2rem; font-weight: 900;
    color: var(--navy); letter-spacing: -.03em;
    line-height: 1;
}
.hac-num sup { font-size: .7em; color: var(--orange); }
.hac-sub {
    font-size: .76rem; color: var(--gray-500);
    line-height: 1.5;
}


/* ---- EXPERIENCE (dark) ---- */
.home-experience {
    background: var(--navy);
    padding: 6rem 0;
}
.he-heading {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900; color: var(--white);
    letter-spacing: -.03em; line-height: 1.15;
    margin-bottom: 3rem; max-width: 700px;
}
.he-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.he-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-lg);
    padding: 2.25rem 2rem;
    transition: var(--t);
}
.he-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(232,133,26,.3);
    transform: translateY(-4px);
}
.he-num {
    font-size: 2.8rem; font-weight: 900;
    color: rgba(255,255,255,.65); letter-spacing: -.04em;
    line-height: 1; margin-bottom: 1rem;
}
.he-card h4 {
    font-size: .97rem; font-weight: 700;
    color: var(--white); margin-bottom: .75rem;
}
.he-card p {
    font-size: .875rem; color: rgba(255,255,255,.55);
    line-height: 1.8;
}


/* ---- AYUDH SECTION (medium dark) ---- */
.home-ayudh {
    background: linear-gradient(135deg, #0d2240 0%, #132a48 60%, #0f2540 100%);
    padding: 6rem 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.hav-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}
.hav-stats { display: flex; flex-direction: column; gap: 0; }
.hav-stats .section-label { margin-bottom: 2rem; }

.hav-stat {
    display: flex; align-items: flex-start; gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.hav-stat:last-child { border-bottom: none; }
.hav-ico {
    flex-shrink: 0;
    width: 46px; height: 46px;
    background: rgba(232,133,26,.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(232,133,26,.2);
}
.hav-stat strong {
    display: block;
    font-size: 1.15rem; font-weight: 800;
    color: var(--white); letter-spacing: -.02em;
    margin-bottom: .25rem;
}
.hav-stat span {
    font-size: .82rem; color: rgba(255,255,255,.5);
    line-height: 1.5;
}

.hav-right h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 900; color: var(--white);
    letter-spacing: -.03em; line-height: 1.15;
    margin-bottom: 1.5rem;
}
.hav-right p {
    font-size: .97rem; color: rgba(255,255,255,.62);
    line-height: 1.85; margin-bottom: 2rem;
}
.hav-link { margin-top: .5rem; }


/* ---- LET'S CONNECT CTA ---- */
.home-cta {
    background: linear-gradient(160deg, #091e38 0%, #0c2a50 50%, #0f3060 100%);
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.06);
}
.home-cta h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900; color: var(--white);
    letter-spacing: -.03em; margin-bottom: 1.25rem;
}
.home-cta p {
    font-size: 1.05rem; color: rgba(255,255,255,.6);
    max-width: 480px; margin: 0 auto 2.5rem;
    line-height: 1.75;
}


/* ---- SITE FOOTER ---- */
.site-footer {
    background: #06101b;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.07);
}
.sf-tagline {
    font-size: .84rem;
    color: rgba(255,255,255,.38);
    line-height: 1.75;
    max-width: 360px;
    margin-top: .1rem;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    display: block;
}


/* ================================================
   PAGE: ABOUT
   ================================================ */
.page-about { background: var(--white); }

.inner-hdr {
    background: var(--navy);
    padding: 3rem 0 2.5rem;
}
.inner-title {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 900; color: var(--white);
    letter-spacing: -.025em; margin-top: .25rem;
}

.page-body { padding: 3.5rem 0 0; }

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 4rem;
}
.about-text p { margin-bottom: 1.15rem; line-height: 1.85; color: var(--body); }

.tagline-quote {
    font-size: 1.15rem; font-weight: 700;
    color: var(--navy); font-style: italic;
    border-left: 4px solid var(--orange);
    padding: .45rem 0 .45rem 1.2rem;
    margin: 0 0 1.5rem;
    background: rgba(232,133,26,.03);
    border-radius: 0 6px 6px 0;
    line-height: 1.5;
}

.about-pillars {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: .85rem; margin-top: 2.25rem;
}
.pillar {
    display: flex; flex-direction: column; gap: .28rem;
    padding: .9rem 1rem;
    border: 1.5px solid var(--gray-100);
    border-radius: var(--r); transition: var(--t);
}
.pillar:hover { border-color: var(--orange); background: rgba(232,133,26,.04); transform: translateX(4px); }
.pnum { font-size: .68rem; font-weight: 800; color: var(--orange); letter-spacing: .12em; }
.pname { font-size: .875rem; font-weight: 600; color: var(--dark); }

.info-stack {
    display: flex; flex-direction: column; gap: 1rem;
    padding: 2rem;
    background: linear-gradient(145deg, #eef1f8, #dce4f0);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-md);
}
.info-card {
    display: flex; align-items: center; gap: 1rem;
    background: var(--white); border-radius: 10px;
    padding: 1rem 1.2rem;
    box-shadow: var(--sh-sm); transition: var(--t);
}
.info-card:hover { transform: translateX(6px); box-shadow: var(--sh-md); }
.card-offset { transform: translateX(0); }
.info-card:hover.card-offset { transform: translateX(6px); }
.info-ico {
    flex-shrink: 0; width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    background: var(--light); border-radius: 8px;
}
.info-card strong { display: block; font-size: .88rem; font-weight: 700; color: var(--dark); margin-bottom: .2rem; }
.info-card span { font-size: .77rem; color: var(--gray-500); }

.adv-section { padding: 2rem 0 3.5rem; border-top: 1px solid var(--gray-100); }
.adv-heading {
    font-size: 1.5rem; font-weight: 800; color: var(--dark);
    letter-spacing: -.02em; margin-bottom: 2rem;
    padding-top: 2.5rem;
}
.adv-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.adv-card {
    background: var(--light); border-radius: var(--r-lg);
    padding: 1.75rem 1.5rem;
    border-top: 3px solid transparent; transition: var(--t);
}
.adv-card:hover { border-top-color: var(--orange); transform: translateY(-6px); box-shadow: var(--sh-md); background: var(--white); }
.adv-num { font-size: 2.6rem; font-weight: 900; color: var(--gray-100); line-height: 1; margin-bottom: 1rem; letter-spacing: -.03em; }
.adv-card h4 { font-size: .93rem; font-weight: 700; color: var(--dark); margin-bottom: .6rem; }
.adv-card p { font-size: .845rem; color: var(--body); line-height: 1.75; }

.page-footer {
    background: #06101b;
    padding: 2rem 0;
    margin-top: 2rem;
}
.pf-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .6rem;
}
.pf-copy {
    font-size: .76rem;
    color: rgba(255,255,255,.3);
    line-height: 1.5;
}
.pf-bottom-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: .5rem;
    flex-wrap: wrap;
}
.pf-social {
    display: flex;
    align-items: center;
    gap: .55rem;
}
.pf-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.75);
    transition: background .2s, color .2s;
}
.pf-social a:hover {
    background: rgba(255,255,255,.22);
    color: #fff;
}

/* ---- MEP History section (About page) ---- */
.mep-section {
    margin: 3rem 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    padding: 3rem 0;
}
.mep-inner { max-width: 820px; }
.mep-label {
    font-size: .7rem; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--orange); margin-bottom: .75rem;
    display: flex; align-items: center; gap: .5rem;
}
.mep-label::before {
    content: ''; display: block;
    width: 20px; height: 2px;
    background: var(--orange); flex-shrink: 0;
}
.mep-heading {
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    font-weight: 800; color: var(--dark);
    letter-spacing: -.02em; margin-bottom: .75rem;
}
.mep-lead {
    font-size: 1rem; font-weight: 500;
    color: var(--navy); line-height: 1.7;
    border-left: 3px solid var(--orange);
    padding-left: 1rem;
    margin-bottom: 1.25rem;
}
.mep-inner p:not(.mep-label):not(.mep-lead) {
    font-size: .95rem; color: var(--body);
    line-height: 1.85; margin-bottom: .9rem;
}


/* ================================================
   PAGE: DIVISIONS
   ================================================ */
.page-divisions { background: var(--light); }

.div-hdr {
    background: var(--navy);
    padding: 2rem 0 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.div-hdr-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}
.div-brand { margin-bottom: 0; }
.div-hdr-img-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.div-hdr-img {
    height: 180px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.35);
    display: block;
}
.div-eyebrow {
    display: flex; align-items: center; gap: .6rem;
    font-size: .72rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--orange); margin-bottom: .6rem;
}
.div-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--orange); flex-shrink: 0;
    box-shadow: 0 0 8px rgba(232,133,26,.7);
    animation: blink 2s infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:.65; } }

.div-title {
    font-size: clamp(1.6rem, 2.8vw, 2.3rem);
    font-weight: 900; color: var(--white);
    letter-spacing: -.025em; margin-bottom: .5rem;
}
.div-sub { font-size: .9rem; color: rgba(255,255,255,.55); max-width: 620px; line-height: 1.6; }
.div-ext-link { color: var(--orange); font-weight: 600; margin-left: .5rem; }
.div-ext-link:hover { color: var(--orange-lt); }

.divtab-nav {
    display: flex; gap: 0;
    margin-top: .25rem;
}
.divtab-btn {
    padding: .8rem 1.5rem;
    font-size: .88rem; font-weight: 600;
    color: rgba(255,255,255,.55);
    border-bottom: 3px solid transparent;
    border-radius: 0;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
}
.divtab-btn:hover { color: rgba(255,255,255,.85); }
.divtab-btn.active { color: var(--white); border-bottom-color: var(--orange); }

.div-panels-area { background: var(--light); }
.div-panel { display: none; }
.div-panel.active { display: block; animation: pageIn .3s var(--ease); }

/* Overview */
.ov-hero { padding: 2.5rem 0 1.5rem; }
.ov-hero h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: var(--dark); letter-spacing: -.02em; max-width: 700px; margin-bottom: .75rem; }
.ov-tag { font-size: .95rem; color: var(--orange); font-weight: 600; }
.ov-body { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; padding-bottom: 3rem; align-items: start; }
.ov-desc p { color: var(--body); line-height: 1.85; margin-bottom: 1.15rem; }
.cap-badge { margin-top: 1.5rem; background: var(--navy); border-radius: var(--r-lg); padding: 1.5rem 2rem; display: inline-block; }
.cap-num { font-size: 1.9rem; font-weight: 900; color: var(--white); letter-spacing: -.02em; }
.cap-lbl { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: .3rem; }
.ov-pillars { display: flex; flex-direction: column; gap: 1.25rem; padding-top: .5rem; }
.ov-pillar { background: var(--white); border-radius: var(--r-lg); padding: 1.5rem; display: flex; gap: 1.25rem; align-items: flex-start; box-shadow: var(--sh-sm); border-left: 3px solid transparent; transition: var(--t); }
.ov-pillar:hover { border-left-color: var(--orange); transform: translateX(4px); box-shadow: var(--sh-md); }
.ov-picon { flex-shrink: 0; width: 48px; height: 48px; background: rgba(232,133,26,.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.ov-pillar h4 { font-size: .92rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.ov-pillar p { font-size: .82rem; color: var(--body); line-height: 1.7; }

/* Products */
.prod-intro { padding: 2.5rem 0 1.5rem; }
.prod-intro h2 { font-size: 1.8rem; font-weight: 800; color: var(--dark); letter-spacing: -.02em; margin-bottom: .6rem; }
.prod-intro p { color: var(--body); font-size: .95rem; }
.prod-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-bottom: 2rem; }
.prod-card { background: var(--white); border-radius: var(--r-lg); padding: 2rem; box-shadow: var(--sh-sm); border-top: 3px solid transparent; transition: var(--t); }
.prod-card:hover { border-top-color: var(--orange); transform: translateY(-6px); box-shadow: var(--sh-md); }
.prod-ico { width: 62px; height: 62px; background: rgba(232,133,26,.08); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.prod-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: .4rem; letter-spacing: -.01em; }
.prod-tag { font-size: .82rem; font-weight: 600; color: var(--orange); margin-bottom: .85rem; }
.prod-card > p:last-child { font-size: .855rem; color: var(--body); line-height: 1.75; }
.b2b-note { background: var(--navy); border-radius: var(--r-lg); padding: 2rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap; }
.b2b-note p { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.7; max-width: 620px; }

/* Industries */
.ind-intro { padding: 2.5rem 0 1.75rem; }
.ind-intro h2 { font-size: 1.8rem; font-weight: 800; color: var(--dark); letter-spacing: -.02em; margin-bottom: .6rem; }
.ind-intro p { color: var(--body); font-size: .95rem; max-width: 600px; line-height: 1.7; }
.ind-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; padding-bottom: 3rem; }
.ind-card { background: var(--white); border-radius: var(--r-lg); padding: 1.75rem 1.5rem; box-shadow: var(--sh-sm); text-align: center; border-bottom: 3px solid transparent; transition: var(--t); }
.ind-card:hover { border-bottom-color: var(--orange); transform: translateY(-5px); box-shadow: var(--sh-md); }
.ind-ico { width: 56px; height: 56px; background: rgba(232,133,26,.07); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.ind-card h4 { font-size: .87rem; font-weight: 700; color: var(--dark); line-height: 1.4; }

/* Quality */
.qual-intro { padding: 2.5rem 0 1.75rem; }
.qual-intro h2 { font-size: 1.8rem; font-weight: 800; color: var(--dark); letter-spacing: -.02em; max-width: 700px; margin-bottom: .65rem; }
.qual-intro p { color: var(--body); font-size: .95rem; max-width: 620px; line-height: 1.7; }
.certs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.cert-card { background: var(--white); border-radius: var(--r-lg); padding: 2rem 2rem 2.25rem; box-shadow: var(--sh-sm); border-top: 3px solid var(--orange); transition: var(--t); }
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.cert-badge { display: inline-block; background: var(--navy); color: var(--orange); font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 4px; margin-bottom: 1rem; }
.cert-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .65rem; }
.cert-card p { font-size: .855rem; color: var(--body); line-height: 1.75; }
.struggles-section { margin-bottom: 2.5rem; }
.struggles-section h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; letter-spacing: -.01em; }
.struggles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .85rem; }
.struggle-item { display: flex; align-items: flex-start; gap: .65rem; background: var(--white); border-radius: var(--r); padding: .9rem 1rem; box-shadow: var(--sh-sm); }
.st-check { color: #2d7d46; font-size: 1.1rem; font-weight: 800; flex-shrink: 0; margin-top: .05rem; }
.struggle-item p { font-size: .845rem; color: var(--body); line-height: 1.5; font-weight: 500; }
.factory-block { background: var(--navy); border-radius: var(--r-lg); padding: 1.75rem 2rem; margin-bottom: 3rem; }
.factory-block h4 { font-size: .8rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--orange); margin-bottom: .65rem; }
.factory-block address { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.7; }

#divtab-overview .container,
#divtab-products .container,
#divtab-industries .container,
#divtab-quality .container { padding-top: 0; }

.divisions-footer { margin-top: 0; }


/* ================================================
   PAGE: CONTACT
   ================================================ */
.page-contact { background: var(--navy); }

.contact-wrap { min-height: 100vh; display: flex; flex-direction: column; }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 5rem; align-items: start; padding: 4rem 0; flex: 1;
}
.contact-info { padding-top: .5rem; }
.contact-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900; color: var(--white);
    letter-spacing: -.03em; line-height: 1.1; margin-bottom: 1.25rem;
}
.contact-info > p { color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 2rem; font-size: .97rem; }
.ci-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.ci-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-ico { flex-shrink: 0; width: 36px; height: 36px; background: rgba(255,255,255,.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-top: .15rem; }
.ci-item strong { display: block; font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.85); letter-spacing: .05em; text-transform: uppercase; margin-bottom: .3rem; }
.ci-item span, .ci-item a { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.ci-item a:hover { color: var(--orange); }
.contact-note { font-size: .78rem; color: rgba(255,255,255,.3); line-height: 1.6; max-width: 300px; padding-top: .5rem; border-top: 1px solid rgba(255,255,255,.08); }

.contact-form-box { background: var(--white); border-radius: var(--r-lg); padding: 2.5rem; box-shadow: var(--sh-lg); }
.form-ttl { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 1.75rem; letter-spacing: -.01em; }
.contact-form { display: flex; flex-direction: column; gap: 1.15rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .42rem; }
.form-group label { font-size: .75rem; font-weight: 700; color: var(--dark); letter-spacing: .03em; text-transform: uppercase; }
.req { color: var(--orange); }
.form-group input,
.form-group select,
.form-group textarea {
    padding: .78rem 1rem;
    border: 1.5px solid var(--gray-100);
    border-radius: var(--r);
    font-family: var(--font); font-size: .9rem;
    color: var(--dark); background: var(--white);
    transition: border-color .2s, box-shadow .2s;
    outline: none; width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-300); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,133,26,.1); }
.form-group textarea { resize: vertical; min-height: 105px; line-height: 1.6; }
.form-group select {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9bb0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center;
    padding-right: 2.5rem; cursor: pointer;
}
.form-success { text-align: center; padding: 3rem 1.5rem; }
.form-success .succ-icon { width: 56px; height: 56px; background: rgba(45,125,70,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.form-success h4 { font-size: 1.05rem; font-weight: 700; color: #2d7d46; margin-bottom: .5rem; }
.form-success p { font-size: .875rem; color: var(--body); }
.contact-footer { background: rgba(0,0,0,.3) !important; border-top: 1px solid rgba(255,255,255,.06); }


/* ================================================
   MOBILE NAV OVERLAY
   ================================================ */
@media (max-width: 1024px) {
    .adv-grid { grid-template-columns: repeat(2,1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .card-offset { transform: translateX(0); }
    .ov-body { grid-template-columns: 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 0; }
    .ha-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hav-grid { grid-template-columns: 1fr; gap: 3rem; }
    .he-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .hero-inner { padding: 4rem 1.5rem 7rem; }
    .hero-sub { max-width: 100%; }
    .ind-grid { grid-template-columns: repeat(2,1fr); }
    .struggles-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
    :root { --hh: 60px; }

    .main-nav {
        position: fixed;
        top: var(--hh); left: 0; right: 0; bottom: 0;
        background: rgba(255,255,255,.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 1.5rem;
        transform: translateX(100%);
        pointer-events: none;
        z-index: 999;
        overflow-y: auto;
        transition: var(--t);
        border-top: 1px solid rgba(0,0,0,.08);
    }
    .main-nav.open { transform: translateX(0); pointer-events: all; }
    .main-nav ul { flex-direction: column; gap: .35rem; }
    .nav-btn { font-size: 1.1rem; padding: .9rem 1rem; width: 100%; text-align: left; color: rgba(12,30,53,.8); border-bottom: 1px solid rgba(0,0,0,.06); }
    .nav-btn::after { display: none; }
    .nav-btn.active { color: var(--orange); }

    .header-cta { display: none; }
    .mobile-toggle { display: flex; }
    .logo-img { height: 38px; }

    .hero-h { font-size: 2rem; }
    .hero-btns { flex-direction: column; align-items: stretch; }
    .hero-btns .btn { width: 100%; justify-content: center; }

    .stats-row { height: auto; flex-direction: column; padding: .5rem 0; }
    .stat-sep { width: 100%; height: 1px; margin: 0; }
    .stat-item { padding: 1.25rem 1.5rem; }

    .home-about, .home-experience, .home-ayudh, .home-cta { padding: 4rem 0; }
    .ha-grid, .hav-grid { gap: 2.5rem; }
    .he-grid { grid-template-columns: 1fr; gap: 1rem; }

    .about-pillars { grid-template-columns: 1fr; }
    .adv-grid { grid-template-columns: 1fr; }
    .prod-grid { grid-template-columns: 1fr; }
    .certs-grid { grid-template-columns: 1fr; }
    .ind-grid { grid-template-columns: 1fr; }
    .struggles-grid { grid-template-columns: 1fr; }

    .divtab-nav { overflow-x: auto; gap: 0; }
    .divtab-btn { padding: .75rem 1.1rem; font-size: .82rem; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form-box { padding: 1.5rem; }

    .b2b-note { flex-direction: column; gap: 1.25rem; }
    .b2b-note .btn { width: 100%; }

    .pf-inner { flex-direction: column; text-align: center; gap: .75rem; }

    .hac-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .ind-grid { grid-template-columns: 1fr; }
    .hac-grid { grid-template-columns: 1fr; }
    .hac-border-r { border-right: none; border-bottom: 1.5px solid var(--gray-100); }
}


/* ================================================
   TABLET — 768px to 1024px
   ================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-h { font-size: clamp(2rem, 4vw, 3rem); }
    .hero-inner { padding: 4.5rem 2rem 8rem; }

    .home-about, .home-experience, .home-ayudh { padding: 5rem 0; }

    .hav-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .hav-stat { padding: 1.25rem; }

    .he-grid { grid-template-columns: 1fr 1fr; }

    .inner-hdr { padding: 2.5rem 0 2rem; }

    .divtab-nav { gap: .25rem; }
    .div-panels-area { padding: 2rem 0; }

    .contact-grid { padding: 2.5rem 0; }
    .contact-form-box { padding: 2rem; }
}


/* ================================================
   MOBILE — max 768px  (additions / fixes)
   ================================================ */
@media (max-width: 768px) {

    /* ---- Hero ---- */
    .home-hero { min-height: auto; padding-bottom: 0; }
    .hero-inner { padding: 3.5rem 1.25rem 10rem; }
    .hero-loc { font-size: .65rem; letter-spacing: .2em; }
    .hero-h { font-size: 1.85rem; letter-spacing: -.02em; line-height: 1.1; }
    .hero-sub { font-size: .92rem; }
    .hero-btns .btn { padding: .85rem 1.5rem; font-size: .9rem; }

    /* Skyline smaller on phone */
    .skyline-svg { min-height: 130px; }

    /* ---- Stats bar ---- */
    .stat-num { font-size: 2rem; }
    .stat-lbl { font-size: .72rem; }

    /* ---- Home sections ---- */
    .home-about, .home-experience, .home-ayudh, .home-cta { padding: 3.5rem 0; }
    .ha-heading { font-size: 1.75rem; }
    .hac-cell { padding: 1.25rem; }
    .hac-num { font-size: 1.6rem; }
    .hac-label { font-size: 1.6rem; }

    /* ---- Experience cards ---- */
    .he-card { padding: 1.5rem; }
    .he-num { font-size: 2.2rem; }
    .he-heading { font-size: 1.6rem; }

    /* ---- Ayudh section ---- */
    .hav-grid { grid-template-columns: 1fr; }
    .hav-stat { padding: 1rem 1.25rem; }
    .hav-stat-num { font-size: 1.5rem; }

    /* ---- Home CTA ---- */
    .home-cta h2 { font-size: 1.75rem; }
    .home-cta p { font-size: .92rem; }

    /* ---- Inner page headers ---- */
    .inner-hdr { padding: 2rem 0 1.75rem; }
    .inner-title { font-size: 1.75rem; }

    /* ---- About page ---- */
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .tagline-quote { font-size: 1.1rem; }
    .mep-heading { font-size: 1.2rem; }
    .mep-lead { font-size: .92rem; }
    .adv-section { margin: 2rem 0; }
    .adv-grid { grid-template-columns: 1fr; gap: 1rem; }

    /* ---- Divisions ---- */
    .div-hdr { padding: 1.5rem 0 0; }
    .div-hdr-title { font-size: 1.5rem; }
    .div-hdr-inner { grid-template-columns: 1fr; gap: 1.25rem; }
    .div-hdr-img { height: 75px; }
    .divtab-nav { padding: 0 1rem; }
    .div-panels-area { padding: 1.5rem 0; }

    /* ---- Contact page ---- */
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 0; }
    .contact-form-box { padding: 1.25rem; border-radius: 12px; }
    .form-ttl { font-size: 1.2rem; }
    .contact-info-card { padding: 1.5rem; }

    /* ---- Footer ---- */
    .site-footer { padding: 1.5rem 0; }
    .page-footer { padding: 1.5rem 0; }
    .sf-tagline { font-size: .8rem; max-width: 100%; }
    .pf-copy { font-size: .72rem; }
}


/* ================================================
   SMALL PHONES — max 390px
   ================================================ */
@media (max-width: 390px) {
    :root { --hh: 68px; }
    .logo-img { height: 32px; }
    .hero-h { font-size: 1.55rem; }
    .hero-sub { font-size: .87rem; }
    .btn { padding: .75rem 1.25rem; font-size: .85rem; }
    .stat-num { font-size: 1.7rem; }
    .inner-title { font-size: 1.5rem; }
    .contact-form-box { padding: 1rem; }
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 16px; } /* prevents iOS zoom on focus */
}
