/* ==========================================================================
   Arsiga Solar — Stylesheet
   ========================================================================== */

:root {
    --c-navy:        #0A1F3D;
    --c-navy-2:      #061226;
    --c-blue:        #11407F;
    --c-blue-2:      #0B2E5C;
    --c-sun:         #F5A623;
    --c-sun-2:       #FFC857;
    --c-emerald:     #16A34A;
    --c-emerald-2:   #34D399;
    --c-sky:         #38BDF8;
    --c-bg:          #FFFFFF;
    --c-bg-alt:      #F4F7FB;
    --c-text:        #1A2333;
    --c-text-soft:   #4B5675;
    --c-text-mute:   #8390A8;
    --c-border:      #E2E8F0;
    --c-white:       #FFFFFF;

    --shadow-sm:  0 1px 2px rgba(13,30,61,.06);
    --shadow:     0 8px 24px rgba(13,30,61,.08);
    --shadow-lg:  0 20px 50px rgba(13,30,61,.12);

    --r-sm: 8px;
    --r:    14px;
    --r-lg: 22px;

    --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-sun); }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: 100%; }

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

h1, h2, h3, h4 { font-family: 'Poppins', 'Inter', sans-serif; line-height: 1.2; color: var(--c-navy); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }

/* Professional legal / blog detail headings — large hero h1 is unchanged.
   h2 inside .legal-content or .blog-content get an accent left bar, number,
   extra breathing space, and a small subtitle line. */
.legal-content h2,
.blog-content h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    color: var(--c-navy);
    padding: 16px 18px 16px 22px;
    margin: 36px 0 14px;
    background: linear-gradient(135deg, rgba(15,42,87,.04), rgba(20,74,140,.06));
    border-left: 5px solid var(--c-sun);
    border-radius: 0 8px 8px 0;
    position: relative;
    display: flex; align-items: center; gap: 12px;
    line-height: 1.3;
}
.legal-content h2 .num,
.blog-content h2 .num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; min-width: 30px; border-radius: 50%;
    background: var(--c-navy); color: var(--c-sun);
    font-size: .82rem; font-weight: 700; letter-spacing: .5px;
}
.legal-content h3,
.blog-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem; font-weight: 700;
    color: var(--c-navy);
    margin-top: 28px; margin-bottom: 10px;
    display: flex; align-items: center; gap: 10px;
}
.legal-content h3::before,
.blog-content h3::before {
    content: ''; width: 18px; height: 3px; background: var(--c-sun);
    border-radius: 99px;
}
.legal-content p,
.blog-content p { margin: 0 0 14px; line-height: 1.65; color: var(--c-text); }
.legal-content ul,
.blog-content ul { margin: 14px 0 22px; padding-left: 0; }

.eyebrow {
    display: inline-block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--c-sun);
    margin-bottom: 12px;
}
.section { padding: 80px 0; position: relative; }
.section.alt { background: var(--c-bg-alt); }
.section.dark { background: var(--c-bg-dark); color: rgba(255,255,255,.85); }
.section.dark h2, .section.dark h3, .section.dark h4 { color: var(--c-white); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-header p { color: var(--c-text-soft); font-size: 1.02rem; margin-top: 14px; }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px; border-radius: 50px;
    font-weight: 600; font-size: .95rem; cursor: pointer;
    border: none; transition: all .25s ease; white-space: nowrap;
}
.btn-primary { background: var(--c-sun); color: var(--c-navy); }
.btn-primary:hover { background: var(--c-sun-2); color: var(--c-navy); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { background: #fff; color: var(--c-navy); border-color: #fff; }
.btn-dark { background: var(--c-navy); color: #fff; }
.btn-dark:hover { background: var(--c-navy-2); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--c-navy); border: 2px solid var(--c-border); }
.btn-ghost:hover { border-color: var(--c-navy); background: var(--c-navy); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }

/* Top bar */
.topbar {
    background: var(--c-navy);
    color: #fff;
    font-size: .82rem;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 38px;
    gap: 16px;
    flex-wrap: wrap;
}
.topbar-info { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.topbar-info i { color: var(--c-sun); margin-right: 6px; }

/* Header / Nav */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--c-border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 50px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
.brand-name { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--c-navy); font-size: 1.15rem; }
.brand-tagline { font-size: .72rem; color: var(--c-text-light); letter-spacing: .3px; }
.nav-home { border: 1.5px solid var(--c-sun) !important; border-radius: 99px !important; color: var(--c-sun) !important; padding: 6px 16px !important; }
.nav-home:hover, .nav-home.active { background: var(--c-sun) !important; color: #fff !important; }
.nav-cta { background: var(--c-blue); color: #fff !important; border-radius: 99px !important; padding: 8px 20px !important; }
.nav-cta:hover { background: var(--c-navy) !important; color: #fff !important; }

.nav-menu { display: flex; gap: 2px; align-items: center; flex-wrap: nowrap; }
.nav-menu > li > a {
    padding: 10px 12px;
    font-weight: 500;
    color: var(--c-text);
    border-radius: 8px;
    position: relative;
    font-size: .92rem;
    white-space: nowrap;
}
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--c-navy); }
.nav-menu > li > a.active::after {
    content: ''; position: absolute;
    bottom: -6px; left: 50%; transform: translateX(-50%);
    width: 18px; height: 3px; background: var(--c-sun); border-radius: 99px;
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--c-navy); margin: 5px 0; border-radius: 3px; transition: .3s; }

/* HERO - full-width slider matching arsigasolar.com */
.hero {
    position: relative;
    min-height: 600px;
    color: #fff;
    overflow: hidden;
}
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1.2s ease-in-out;
    pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(6,18,38,.55) 0%, rgba(6,18,38,.15) 50%, rgba(6,18,38,0) 100%);
    z-index: 2;
}
.hero-slide .bg {
    position: absolute; inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.hero-content {
    position: relative; z-index: 3;
    min-height: 600px;
    display: flex; align-items: center; justify-content: flex-start;
    text-align: left;
    padding: 30px 0;
}
.hero-card {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border-radius: 16px;
    padding: 34px 38px;
    max-width: 540px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.35);
}
.hero-eyebrow {
    color: var(--c-sun);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: .95rem;
    margin-bottom: 14px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
.hero-strip {
    background: rgba(245, 166, 35, 0.92);
    color: var(--c-navy);
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 1.15rem;
    margin-bottom: 16px;
    line-height: 1.3;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: .98rem;
    line-height: 1.55;
    margin-bottom: 22px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
.btn-cta {
    display: inline-block;
    background: var(--c-blue);
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform .25s, background .25s;
}
.btn-cta:hover { background: var(--c-navy); transform: translateY(-2px); }

/* Slider dots */
.slider-dots {
    position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
}
.slider-dots span {
    width: 28px; height: 5px;
    background: rgba(255,255,255,.45); border-radius: 99px; cursor: pointer;
    transition: background .3s, width .3s;
}
.slider-dots span.active { background: var(--c-sun); width: 42px; }

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,.35);
    color: #fff;
    border: none;
    width: 46px; height: 46px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1rem;
    transition: background .25s;
}
.slider-arrow:hover { background: var(--c-sun); color: var(--c-navy); }
.slider-prev { left: 18px; }
.slider-next { right: 18px; }

/* Cards */
.card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    padding: 26px;
    transition: all .3s ease;
    box-shadow: var(--shadow-sm);
    height: 100%;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.card .ic {
    width: 50px; height: 50px; border-radius: 12px;
    background: linear-gradient(135deg, var(--c-sun), var(--c-sun-2));
    display: grid; place-items: center;
    color: var(--c-navy); font-size: 1.2rem;
    margin-bottom: 16px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--c-text-soft); font-size: .92rem; }

.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

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

/* Service cards w/ photo overlay */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    border-radius: var(--r-lg); overflow: hidden; position: relative;
    aspect-ratio: 4/5; cursor: pointer;
}
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover img { transform: scale(1.06); }
.service-card .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,31,61,.95) 0%, rgba(10,31,61,.3) 60%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px; color: #fff;
}
.service-card .num { font-size: .75rem; color: var(--c-sun); font-weight: 700; margin-bottom: 4px; letter-spacing: 1px; }
.service-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 6px; }
.service-card p { font-size: .85rem; color: rgba(255,255,255,.85); }

/* Brands strip */
.brands-strip { background: linear-gradient(135deg, #0F2A57 0%, #144A8C 100%); color: #fff; padding: 70px 0; }
.brands-strip .section-header h2 { color: #fff; }
.brands-strip .eyebrow { color: var(--c-sun); }
.brands-grid { display: flex; align-items: center; justify-content: space-around; gap: 36px; flex-wrap: wrap; }
.brand-logo {
    background: #fff;
    border-radius: 12px;
    padding: 22px 36px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    transition: transform .25s, box-shadow .25s;
    min-width: 220px;
    height: auto;
    filter: none; opacity: 1;
}
.brand-logo:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.35); }
.brand-logo img { max-height: 60px; max-width: 220px; object-fit: contain; }
.brand-logo-svg svg { display: block; width: 240px; max-width: 100%; height: auto; aspect-ratio: 4 / 1; }

/* Stats */
.stats { background: var(--c-navy); color: #fff; padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat b { font-family: 'Poppins'; font-size: 2.4rem; color: var(--c-sun); display: block; font-weight: 800; }
.stat small { color: rgba(255,255,255,.7); font-size: .8rem; text-transform: uppercase; letter-spacing: 1.5px; }

/* CTA strip */
.cta-strip {
    background:
        linear-gradient(135deg, rgba(10,31,61,.95), rgba(17,64,127,.9)),
        url('../assets/hero-rooftop.jpg') center/cover no-repeat fixed;
    color: #fff;
    padding: 80px 0; text-align: center;
}
.cta-strip h2 { color: #fff; margin-bottom: 16px; }
.cta-strip p { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 720px; margin: 0 auto 28px; }
.cta-strip-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
.cta-strip-btns .btn { min-width: 200px; text-align: center; }
.cta-strip-btns .btn i { margin-right: 8px; }

/* Warehouses */
.warehouse-list { display: grid; gap: 12px; margin-top: 22px; }
.warehouse-row {
    display: flex; align-items: center; gap: 14px;
    padding: 14px;
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    transition: all .2s ease;
    background: #fff;
}
.warehouse-row:hover { border-color: var(--c-sun); transform: translateX(6px); }
.warehouse-row .flag {
    width: 50px; height: 50px; border-radius: 12px;
    background: var(--c-bg-alt);
    display: grid; place-items: center; overflow: hidden;
    flex-shrink: 0;
}
.warehouse-row .flag img { width: 100%; height: 100%; object-fit: cover; }
.warehouse-row b { display: block; }
.warehouse-row small { color: var(--c-text-mute); font-size: .85rem; }

/* Professional Network section */
.network-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 0 0 36px; }
.network-stat { background: linear-gradient(135deg, #0F2A57, #144A8C); color: #fff; border-radius: 12px; padding: 20px 14px; text-align: center; }
.network-stat b { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.7rem; color: var(--c-sun); display: block; line-height: 1; margin-bottom: 6px; }
.network-stat span { font-size: .78rem; opacity: .9; letter-spacing: .5px; text-transform: uppercase; }

.warehouse-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.warehouse-card {
    background: #fff; border-radius: 10px; padding: 16px 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
    border-top: 4px solid var(--c-navy);
    transition: transform .25s, box-shadow .25s, border-color .25s;
    display: block; text-decoration: none; color: inherit;
}
.warehouse-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.1); border-top-color: var(--c-sun); }
.wh-state { font-size: .68rem; color: var(--c-text-mute); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; font-weight: 600; }
.wh-city { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--c-navy); margin-bottom: 8px; }
.wh-info { font-size: .82rem; color: var(--c-text); margin-bottom: 3px; }
.wh-info i { color: var(--c-sun); width: 14px; margin-right: 6px; }
.warehouse-cta {
    background: linear-gradient(135deg, var(--c-sun) 0%, #E07B00 100%);
    border-top: none; color: var(--c-navy);
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.warehouse-cta .wh-city { color: var(--c-navy); }
.warehouse-cta .wh-info { color: rgba(15, 30, 61, .85); }
.warehouse-cta .wh-info i { color: var(--c-navy); }
.warehouse-cta:hover { transform: translateY(-3px) scale(1.02); }

@media (max-width: 700px) {
    .network-stats { grid-template-columns: 1fr 1fr; }
    .warehouse-grid { grid-template-columns: 1fr; }
}
.icon-list { margin-top: 22px; display: grid; gap: 14px; }
.icon-list li { display: flex; gap: 12px; align-items: flex-start; }
.icon-list .ic {
    flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
    background: var(--c-emerald); color: #fff;
    display: grid; place-items: center; font-size: .75rem;
}
.text-accent { color: var(--c-sun); }

/* Page hero (inside pages) */
.page-hero {
    background:
        linear-gradient(135deg, rgba(10,31,61,.92), rgba(17,64,127,.85)),
        url('../assets/banner-2.jpg') center/cover no-repeat;
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 700px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 16px; font-size: .88rem; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* Form */
.form { background: #fff; padding: 34px; border-radius: var(--r-lg); box-shadow: var(--shadow); border: 1px solid var(--c-border); }
.form h3 { margin-bottom: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .88rem; }
.field input, .field select, .field textarea {
    width: 100%; padding: 12px 14px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r);
    transition: all .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c-blue); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.alert { padding: 14px 18px; border-radius: var(--r-sm); margin-bottom: 18px; font-size: .9rem; }
.alert-success { background: rgba(22,163,74,.12); color: #166534; border: 1px solid rgba(22,163,74,.2); }
.alert-error { background: rgba(220,38,38,.1); color: #991B1B; border: 1px solid rgba(220,38,38,.2); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; }
.contact-info {
    background: var(--c-navy); color: #fff;
    padding: 38px 32px; border-radius: var(--r-lg);
}
.contact-info h3 { color: #fff; margin-bottom: 22px; }
.contact-info .row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-info .row:last-child { border: none; }
.contact-info .row .ic {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,.1); display: grid; place-items: center; color: var(--c-sun);
    flex-shrink: 0;
}
.contact-info b { display: block; font-size: .88rem; }
.contact-info small { color: rgba(255,255,255,.7); }
.contact-info .socials { display: flex; gap: 10px; margin-top: 22px; }
.contact-info .socials a {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,.08);
    display: grid; place-items: center; color: #fff;
}
.contact-info .socials a:hover { background: var(--c-sun); color: var(--c-navy); }

/* Footer */
.footer { background: var(--c-navy-2); color: rgba(255,255,255,.7); padding: 60px 0 0; }
.footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: var(--c-sun); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer h5 { color: #fff; font-size: 1rem; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 3px; background: var(--c-sun); border-radius: 99px; }
.footer ul li { margin-bottom: 8px; }
.footer .brand img { height: 50px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer p { font-size: .9rem; line-height: 1.7; }
.footer .socials { display: flex; gap: 10px; margin-top: 14px; }
.footer .socials a {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,.07);
    display: grid; place-items: center; color: #fff;
}
.footer .socials a:hover { background: var(--c-sun); color: var(--c-navy); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 50px; padding: 20px 0;
    text-align: center; font-size: .85rem;
}

/* Floating buttons */
.float-whatsapp, .float-call {
    position: fixed; right: 22px;
    border-radius: 50%; display: grid; place-items: center;
    z-index: 90;
}
.float-whatsapp {
    bottom: 22px; width: 54px; height: 54px;
    background: #25D366; color: #fff; font-size: 1.6rem;
    box-shadow: 0 10px 30px rgba(37,211,102,.4);
}
.float-call {
    bottom: 86px; width: 48px; height: 48px;
    background: var(--c-sun); color: var(--c-navy);
    box-shadow: 0 10px 30px rgba(245,166,35,.4);
}

/* Two-col split-grid */
.split-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.split-grid.reverse { grid-template-columns: .9fr 1.1fr; }
.split-grid img { border-radius: var(--r-lg); width: 100%; box-shadow: var(--shadow); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* pill */
.pill { display:inline-flex; align-items:center; gap:8px; padding:8px 16px; border-radius:99px; background:rgba(245,166,35,.12); color:#B36D00; font-size:.85rem; font-weight:600; }

@media (max-width: 1100px) {
    .nav-menu > li > a { padding: 10px 8px; font-size: .86rem; }
}
@media (max-width: 980px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff; flex-direction: column;
        padding: 16px;
        box-shadow: var(--shadow);
        border-top: 1px solid var(--c-border);
    }
    .nav-menu.open { display: flex; }
    .nav-menu > li { width: 100%; }
    .nav-menu > li > a { display: block; padding: 12px; }
    .nav-toggle { display: block; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
    .cards-2, .cards-3, .cards-4, .service-grid {
        grid-template-columns: 1fr;
    }
    .cta-strip-btns .btn { width: 100%; min-width: 0; }
    .about-grid, .split-grid, .split-grid.reverse, .contact-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero { min-height: 460px; }
    .hero-content { min-height: 460px; padding: 20px 0; }
    .hero-card { padding: 22px 22px; max-width: 92%; }
    .hero-eyebrow { font-size: .82rem; letter-spacing: 1px; margin-bottom: 10px; }
    .hero-strip { font-size: .98rem; padding: 8px 12px; }
    .hero-text { font-size: .88rem; margin-bottom: 16px; }
    .btn-cta { padding: 12px 26px; font-size: .92rem; }
    .slider-arrow { width: 38px; height: 38px; font-size: .85rem; }
    .slider-prev { left: 8px; }
    .slider-next { right: 8px; }
    .topbar-inner { height: auto; padding: 6px 0; gap: 8px; }
    .topbar-info { gap: 12px; font-size: .75rem; }
}
