/* ============================================================
   EllosHR — site stylesheet
   Manufacturing & Heavy Industry recruitment
   ============================================================ */

:root {
    --navy: #1f2557;
    --navy-deep: #141436;
    --navy-soft: #2d3470;
    --mint: #4CE39E;
    --orange: #F26B1F;
    --orange-deep: #D9560F;
    --title: #111111;
    --text: #4B5563;
    --muted: #6B7280;
    --bg: #ffffff;
    --bg-soft: #F6F7FB;
    --bg-band: #F0F2F8;
    --border: rgba(31, 37, 87, 0.10);
    --border-strong: rgba(31, 37, 87, 0.22);
    --shadow-sm: 0 1px 2px rgba(20, 20, 54, 0.06);
    --shadow-md: 0 8px 28px rgba(20, 20, 54, 0.08);
    --shadow-lg: 0 18px 50px rgba(20, 20, 54, 0.14);

    --font-head: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container: 1200px;
    --radius: 10px;
    --radius-lg: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--orange); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--title);
    line-height: 1.2;
    margin: 0 0 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(36px, 5vw, 56px); letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 3.5vw, 42px); }
h3 { font-size: clamp(22px, 2.4vw, 28px); }
h4 { font-size: 20px; }
h5 { font-size: 17px; }

p { margin: 0 0 16px; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.btn-primary:hover {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
    color: #fff;
    transform: translateY(-1px);
}

.btn-cta {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

.btn-cta:hover {
    background: var(--orange-deep);
    border-color: var(--orange-deep);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
}

.btn-arrow::after {
    content: "→";
    font-weight: 400;
}

/* ============================================================
   Header / Navigation
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-bar {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 78px;
    gap: 20px;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo img {
    height: 44px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    border-radius: 6px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li.is-open > a,
.nav-menu > li.is-active > a {
    background: var(--bg-band);
    color: var(--navy);
}

.nav-menu .caret {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-top: 2px;
    transition: transform 0.2s ease;
}

.nav-menu > li.is-open .caret { transform: rotate(180deg); }

.nav-cta-wrap {
    flex-shrink: 0;
}

.nav-cta {
    padding: 12px 22px;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Mega menu */
.megamenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    min-width: 280px;
}

.nav-menu > li.is-open .megamenu,
.nav-menu > li:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.megamenu-wide { min-width: 560px; }
.megamenu-grid {
    display: grid;
    gap: 4px 24px;
}
.megamenu-grid-1 { grid-template-columns: 1fr; }
.megamenu-grid-2 { grid-template-columns: 1fr 1fr; }
.megamenu-grid-3 { grid-template-columns: repeat(3, 1fr); min-width: 720px; }

.megamenu h6 {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700;
    margin: 8px 0 6px;
    padding: 0 12px;
}

.megamenu a {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    border-radius: 6px;
    line-height: 1.4;
}

.megamenu a:hover {
    background: var(--bg-band);
    color: var(--orange);
}

/* Mobile nav */
.mobile-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    margin: 5px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

body.mobile-open .mobile-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.mobile-open .mobile-toggle span:nth-child(2) { opacity: 0; }
body.mobile-open .mobile-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    inset: 78px 0 0 0;
    background: #fff;
    overflow-y: auto;
    z-index: 99;
    padding: 24px;
}

body.mobile-open { overflow: hidden; }
body.mobile-open .mobile-menu { display: block; }

.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu > ul > li { border-bottom: 1px solid var(--border); }
.mobile-menu > ul > li > a, .mobile-acc-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 0;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 16px;
    color: var(--navy);
    background: transparent;
    border: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-align: left;
}

.mobile-acc-content { display: none; padding-bottom: 12px; }
.mobile-acc-content.is-open { display: block; }
.mobile-acc-content a {
    display: block;
    padding: 8px 0 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}
.mobile-acc-content a:hover { color: var(--orange); }
.mobile-acc-content h6 {
    margin: 12px 0 4px 16px;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
}

.mobile-cta {
    display: block;
    margin-top: 24px;
    text-align: center;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: #fff;
    padding: 72px 0;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
}
.hero > .container { width: 100%; }

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(76, 227, 158, 0.10), transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(242, 107, 31, 0.10), transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero h1 {
    color: #fff;
    margin-bottom: 24px;
}

.hero .eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #fff;
}

.hero p.lede {
    font-size: clamp(17px, 1.6vw, 19px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 540px;
    height: 360px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    opacity: 0.45;
    mask-image: linear-gradient(to left, #000 50%, transparent);
    -webkit-mask-image: linear-gradient(to left, #000 50%, transparent);
}

.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* Hero slider */
.hero-slider {
    position: relative;
    display: grid;
}
.hero-slide {
    grid-area: 1 / 1;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
}
.hero-slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.hero h1 .accent {
    color: var(--mint);
}
.slide-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}
.slide-dot {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    border: 0;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, width 0.25s ease;
}
.slide-dot.is-active {
    background: var(--mint);
    width: 48px;
}
.slide-dot:hover { background: rgba(255, 255, 255, 0.55); }
.slide-dot.is-active:hover { background: var(--mint); }

/* Sub-page hero (slimmer) */
.subhero {
    background: var(--navy);
    color: #fff;
    padding: 64px 0;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.subhero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 50%, rgba(242, 107, 31, 0.16), transparent 55%);
}
.subhero .container { position: relative; }
.subhero .eyebrow {
    display: inline-block;
    color: var(--mint);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.subhero h1 { color: #fff; margin-bottom: 14px; font-size: clamp(32px, 4vw, 46px); }
.subhero p { color: rgba(255, 255, 255, 0.82); font-size: 18px; max-width: 720px; margin: 0; }

/* Crumbs */
.crumbs {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 16px;
}
.crumbs a { color: rgba(255, 255, 255, 0.85); }
.crumbs a:hover { color: #fff; }
.crumbs span { margin: 0 8px; opacity: 0.5; }

/* ============================================================
   Sections
   ============================================================ */

.section {
    padding: 88px 0;
}

.section-soft { background: var(--bg-soft); }
.section-band { background: var(--bg-band); }
.section-navy { background: var(--navy); color: rgba(255,255,255,0.85); }
.section-navy h2, .section-navy h3, .section-navy h4 { color: #fff; }

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.section-head.left { text-align: left; margin-left: 0; }

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 17px; color: var(--muted); margin: 0; }

/* ============================================================
   Cards
   ============================================================ */

.card-grid {
    display: grid;
    gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-strong);
}

.card-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-band);
    border-radius: 10px;
    margin-bottom: 18px;
    color: var(--orange);
    font-size: 22px;
}

.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; margin-bottom: 16px; flex: 1; }
.card a.card-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.card a.card-link::after { content: " →"; transition: transform 0.2s ease; display: inline-block; }
.card a.card-link:hover { color: var(--orange); }
.card a.card-link:hover::after { transform: translateX(4px); }

/* Card with cover image */
.card-cover {
    padding: 0;
    overflow: hidden;
}
.card-cover .card-img {
    aspect-ratio: 16 / 10;
    background: var(--bg-band);
    overflow: hidden;
}
.card-cover .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card-cover:hover .card-img img { transform: scale(1.04); }
.card-cover .card-body { padding: 24px; }

/* Small linkable cards (industries / expertise grid) */
.tile {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 76px;
    transition: all 0.2s ease;
    color: var(--navy);
    text-decoration: none;
}
.tile:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.tile h4 { font-size: 16px; color: inherit; margin: 0; line-height: 1.3; }
.tile span.arrow {
    font-size: 18px;
    opacity: 0.5;
    flex-shrink: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.tile:hover span.arrow { opacity: 1; transform: translateX(4px); }

/* ============================================================
   Chips (typical positions)
   ============================================================ */

.chips {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.chips li {
    background: #fff;
    border: 1px solid var(--border);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--navy);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chips li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================================
   Process / Steps
   ============================================================ */

.steps {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    counter-reset: step;
}

.step {
    position: relative;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    counter-increment: step;
}

.step::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 800;
    color: var(--bg-band);
    line-height: 1;
}

.step h4 { font-size: 18px; margin-bottom: 8px; padding-right: 50px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

/* ============================================================
   Stats / Values
   ============================================================ */

.values {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.value {
    padding: 24px;
    border-left: 3px solid var(--orange);
    background: var(--bg-soft);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.value h4 { font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.value p { margin: 0; font-size: 14px; }

/* ============================================================
   Brand strip — "We Breathe Manufacturing"
   ============================================================ */

.brand-strip {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: #fff;
    padding: 64px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.brand-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(242, 107, 31, 0.18), transparent 60%);
    pointer-events: none;
}

.brand-strip .container { position: relative; }

.brand-tags {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}
.brand-tags span {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(18px, 2.2vw, 26px);
    color: #fff;
    letter-spacing: 0.01em;
}
.brand-tags span:not(:last-child)::after {
    content: "·";
    margin-left: 24px;
    color: var(--mint);
    opacity: 0.7;
}

/* ============================================================
   CTA block
   ============================================================ */

.cta-block {
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    padding: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-block h2 { margin: 0 0 8px; }
.cta-block p { margin: 0; color: var(--muted); font-size: 16px; max-width: 520px; }
.cta-block .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   Long-form copy blocks
   ============================================================ */

.prose {
    max-width: 760px;
    margin: 0 auto;
}
.prose p, .prose li {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
}
.prose h2 { margin-top: 48px; }
.prose h3 { margin-top: 32px; font-size: 22px; }
.prose ul { padding-left: 24px; }
.prose .pullquote {
    font-family: var(--font-head);
    font-size: clamp(22px, 2.8vw, 30px);
    line-height: 1.3;
    color: var(--navy);
    border-left: 4px solid var(--orange);
    padding: 8px 0 8px 24px;
    margin: 32px 0;
    font-weight: 600;
}

/* ============================================================
   Forms
   ============================================================ */

.form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 18px;
}
.form-row.single { grid-template-columns: 1fr; }

.form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form input,
.form select,
.form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--title);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    outline: 0;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(31, 37, 87, 0.12);
}

.form textarea { min-height: 140px; resize: vertical; }

.form-actions { display: flex; gap: 12px; align-items: center; margin-top: 8px; }
.form-msg { font-size: 13px; color: var(--muted); }
.form-msg.success { color: #0a7a3e; }
.form-msg.error { color: #c0392b; }

/* ============================================================
   Two-column split layout
   ============================================================ */

.split {
    display: grid;
    gap: 56px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.split-img {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-band);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }

.split h2 { margin-bottom: 16px; }
.split p { font-size: 17px; color: var(--text); }

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    padding: 64px 0 32px;
    margin-top: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr;
    gap: 56px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-logo img { height: 38px; filter: brightness(0) invert(1); margin-bottom: 20px; }

.footer-blurb {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 440px;
}

.footer-links h6,
.footer-taglines h6 {
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 18px;
    font-weight: 700;
    font-family: var(--font-body);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--mint); }

.footer-taglines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.footer-taglines span {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    padding: 4px 0 4px 14px;
    border: 0;
    border-left: 3px solid var(--mint);
    background: transparent;
    border-radius: 0;
    line-height: 1.35;
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-disclaimer {
    max-width: 820px;
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.50);
    margin: 0;
}

.footer-copy {
    white-space: nowrap;
    margin: 0;
    font-size: 12px;
}

/* ============================================================
   Logo card grid (clients / partners — optional)
   ============================================================ */

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
    .split { grid-template-columns: 1fr; gap: 32px; }
    .hero-image { display: none; }
    .megamenu-grid-3 { grid-template-columns: 1fr 1fr; min-width: 480px; }
}

@media (max-width: 860px) {
    .nav-menu, .nav-cta-wrap { display: none; }
    .mobile-toggle { display: block; margin-left: auto; }
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-blurb { max-width: none; }
    .cta-block { padding: 32px; flex-direction: column; align-items: flex-start; text-align: left; }
    .form { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    .hero { padding: 56px 0; min-height: 560px; }
    .megamenu-grid-2, .megamenu-grid-3 { grid-template-columns: 1fr; min-width: 260px; }
    .megamenu-wide { min-width: 260px; }
}

@media (max-width: 540px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .nav-bar { height: 64px; gap: 16px; padding: 0 16px; }
    .nav-logo img { height: 36px; }
    .mobile-menu { inset: 64px 0 0 0; }
    .container, .container-narrow { padding: 0 16px; }
    .hero { padding: 48px 0; min-height: 500px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .brand-tags { flex-direction: column; gap: 12px; }
    .brand-tags span::after { display: none; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-links ul { grid-template-columns: 1fr; }
}
