/* ==========================================================================
   hidrologi.net — Modern v2.1
   Faithful implementation of the original desktop + mobile mockups.
   ========================================================================== */

:root{
    --mv2-navy:#062d51;
    --mv2-navy-2:#0a406f;
    --mv2-blue:#0877d9;
    --mv2-blue-deep:#0563bd;
    --mv2-orange:#f58a25;
    --mv2-orange-dark:#ef7313;
    --mv2-green:#27ad78;
    --mv2-cyan:#20a5ef;
    --mv2-ink:#082a55;
    --mv2-body:#4d6884;
    --mv2-muted:#8193a6;
    --mv2-page:#f4f9fd;
    --mv2-card:#fff;
    --mv2-line:#dfeaf3;
    --mv2-shadow:0 12px 30px rgba(30,82,122,.08);
    --mv2-radius:14px;
    --mv2-header:56px;
}

*,
*::before,
*::after{box-sizing:border-box}

html{scroll-behavior:smooth}
body.mv2-body{
    margin:0;
    overflow-x:hidden;
    color:var(--mv2-ink);
    background:#fff;
    font-family:Arial, Helvetica, sans-serif;
    -webkit-font-smoothing:antialiased;
}
.mv2-body a{color:inherit;text-decoration:none}
.mv2-body img{display:block;max-width:100%}
.mv2-body svg{
    width:1em;height:1em;
    fill:none;stroke:currentColor;stroke-width:1.9;
    stroke-linecap:round;stroke-linejoin:round
}
.mv2-container{width:min(980px,calc(100% - 26px));margin:0 auto}

/* Header ---------------------------------------------------------------- */
.mv2-header{
    position:relative;
    z-index:100;
    height:var(--mv2-header);
    background:#fff;
    border-bottom:1px solid #edf3f7;
}
.mv2-header-inner{
    width:min(960px,calc(100% - 28px));
    height:100%;
    margin:0 auto;
    display:grid;
    grid-template-columns:184px minmax(0,1fr) auto;
    gap:14px;
    align-items:center;
}
.mv2-logo{display:flex;align-items:center}
.mv2-logo img{width:auto;height:36px;object-fit:contain}
.mv2-nav{
    display:flex;justify-content:center;align-items:center;gap:1px
}
.mv2-nav a{
    display:flex;align-items:center;
    min-height:34px;padding:0 9px;
    color:#082a55;font-size:10px;font-weight:700;
    border-radius:7px;white-space:nowrap
}
.mv2-nav a:hover,.mv2-nav a.is-active{color:#0569c8}
.mv2-header-actions{display:flex;align-items:center;gap:8px}
.mv2-search{
    width:31px;height:31px;
    display:flex;align-items:center;justify-content:center;
    border-radius:50%;background:#f7fbff;color:#092f56
}
.mv2-search svg{width:16px;height:16px}
.mv2-link-login,.mv2-link-register{
    min-width:78px;height:31px;padding:0 14px;
    display:flex;align-items:center;justify-content:center;
    border-radius:8px;font-size:10px;font-weight:800
}
.mv2-link-login{border:1px solid #82c7ff;color:#0769c7;background:#fff}
.mv2-link-register{background:linear-gradient(180deg,#1484ec,#056acb);color:#fff}
.mv2-menu-button{
    display:none;width:34px;height:34px;padding:0;
    border:0;background:transparent;color:#0b4777;
    align-items:center;justify-content:center
}
.mv2-menu-button svg{width:24px;height:24px}
.mv2-menu-close-icon{display:none}
.mv2-menu-button.is-open .mv2-menu-open-icon{display:none}
.mv2-menu-button.is-open .mv2-menu-close-icon{display:flex}

/* Hero ------------------------------------------------------------------ */
.mv2-hero{
    min-height:365px;
    position:relative;
    color:#fff;
    background-image:
        linear-gradient(90deg,rgba(0,43,81,.93) 0%,rgba(0,52,91,.76) 40%,rgba(0,53,92,.20) 71%,rgba(0,53,92,.05) 100%),
        var(--mv2-hero-image);
    background-size:cover;
    background-position:center 53%;
}
.mv2-hero-content{
    min-height:365px;
    display:grid;
    grid-template-columns:minmax(0,1fr) 230px;
    align-items:center;
    gap:40px
}
.mv2-hero-copy{padding:34px 0 44px}
.mv2-hero-copy h1{
    max-width:540px;
    margin:0;
    color:#fff;
    font-size:38px;
    line-height:1.1;
    letter-spacing:-1.2px;
    text-shadow:0 2px 8px rgba(0,29,55,.20)
}
.mv2-hero-copy p{
    max-width:520px;
    margin:15px 0 0;
    color:#fff;
    font-size:14px;
    line-height:1.5
}
.mv2-hero-description-mobile{display:none}
.mv2-hero-actions{display:flex;gap:15px;margin-top:20px}
.mv2-btn{
    height:38px;padding:0 20px;
    display:inline-flex;align-items:center;justify-content:center;gap:9px;
    border-radius:8px;
    font-size:11px;font-weight:800
}
.mv2-btn svg{width:15px;height:15px}
.mv2-btn-orange{
    background:linear-gradient(180deg,#ff9b35,#f47f1c);
    color:#fff;box-shadow:0 5px 14px rgba(240,117,20,.24)
}
.mv2-btn-outline-light{border:1px solid #47b8ff;color:#fff;background:rgba(1,45,80,.20)}
.mv2-hero-quote{
    align-self:start;
    margin-top:34px;
    padding-left:19px;
    border-left:1px solid rgba(81,196,255,.80)
}
.mv2-hero-quote>span{
    display:block;width:21px;height:2px;margin-bottom:12px;
    background:#63d0ff
}
.mv2-hero-quote p{
    margin:0;color:#fff;font-size:12px;line-height:1.55;font-weight:700
}

/* Module tray ------------------------------------------------------------ */
.mv2-modules-section{
    position:relative;
    z-index:10;
    margin-top:-27px;
    padding-bottom:36px;
    background:linear-gradient(180deg,transparent 0,transparent 27px,#f5fafe 27px,#f5fafe 100%)
}
.mv2-module-tray{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    overflow:hidden;
    border:1px solid #e2edf5;
    border-radius:13px;
    background:rgba(255,255,255,.98);
    box-shadow:0 9px 24px rgba(27,78,118,.12)
}
.mv2-module-card{
    min-width:0;
    min-height:101px;
    padding:15px 8px 12px;
    position:relative;
    display:flex;flex-direction:column;align-items:center;justify-content:flex-start;
    text-align:center;
    border-right:1px solid #e8eff5
}
.mv2-module-card:last-child{border-right:0}
.mv2-module-card:hover{background:#fafdff}
.mv2-module-icon{
    width:34px;height:34px;margin-bottom:7px;
    display:flex;align-items:center;justify-content:center;color:#0a86ec
}
.mv2-module-icon svg{width:32px;height:32px;stroke-width:2.15}
.mv2-module-card.icon-sun .mv2-module-icon{color:#ff8a1d}
.mv2-module-card.icon-map .mv2-module-icon{color:#29ad78}
.mv2-module-card strong{font-size:12px;color:#082a55;line-height:1.2}
.mv2-module-card small{
    display:block;max-width:112px;margin-top:4px;
    color:#496988;font-size:8px;line-height:1.2
}
.mv2-module-card.is-coming{opacity:.68}

/* Main paired blocks ----------------------------------------------------- */
.mv2-section{padding:0}
.mv2-section-soft{background:#f5fafe}
.mv2-data-layout{
    display:grid;
    grid-template-columns:1.55fr .95fr;
    grid-template-areas:"coverage groundwater";
    gap:20px;
    padding-bottom:19px
}
.mv2-data-coverage{grid-area:coverage}
.mv2-data-groundwater{grid-area:groundwater}
.mv2-panel{
    position:relative;
    overflow:hidden;
    min-height:286px;
    border:1px solid #e0ebf4;
    border-radius:12px;
    background:#fff;
    box-shadow:0 6px 17px rgba(31,87,130,.07)
}

/* Coverage --------------------------------------------------------------- */
.mv2-coverage-panel{padding:0 16px 12px}
.mv2-coverage-map{
    height:150px;
    display:flex;align-items:center;justify-content:center;
    background:
        radial-gradient(circle at 50% 45%,rgba(107,190,220,.13),transparent 55%),
        linear-gradient(180deg,#f4fbff,#fff)
}
.mv2-coverage-map img{
    width:90%;height:128px;object-fit:contain;opacity:.55;filter:saturate(.85)
}
.mv2-coverage-copy{margin-top:0}
.mv2-coverage-copy h2{margin:0;color:#082a55;font-size:15px}
.mv2-coverage-copy p{margin:4px 0 0;color:#56718a;font-size:9px}
.mv2-coverage-stats{
    display:grid;grid-template-columns:repeat(4,1fr);
    margin-top:15px
}
.mv2-coverage-stats article{text-align:center;border-right:1px solid #dce7f0}
.mv2-coverage-stats article:last-child{border-right:0}
.mv2-coverage-stats strong{display:block;color:#0567c6;font-size:24px;line-height:1}
.mv2-coverage-stats span{display:block;margin-top:5px;color:#4f6983;font-size:9px}
.mv2-map-button{
    width:max-content;min-width:176px;height:38px;margin-top:14px;padding:0 14px;
    display:flex;align-items:center;gap:8px;
    border:1px solid #9bd2ff;border-radius:8px;background:#fff;
    color:#0673d4;font-size:10px;font-weight:800;
    box-shadow:0 4px 11px rgba(40,127,190,.10)
}
.mv2-map-button>span{margin-left:auto;display:none}
.mv2-map-button svg{width:16px;height:16px}

/* Groundwater ------------------------------------------------------------ */
.mv2-groundwater-panel{
    min-height:286px;padding:26px 24px 18px;
    background:
        radial-gradient(circle at 95% 85%,rgba(35,157,232,.08),transparent 37%),
        linear-gradient(180deg,#fff,#fbfdff)
}
.mv2-groundwater-content{position:relative;z-index:2}
.mv2-groundwater-panel h2{margin:0;color:#082a55;font-size:23px;letter-spacing:-.4px}
.mv2-groundwater-panel p{max-width:320px;margin:7px 0 12px;color:#4c6782;font-size:10px;line-height:1.45}
.mv2-coordinate-single{position:relative}
.mv2-coordinate-single input{
    width:100%;height:36px;padding:0 42px 0 13px;
    border:1px solid #d4e5f2;border-radius:8px;background:#fff;
    color:#365774;font:inherit;font-size:10px;outline:0
}
.mv2-coordinate-single input:focus{border-color:#54acf1;box-shadow:0 0 0 3px rgba(47,158,237,.10)}
.mv2-coordinate-single input.is-invalid{border-color:#d26a73;box-shadow:0 0 0 3px rgba(210,106,115,.10)}
.mv2-coordinate-single button{
    position:absolute;right:4px;top:4px;width:29px;height:29px;
    display:flex;align-items:center;justify-content:center;
    border:0;background:transparent;color:#0b67bd;cursor:pointer
}
.mv2-coordinate-single button svg{width:17px;height:17px}
.mv2-analysis-button{
    width:100%;height:36px;margin-top:10px;
    display:flex;align-items:center;justify-content:center;gap:10px;
    border:0;border-radius:7px;
    background:linear-gradient(180deg,#1388ed,#0871d8);
    color:#fff;font:inherit;font-size:10px;font-weight:800;cursor:pointer
}
.mv2-analysis-button svg{width:14px;height:14px}
.mv2-example-link{
    display:flex;align-items:center;gap:7px;margin-top:11px;
    color:#0472d0;font-size:9px;font-weight:700
}
.mv2-example-link svg{width:13px;height:13px}
.mv2-groundwater-illustration{
    position:absolute;right:-2px;bottom:-4px;
    width:150px;height:auto;opacity:.90;pointer-events:none
}
.mv2-groundwater-status{
    margin-top:7px;padding:6px 8px;border-radius:6px;font-size:8px;line-height:1.35
}
.mv2-groundwater-status.is-error{color:#923f48;background:#fff4f5}
.mv2-groundwater-status.is-success{color:#0e7659;background:#effbf6}
.mv2-groundwater-status.is-loading{color:#1765a0;background:#f1f8ff}

/* Opportunities row ------------------------------------------------------ */
.mv2-opportunity-layout{
    display:grid;grid-template-columns:1.55fr .95fr;gap:20px;
    padding:0 0 18px;background:#f5fafe
}
.mv2-jobs{
    padding:18px 16px 16px;
    border:1px solid #e2ebf3;border-radius:11px;background:#fff;
    box-shadow:0 6px 17px rgba(31,87,130,.06)
}
.mv2-list-heading{
    display:flex;align-items:flex-start;justify-content:space-between;gap:14px;
    margin-bottom:12px
}
.mv2-list-heading h2{margin:0;color:#082a55;font-size:19px}
.mv2-list-heading p{margin:4px 0 0;color:#59728a;font-size:9px}
.mv2-list-heading>a{
    display:flex;align-items:center;gap:6px;padding-top:2px;
    color:#0672d1;font-size:9px;font-weight:800
}
.mv2-list-heading>a svg{width:13px;height:13px}
.mv2-job-list{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.mv2-job-card{
    min-height:109px;padding:12px;
    border:1px solid #dde8f1;border-radius:8px;background:#fff;
    box-shadow:0 3px 9px rgba(32,85,125,.06)
}
.mv2-job-card h3{margin:0;color:#092e57;font-size:12px}
.mv2-job-card p{
    margin:3px 0 8px;color:#42617e;font-size:9px;line-height:1.25;
    overflow:hidden;text-overflow:ellipsis;white-space:nowrap
}
.mv2-job-meta{display:flex;gap:9px;flex-wrap:wrap;color:#3d6f9b;font-size:8px}
.mv2-job-meta span{display:flex;align-items:center;gap:4px}
.mv2-job-meta svg{width:11px;height:11px}
.mv2-job-card small{display:block;margin-top:10px;color:#56728c;font-size:8px}

/* Engineer network ------------------------------------------------------- */
.mv2-engineer-network{
    position:relative;overflow:hidden;min-height:228px;padding:22px 18px;
    border-radius:11px;
    background:
        linear-gradient(90deg,rgba(3,45,81,.98) 0%,rgba(2,52,91,.93) 54%,rgba(2,52,91,.42) 100%),
        linear-gradient(180deg,#0b4f83,#0b365e);
    color:#fff
}
.mv2-engineer-copy{position:relative;z-index:3}
.mv2-engineer-network h2{margin:0;color:#fff;font-size:22px;line-height:1.05}
.mv2-engineer-network p{margin:9px 0 0;color:#fff;font-size:9px;line-height:1.45}
.mv2-engineer-cta{
    width:max-content;height:36px;margin-top:13px;padding:0 15px;
    display:flex;align-items:center;gap:10px;border-radius:7px;
    background:linear-gradient(180deg,#ff9a31,#f37d1a);
    color:#fff;font-size:10px;font-weight:800
}
.mv2-engineer-cta svg{width:13px;height:13px}
.mv2-engineer-social-proof{display:flex;align-items:center;gap:8px;margin-top:13px}
.mv2-engineer-avatars{display:flex}
.mv2-engineer-avatars span{
    width:25px;height:25px;margin-left:-5px;overflow:hidden;
    display:flex;align-items:center;justify-content:center;
    border:2px solid #fff;border-radius:50%;background:#eaf4fb;
    color:#1269a7;font-size:7px;font-weight:900
}
.mv2-engineer-avatars span:first-child{margin-left:0}
.mv2-engineer-avatars img{width:100%;height:100%;object-fit:cover}
.mv2-engineer-social-proof small{color:#fff;font-size:7px;line-height:1.2}
.mv2-engineer-image{
    position:absolute;z-index:2;right:-1px;top:0;bottom:0;width:42%;overflow:hidden
}
.mv2-engineer-image::before{
    content:"";position:absolute;inset:0;z-index:2;
    background:linear-gradient(90deg,#083d69 0%,rgba(8,61,105,.16) 56%,transparent 100%)
}
.mv2-engineer-image img{width:100%;height:100%;object-fit:cover;object-position:center top}
.mv2-engineer-network blockquote{
    position:absolute;z-index:4;right:80px;bottom:48px;
    margin:0;color:#fff;font-size:10px;line-height:1.35;font-style:italic;
    transform:rotate(-4deg);text-shadow:0 2px 5px rgba(0,0,0,.15)
}

/* Insights --------------------------------------------------------------- */
.mv2-insight-layout{
    display:grid;grid-template-columns:1.55fr .95fr;gap:20px;
    padding:0 0 38px;background:#f5fafe
}
.mv2-articles{min-width:0}
.mv2-article-list{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.mv2-article-card{
    overflow:hidden;border:1px solid #dde8f1;border-radius:9px;background:#fff;
    box-shadow:0 3px 9px rgba(32,85,125,.06)
}
.mv2-article-image{height:98px;display:flex;align-items:center;justify-content:center;background:#eaf5fb;color:#0876d7}
.mv2-article-image img{width:100%;height:100%;object-fit:cover}
.mv2-article-image span svg{width:28px;height:28px}
.mv2-article-copy{padding:10px 11px 11px}
.mv2-article-copy time{color:#58728c;font-size:8px}
.mv2-article-copy h3{
    min-height:39px;margin:5px 0 8px;color:#082e56;
    font-size:11px;line-height:1.2
}
.mv2-category-pill{
    display:inline-flex;padding:4px 8px;border-radius:999px;
    background:#e6f4ff;color:#0874d2;font-size:8px;font-weight:700
}
.mv2-category-pill.is-orange{background:#fff1dc;color:#df7a18}

/* Why ------------------------------------------------------------------- */
.mv2-why{padding:16px 8px 0}
.mv2-why h2{margin:0 0 14px;color:#082a55;font-size:20px}
.mv2-why-list{display:grid;gap:12px}
.mv2-why-list article{display:grid;grid-template-columns:42px minmax(0,1fr);gap:10px;align-items:center}
.mv2-why-list article>span{
    width:39px;height:39px;display:flex;align-items:center;justify-content:center;
    border-radius:10px;background:#fff;color:#0876d8;
    box-shadow:0 5px 12px rgba(42,107,158,.10)
}
.mv2-why-list article>span svg{width:21px;height:21px}
.mv2-why-list strong{display:block;color:#082a55;font-size:10px}
.mv2-why-list p{margin:2px 0 0;color:#4f6982;font-size:8px;line-height:1.3}

/* Footer ---------------------------------------------------------------- */
.mv2-footer{
    padding:34px 0 18px;color:#b9d0e1;
    background:linear-gradient(90deg,#06365f,#042845 58%,#062d4e)
}
.mv2-footer-main{
    display:grid;grid-template-columns:215px 1fr 220px;gap:32px;align-items:start
}
.mv2-footer-brand img{
    width:170px;height:auto;padding:5px 8px;border-radius:7px;background:#fff
}
.mv2-footer-columns{display:grid;grid-template-columns:repeat(3,1fr);gap:25px}
.mv2-footer-columns strong{display:block;margin-bottom:8px;color:#fff;font-size:10px}
.mv2-footer-columns a{display:block;margin-top:5px;color:#b7cbd9;font-size:8px}
.mv2-socials{display:flex;gap:9px;margin-top:10px}
.mv2-socials a{
    width:26px;height:26px;display:flex;align-items:center;justify-content:center;
    color:#092e52;background:#77ccee;border-radius:7px
}
.mv2-socials svg{width:17px;height:17px}
.mv2-footer blockquote{
    margin:5px 0 0;padding-left:18px;border-left:1px solid #4cc7ff;
    color:#fff;font-size:12px;line-height:1.45;font-style:normal
}
.mv2-footer blockquote span{display:block;width:24px;height:2px;margin-top:12px;background:#f08a23}
.mv2-footer-bottom{
    display:flex;justify-content:space-between;gap:20px;
    margin-top:27px;padding-top:10px;color:#87a4b9;font-size:8px
}

/* Empty ----------------------------------------------------------------- */
.mv2-empty{
    padding:17px;border:1px dashed #ccdbe7;border-radius:9px;background:#fff;
    color:#657d91;font-size:9px
}
.mv2-empty strong{display:block;color:#082e56;margin-bottom:4px}

/* Reveal ---------------------------------------------------------------
   Visual fidelity is more important than entrance animation.
   Sections are visible immediately so screenshots/print/PDF never lose content.
   ------------------------------------------------------------------------- */
[data-mv2-reveal]{opacity:1;transform:none}
[data-mv2-reveal].is-visible{opacity:1;transform:none}


/* v2.2 layout stability -------------------------------------------------- */
.mv2-data-layout > *,
.mv2-opportunity-layout > *,
.mv2-insight-layout > *,
.mv2-jobs,
.mv2-job-list,
.mv2-job-card,
.mv2-job-copy,
.mv2-articles,
.mv2-article-list,
.mv2-article-card{
    min-width:0;
}

.mv2-job-card p{
    min-width:0;
    max-width:100%;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.mv2-opportunity-layout,
.mv2-insight-layout{
    overflow:hidden;
}

/* Mobile / exact phone composition -------------------------------------- */
@media(max-width:760px){
    :root{--mv2-header:69px}
    .mv2-container{width:min(100% - 24px,590px)}

    .mv2-header{height:var(--mv2-header);position:relative}
    .mv2-header-inner{
        width:calc(100% - 22px);grid-template-columns:minmax(0,1fr) auto;gap:8px
    }
    .mv2-logo img{height:35px}
    .mv2-nav{
        position:absolute;top:69px;left:0;right:0;display:none;
        padding:8px;border:1px solid #dfeaf3;border-radius:0 0 10px 10px;
        background:#fff;box-shadow:0 12px 25px rgba(20,68,104,.12)
    }
    .mv2-nav.is-open{display:grid}
    .mv2-nav a{min-height:38px;padding:0 10px;font-size:11px}
    .mv2-search{display:none}
    .mv2-link-login,.mv2-link-register{min-width:74px;height:35px;padding:0 10px;font-size:10px}
    .mv2-menu-button{display:flex}
    .mv2-header-actions{gap:7px}

    .mv2-hero{
        min-height:270px;
        background-position:center center;
        background-image:
            linear-gradient(90deg,rgba(0,43,81,.92) 0%,rgba(0,43,81,.72) 54%,rgba(0,43,81,.15) 100%),
            var(--mv2-hero-image)
    }
    .mv2-hero-content{
        min-height:270px;display:block;position:relative;padding-top:21px
    }
    .mv2-hero-copy{padding:0}
    .mv2-hero-copy h1{
        max-width:340px;font-size:29px;line-height:1.02;letter-spacing:-.7px
    }
    .mv2-hero-description-desktop{display:none}
    .mv2-hero-description-mobile{
        display:block!important;max-width:305px!important;
        margin-top:11px!important;font-size:12px!important;line-height:1.4!important
    }
    .mv2-hero-actions{margin-top:13px}
    .mv2-btn-orange{height:36px;padding:0 18px;font-size:10px}
    .mv2-btn-outline-light{display:none}
    .mv2-hero-quote{
        position:absolute;right:12px;top:28px;width:156px;
        margin:0;padding-left:13px
    }
    .mv2-hero-quote p{font-size:10px;line-height:1.42}
    .mv2-hero-quote>span{width:18px;margin-bottom:8px}

    .mv2-modules-section{
        margin-top:-7px;padding-bottom:10px;
        background:#f5fafe
    }
    .mv2-module-tray{
        grid-template-columns:repeat(4,1fr);
        gap:8px;padding:10px;
        overflow:visible;border-radius:13px;
        box-shadow:0 5px 15px rgba(33,86,128,.09)
    }
    .mv2-module-card{
        min-height:78px;padding:9px 4px 8px;border:0!important;
        border-radius:8px;background:#fff;
        box-shadow:0 3px 10px rgba(41,89,126,.06)
    }
    .mv2-module-card:nth-child(n+5){min-height:70px}
    .mv2-module-card:nth-child(5){grid-column:1/2}
    .mv2-module-card:nth-child(6){grid-column:2/4}
    .mv2-module-card:nth-child(7){grid-column:4/5}
    .mv2-module-icon{width:30px;height:30px;margin-bottom:3px}
    .mv2-module-icon svg{width:28px;height:28px}
    .mv2-module-card strong{font-size:10px}
    .mv2-module-card small{display:none}

    .mv2-data-layout{
        grid-template-columns:1fr;grid-template-areas:"groundwater" "coverage";
        gap:10px;padding:0 0 11px
    }
    .mv2-panel{min-height:0;border-radius:10px}

    .mv2-groundwater-panel{min-height:211px;padding:17px 18px}
    .mv2-groundwater-panel h2{font-size:20px}
    .mv2-groundwater-panel p{max-width:300px;margin-top:5px;font-size:9px}
    .mv2-coordinate-single{width:66%}
    .mv2-analysis-button{width:66%;height:35px;margin-top:8px}
    .mv2-example-link{font-size:8px}
    .mv2-groundwater-illustration{right:-4px;bottom:-2px;width:177px}
    .mv2-groundwater-status{width:66%}

    .mv2-coverage-panel{
        min-height:171px;padding:15px 13px 10px;
        display:grid;grid-template-columns:minmax(0,1fr) 245px;
        grid-template-areas:"copy map" "stats stats" "button button";
        column-gap:8px
    }
    .mv2-coverage-copy{grid-area:copy;align-self:center}
    .mv2-coverage-copy h2{font-size:14px}
    .mv2-coverage-copy p{font-size:8px;line-height:1.35}
    .mv2-coverage-map{grid-area:map;height:65px;background:transparent}
    .mv2-coverage-map img{width:100%;height:65px}
    .mv2-coverage-stats{grid-area:stats;margin-top:8px}
    .mv2-coverage-stats strong{font-size:20px}
    .mv2-coverage-stats span{font-size:7px}
    .mv2-map-button{
        grid-area:button;width:100%;height:33px;margin-top:10px;
        justify-content:flex-start;font-size:9px
    }
    .mv2-map-button>span{display:flex;margin-left:auto}

    .mv2-opportunity-layout{
        grid-template-columns:1fr;gap:10px;padding:0 0 10px
    }
    .mv2-jobs{padding:15px 13px 13px;border-radius:10px}
    .mv2-list-heading{margin-bottom:9px}
    .mv2-list-heading h2{font-size:16px}
    .mv2-list-heading p{display:none}
    .mv2-list-heading>a{font-size:8px}
    .mv2-job-list{grid-template-columns:1fr 1fr;gap:8px}
    .mv2-mobile-job-extra{display:none}
    .mv2-job-card{min-height:102px;padding:10px}
    .mv2-job-card h3{font-size:10px}
    .mv2-job-card p{font-size:8px}
    .mv2-job-meta{gap:7px;font-size:7px}
    .mv2-job-card small{margin-top:8px;font-size:7px}

    .mv2-engineer-network{
        min-height:151px;padding:15px 17px;border-radius:10px
    }
    .mv2-engineer-network h2{font-size:17px}
    .mv2-engineer-network p{font-size:8px;line-height:1.3}
    .mv2-engineer-cta{height:33px;margin-top:10px;font-size:9px}
    .mv2-engineer-social-proof{display:none}
    .mv2-engineer-image{width:39%}
    .mv2-engineer-network blockquote{
        right:92px;bottom:43px;font-size:9px
    }

    .mv2-insight-layout{
        grid-template-columns:1fr;gap:10px;padding:0 0 15px
    }
    .mv2-articles{padding:0 3px}
    .mv2-article-list{grid-template-columns:repeat(3,1fr);gap:7px}
    .mv2-article-image{height:67px}
    .mv2-article-copy{padding:7px}
    .mv2-article-copy time{font-size:6px}
    .mv2-article-copy h3{min-height:34px;margin:3px 0 6px;font-size:7.5px;line-height:1.15}
    .mv2-category-pill{padding:3px 6px;font-size:6px}

    .mv2-why{padding:0 4px}
    .mv2-why h2{font-size:16px;margin-bottom:8px}
    .mv2-why-list{
        display:grid;grid-template-columns:repeat(4,1fr);gap:7px
    }
    .mv2-why-list article{
        display:block;text-align:center;padding:5px 2px
    }
    .mv2-why-list article>span{
        width:34px;height:34px;margin:0 auto 4px
    }
    .mv2-why-list article>span svg{width:19px;height:19px}
    .mv2-why-list strong{font-size:7px;line-height:1.1}
    .mv2-why-list p{margin-top:2px;font-size:5.8px;line-height:1.2}

    .mv2-footer{padding:13px 0 10px}
    .mv2-footer-main{
        display:grid;grid-template-columns:160px 1fr;gap:12px;align-items:center
    }
    .mv2-footer-brand img{width:145px}
    .mv2-footer-columns{display:none}
    .mv2-footer blockquote{display:none}
    .mv2-footer-bottom{
        grid-column:2;grid-row:1;
        margin:0;padding:0;border:0;
        display:flex;flex-direction:column;justify-content:center;gap:4px;
        font-size:7px
    }
    .mv2-footer-bottom span:last-child{display:none}
}

@media(max-width:520px){
    .mv2-header-inner{width:calc(100% - 14px)}
    .mv2-logo img{height:30px}
    .mv2-link-login,.mv2-link-register{min-width:58px;padding:0 7px}
    .mv2-hero-copy h1{font-size:24px;max-width:270px}
    .mv2-hero-description-mobile{max-width:235px!important;font-size:10px!important}
    .mv2-hero-quote{right:7px;width:128px}
    .mv2-hero-quote p{font-size:8px}
    .mv2-groundwater-illustration{width:145px}
    .mv2-coordinate-single,.mv2-analysis-button,.mv2-groundwater-status{width:72%}
    .mv2-coverage-panel{grid-template-columns:minmax(0,1fr) 150px}
    .mv2-coverage-stats strong{font-size:17px}
    .mv2-engineer-network blockquote{display:none}
    .mv2-engineer-image{width:42%}
}

@media(prefers-reduced-motion:reduce){
    html{scroll-behavior:auto}
    *,*::before,*::after{transition:none!important;animation:none!important}
    [data-mv2-reveal]{opacity:1;transform:none}
}

/* Official hidrologi.net logo ------------------------------------------- */
.mv2-logo img{
    height:37px;
    width:auto;
    max-width:190px;
    object-fit:contain;
}
.mv2-footer-brand img{
    width:170px;
    height:auto;
    max-height:none;
    object-fit:contain;
    padding:0;
    background:#fff;
}

/* Print / Save-to-PDF --------------------------------------------------- */
@media print{
    *{
        -webkit-print-color-adjust:exact!important;
        print-color-adjust:exact!important;
    }
    [data-mv2-reveal]{
        opacity:1!important;
        transform:none!important;
    }
    .mv2-hero,
    .mv2-module-tray,
    .mv2-data-layout,
    .mv2-opportunity-layout,
    .mv2-insight-layout,
    .mv2-footer{
        break-inside:avoid;
        page-break-inside:avoid;
    }
    .mv2-opportunity-layout,
    .mv2-insight-layout{
        overflow:visible;
    }
}


/* ==========================================================================
   Modern v2.3 — Footer refinement
   ========================================================================== */
.mv2-footer{
    padding:30px 0 15px;
    background:
        radial-gradient(circle at 100% 0%, rgba(24,116,176,.12), transparent 30%),
        linear-gradient(90deg,#07385f 0%,#052c4b 58%,#062e4f 100%);
    color:#b9cfdf;
}

.mv2-footer-main{
    display:grid;
    grid-template-columns:210px minmax(0,1fr) 220px;
    align-items:start;
    gap:34px;
}

.mv2-footer-brand{
    display:flex;
    align-items:flex-start;
    min-width:0;
}

.mv2-footer-brand a{
    display:inline-flex;
    align-items:center;
}

.mv2-footer-brand img{
    display:block;
    width:176px;
    height:auto;
    max-height:none;
    padding:0;
    background:transparent;
    border-radius:0;
    object-fit:contain;
}

.mv2-footer-columns{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:27px;
}

.mv2-footer-columns strong{
    display:block;
    margin-bottom:9px;
    color:#fff;
    font-size:10px;
    font-weight:800;
}

.mv2-footer-columns a{
    display:block;
    margin-top:5px;
    color:#b3c8d7;
    font-size:8px;
    line-height:1.25;
}

.mv2-footer-columns a:hover{
    color:#fff;
}

.mv2-socials{
    display:flex;
    gap:8px;
    margin-top:9px;
}

.mv2-socials a,
.mv2-footer-mobile-socials a{
    width:27px;
    height:27px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:7px;
    background:#79ccea;
    color:#0b3b60;
}

.mv2-socials svg,
.mv2-footer-mobile-socials svg{
    width:16px;
    height:16px;
}

.mv2-footer-quote{
    margin:1px 0 0;
    padding:0 0 0 18px;
    border-left:1px solid #47c5ff;
    color:#fff;
    font-size:12px;
    line-height:1.45;
    font-style:normal;
}

.mv2-footer-quote span{
    display:block;
    width:24px;
    height:2px;
    margin-top:12px;
    background:var(--mv2-orange);
}

.mv2-footer-bottom{
    margin-top:22px;
    padding-top:12px;
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    gap:18px;
    border-top:1px solid rgba(255,255,255,.055);
    color:#809db1;
    font-size:8px;
}

.mv2-footer-signature{
    text-align:right;
}

.mv2-footer-mobile-socials{
    display:none;
}

/* Phone footer: compact bar like the initial mockup */
@media(max-width:760px){
    .mv2-footer{
        padding:11px 0 9px;
    }

    .mv2-footer-main{
        display:block;
    }

    .mv2-footer-brand{
        display:none;
    }

    .mv2-footer-columns,
    .mv2-footer-quote{
        display:none;
    }

    .mv2-footer-bottom{
        margin:0;
        padding:0;
        grid-template-columns:130px minmax(0,1fr) auto;
        border-top:0;
        gap:10px;
        min-height:48px;
    }

    .mv2-footer-bottom::before{
        content:"";
        display:block;
        width:124px;
        height:44px;
        background:url('/templates/modern-v2/assets/img/logo-hidrologi-footer.png') left center/contain no-repeat;
    }

    .mv2-footer-bottom > span:first-of-type{
        font-size:7px;
        line-height:1.25;
        color:#9bb2c3;
    }

    .mv2-footer-mobile-socials{
        display:flex;
        align-items:center;
        gap:7px;
    }

    .mv2-footer-mobile-socials a{
        width:25px;
        height:25px;
        border-radius:50%;
        background:transparent;
        color:#b7d3e4;
    }

    .mv2-footer-mobile-socials svg{
        width:17px;
        height:17px;
    }

    .mv2-footer-top-link{
        border:1px solid rgba(183,211,228,.34)!important;
        font-size:15px;
        line-height:1;
    }

    .mv2-footer-signature{
        display:none;
    }
}

@media(max-width:520px){
    .mv2-footer-bottom{
        grid-template-columns:108px minmax(0,1fr) auto;
        gap:6px;
    }

    .mv2-footer-bottom::before{
        width:103px;
        height:40px;
    }

    .mv2-footer-mobile-socials{
        gap:3px;
    }

    .mv2-footer-mobile-socials a{
        width:22px;
        height:22px;
    }

    .mv2-footer-mobile-socials svg{
        width:15px;
        height:15px;
    }

    .mv2-footer-bottom > span:first-of-type{
        font-size:6.4px;
    }
}
