:root {
    --primary: #007a59;
    --primary-dark: #006747;
    --primary-deep: #004b36;
    --accent: #ffb72b;
    --charcoal: #111a18;
    --charcoal-soft: #1a2623;
    --background: #ffffff;
    --surface: #f3f7f5;
    --surface-strong: #e7efeb;
    --text: #17211f;
    --text-muted: #5d6b67;
    --border: #dbe5e1;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(16, 44, 36, .12);
    --radius-sm: .65rem;
    --radius: 1.15rem;
    --radius-lg: 1.75rem;
    --container: 1180px;
    --font: "Poppins", Arial, Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { width: 100%; max-width: 100%; overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 6rem; }
body { width: 100%; max-width: 100%; margin: 0; overflow-x: clip; background: var(--background); color: var(--text); font-family: var(--font); font-size: 1rem; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img, iframe, svg { max-width: 100%; }
img { display: block; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.18; letter-spacing: -.035em; }
h1 { max-width: 820px; margin-bottom: 1.3rem; font-size: clamp(2.35rem, 6vw, 5.2rem); font-weight: 800; }
h2 { margin-bottom: 1.25rem; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700; }
h3 { font-size: 1.15rem; }
p { color: var(--text-muted); }
.container { width: min(calc(100% - 2.5rem), var(--container)); max-width: 100%; margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-soft { background: var(--surface); }
.section-dark { color: var(--white); background: var(--charcoal); }
.section-kicker, .eyebrow { margin-bottom: .9rem; color: var(--primary); font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.section-kicker.light, .eyebrow { color: #70e0bc; }
.eyebrow span { color: var(--accent); }
.skip-link { position: fixed; z-index: 9999; top: .75rem; left: .75rem; padding: .8rem 1rem; transform: translateY(-180%); border-radius: .4rem; color: white; background: var(--charcoal); font-weight: 600; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.button { display: inline-flex; min-height: 3.25rem; align-items: center; justify-content: center; gap: .65rem; padding: .8rem 1.25rem; border: 1px solid var(--primary); border-radius: .5rem; color: white; background: var(--primary); text-decoration: none; font-size: .9rem; font-weight: 600; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); border-color: var(--primary-dark); background: var(--primary-dark); }
.button-small { min-height: 2.65rem; padding: .55rem .9rem; font-size: .77rem; }
.button-ghost { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.06); }
.button-ghost:hover { border-color: white; background: rgba(255,255,255,.14); }
.button-light { border-color: white; color: var(--primary-deep); background: white; }
.button-light:hover { border-color: #e6f1ed; background: #e6f1ed; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.text-link { color: var(--primary-dark); font-weight: 600; text-decoration-thickness: 1px; text-underline-offset: .3rem; }

.site-header { position: sticky; z-index: 100; top: 0; width: 100%; max-width: 100vw; border-bottom: 1px solid rgba(219,229,225,.8); background: rgba(255,255,255,.94); backdrop-filter: blur(14px); }
.header-inner { display: flex; min-width: 0; min-height: 74px; align-items: center; justify-content: space-between; }
.brand { position: relative; z-index: 102; display: block; width: min(60vw, 270px); }
.brand img { width: 100%; }
.menu-toggle { position: relative; z-index: 102; display: grid; width: 46px; height: 46px; place-content: center; gap: 5px; border: 1px solid var(--border); border-radius: .5rem; background: white; cursor: pointer; }
.menu-toggle span { width: 22px; height: 2px; background: var(--charcoal); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.primary-nav { position: fixed; z-index: 101; inset: 74px 0 0; display: flex; width: 100%; max-width: 100vw; flex-direction: column; gap: .2rem; padding: 1.5rem 1.25rem calc(3rem + env(safe-area-inset-bottom)); transform: translate3d(100%, 0, 0); visibility: hidden; pointer-events: none; background: white; transition: transform .25s ease, visibility 0s linear .25s; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; }
.primary-nav.is-open { transform: translate3d(0, 0, 0); visibility: visible; pointer-events: auto; transition-delay: 0s; }
.primary-nav > a:not(.button) { padding: .9rem 0; border-bottom: 1px solid var(--border); color: var(--charcoal); text-decoration: none; font-size: 1rem; font-weight: 500; }
.primary-nav .button { margin-top: 1rem; }

.hero { position: relative; min-height: min(790px, calc(100svh - 74px)); overflow: hidden; isolation: isolate; }
.hero-image, .hero-overlay { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-image { object-position: 61% center; }
.hero-overlay { z-index: -1; background: linear-gradient(90deg, rgba(8,20,17,.97) 0%, rgba(8,20,17,.87) 43%, rgba(8,20,17,.3) 78%, rgba(8,20,17,.18) 100%), linear-gradient(0deg, rgba(7,17,14,.45), transparent 60%); }
.hero-grid { display: grid; min-height: min(790px, calc(100svh - 74px)); align-items: center; padding-block: 5.5rem; }
.hero-content { max-width: 780px; }
.hero-lead { max-width: 650px; margin-bottom: 2rem; color: #d5e3de; font-size: clamp(1rem, 2.1vw, 1.25rem); }
.hero-note { margin: 1.15rem 0 0; color: #a8bbb5; font-size: .78rem; }
.hero-spec { display: none; }

.positioning { position: relative; z-index: 5; margin-top: -1px; color: white; background: var(--primary-dark); }
.positioning-grid { display: grid; }
.positioning article { padding: 1.65rem 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.positioning article:last-child { border-bottom: 0; }
.positioning strong { display: block; margin-bottom: .2rem; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.positioning p { margin: 0; color: #bfe2d5; font-size: .85rem; }

.intro-grid { display: grid; gap: 2rem; }
.intro h2 { max-width: 680px; }
.intro-copy { max-width: 660px; padding-top: .4rem; }
.intro-copy p:first-child { color: var(--text); font-size: 1.1rem; }

.section-heading { display: grid; gap: 1rem; margin-bottom: 2.7rem; }
.section-heading h2 { max-width: 760px; margin-bottom: 0; }
.section-heading > p { max-width: 520px; margin: 0; }
.services-grid { display: grid; gap: 1rem; }
.service-card { position: relative; display: flex; min-height: 330px; flex-direction: column; padding: 1.7rem; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: white; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: #a7c8ba; box-shadow: 0 18px 44px rgba(18,60,48,.1); }
.service-icon { display: grid; width: 54px; height: 54px; margin-bottom: 2.5rem; place-items: center; border-radius: .8rem; color: var(--primary-dark); background: #e2f4ed; }
.service-icon svg { width: 30px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.card-number { position: absolute; top: 1.7rem; right: 1.7rem; color: #9aaba5; font-size: .8rem; font-weight: 600; }
.service-card h3 { margin-bottom: .75rem; font-size: 1.2rem; }
.service-card p { margin-bottom: 1.2rem; font-size: .9rem; }
.service-card > a { margin-top: auto; color: var(--primary-dark); font-size: .85rem; font-weight: 600; text-decoration: none; }

.advantages-grid { display: grid; border-top: 1px solid var(--border); }
.advantages-grid article { padding: 1.7rem 0; border-bottom: 1px solid var(--border); }
.advantages-grid span { display: inline-block; margin-bottom: 1rem; color: var(--primary); font-size: .8rem; font-weight: 700; }
.advantages-grid h3 { margin-bottom: .55rem; }
.advantages-grid p { margin: 0; font-size: .9rem; }

.structure-feature { display: grid; }
.structure-media { position: relative; min-height: 380px; }
.structure-media img { width: 100%; height: 100%; object-fit: cover; }
.image-label { position: absolute; right: 1rem; bottom: 1rem; padding: .45rem .7rem; border-radius: .3rem; color: white; background: rgba(10,20,17,.78); font-size: .7rem; }
.structure-copy { padding: 4rem 1.25rem; }
.structure-copy p { max-width: 620px; color: #b8c9c3; }
.check-list { margin: 2rem 0 2.4rem; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.14); color: #eaf3f0; }
.check-list span { color: #70e0bc; font-size: .75rem; font-weight: 600; }

.portfolio-grid { display: grid; gap: 1rem; }
.portfolio-item { position: relative; min-height: 330px; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--charcoal); }
.portfolio-item img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; transition: transform .5s ease; }
.portfolio-item:hover img { transform: scale(1.035); }
.portfolio-item::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(8,20,17,.88), transparent 55%); pointer-events: none; }
.portfolio-item figcaption { position: absolute; z-index: 2; right: 1.35rem; bottom: 1.25rem; left: 1.35rem; color: white; }
.portfolio-item figcaption span { display: block; margin-bottom: .35rem; color: #83e0c0; font-size: .68rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.portfolio-item figcaption strong { font-size: 1.15rem; }

.comparison-grid { display: grid; gap: 1.25rem; }
.comparison-card { margin: 0; padding: .75rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.comparison-card h3 { margin: 1rem .35rem .45rem; }
.comparison-slider { position: relative; aspect-ratio: 1.598 / 1; overflow: hidden; border-radius: calc(var(--radius) - .35rem); background: var(--charcoal); isolation: isolate; }
.comparison-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; user-select: none; pointer-events: none; }
.comparison-after { z-index: 2; clip-path: inset(0 calc(100% - var(--position)) 0 0); }
.comparison-label { position: absolute; z-index: 4; top: .8rem; padding: .35rem .6rem; border-radius: 999px; color: white; background: rgba(9,21,18,.78); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.comparison-label-before { left: .8rem; }
.comparison-label-after { right: .8rem; }
.comparison-handle { position: absolute; z-index: 5; top: 0; bottom: 0; left: var(--position); width: 2px; transform: translateX(-50%); background: white; pointer-events: none; }
.comparison-handle span { position: absolute; top: 50%; left: 50%; display: grid; width: 42px; height: 42px; place-items: center; transform: translate(-50%, -50%); border: 2px solid white; border-radius: 50%; color: var(--primary-deep); background: white; box-shadow: 0 5px 24px rgba(0,0,0,.28); font-size: 1rem; font-weight: 700; }
.comparison-range { position: absolute; z-index: 6; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.comparison-slider:focus-within .comparison-handle span { box-shadow: 0 0 0 4px var(--accent), 0 5px 24px rgba(0,0,0,.28); }

.process-list { display: grid; margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 52px 1fr; gap: 1rem; padding: 1.6rem 0; border-top: 1px solid var(--border); }
.process-list li:last-child { border-bottom: 1px solid var(--border); }
.process-list > li > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: white; background: var(--primary); font-size: .7rem; font-weight: 700; }
.process-list h3 { margin-bottom: .4rem; }
.process-list p { margin: 0; font-size: .88rem; }

.project-cta { padding: clamp(4rem, 8vw, 7rem) 0; color: white; background: var(--primary-deep); }
.project-cta-inner { display: grid; gap: 2rem; }
.project-cta h2 { max-width: 670px; margin-bottom: 0; }
.project-cta p { max-width: 560px; color: #c7e0d7; }

.faq-grid { display: grid; gap: 3rem; }
.faq-intro > p:not(.section-kicker) { max-width: 440px; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item h3 { margin: 0; }
.faq-item button { display: flex; width: 100%; min-height: 74px; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1rem 0; border: 0; color: var(--text); background: transparent; text-align: left; cursor: pointer; }
.faq-item button span:first-child { font-weight: 600; }
.faq-icon { display: grid; width: 30px; height: 30px; flex: 0 0 30px; place-items: center; border-radius: 50%; color: var(--primary-dark); background: var(--surface-strong); transition: transform .2s ease, color .2s ease, background .2s ease; }
.faq-item button[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: white; background: var(--primary); }
.faq-answer { padding: 0 2.5rem 1.4rem 0; }
.faq-answer p { margin: 0; }

.article-container { width: min(calc(100% - 2.5rem), 900px); margin-inline: auto; }
.article-header { padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.article-header h2 { max-width: 850px; }
.article-lead { color: var(--text); font-size: 1.08rem; }
.article-body { padding-top: 2rem; }
.article-body h3 { margin: 2.6rem 0 1rem; font-size: clamp(1.3rem, 3vw, 1.65rem); }
.article-body p, .article-body li { font-size: .98rem; }
.article-body a { color: var(--primary-dark); font-weight: 600; text-underline-offset: .2rem; }
.article-body ul { padding-left: 1.2rem; }
.article-body li { margin-bottom: .55rem; color: var(--text-muted); }
.article-highlight { margin: 2.5rem 0; padding: 1.5rem; border-left: 4px solid var(--primary); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: white; }
.article-highlight strong { color: var(--primary-dark); }
.article-highlight p { margin: .5rem 0 0; color: var(--text); }

.location-grid { display: grid; gap: 2.5rem; align-items: center; }
.location-copy > p:not(.section-kicker) { max-width: 560px; }
.location-address { padding: 1.25rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); color: var(--text); }
.location-address strong { color: var(--primary-dark); }
.social-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; margin-top: 1.5rem; }
.social-grid a { display: flex; min-height: 54px; align-items: center; justify-content: space-between; gap: .75rem; padding: .8rem 1rem; border: 1px solid var(--border); border-radius: .55rem; color: var(--text); background: white; text-decoration: none; font-size: .82rem; font-weight: 600; transition: border-color .2s ease, color .2s ease, transform .2s ease; }
.social-grid a:hover { transform: translateY(-2px); border-color: var(--primary); color: var(--primary-dark); }
.map-frame { aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.map-frame iframe { display: block; width: 100%; height: 100%; }

.blog-grid { display: grid; gap: 1.25rem; }
.blog-card { min-width: 0; }
.blog-card a { position: relative; z-index: 1; display: block; color: var(--text); text-decoration: none; cursor: pointer; }
.branded-image, .article-image-frame { position: relative; display: block; overflow: hidden; border-radius: var(--radius); }
.image-brand { position: absolute; z-index: 2; right: .75rem; bottom: .75rem; display: flex; width: clamp(115px, 32%, 190px); min-height: 34px; align-items: center; padding: .42rem .58rem; border: 1px solid rgba(255,255,255,.78); border-radius: .55rem; background: rgba(255,255,255,.93); box-shadow: 0 8px 24px rgba(0,0,0,.18); backdrop-filter: blur(6px); }
.image-brand img { width: 100%; height: auto; aspect-ratio: auto; border-radius: 0; object-fit: contain; background: transparent; box-shadow: none; transform: none; }
.blog-card img { width: 100%; aspect-ratio: 1.598 / 1; object-fit: cover; border-radius: var(--radius); background: var(--surface-strong); transition: transform .35s ease, box-shadow .35s ease; }
.blog-card h3 { margin: 1rem .15rem 0; font-size: clamp(1.05rem, 2.2vw, 1.28rem); line-height: 1.4; transition: color .2s ease; }
.blog-card a:hover > .branded-image > img { transform: scale(1.015); box-shadow: 0 18px 42px rgba(18,60,48,.14); }
.blog-card a:hover h3 { color: var(--primary-dark); }

.article-page-main { background: var(--background); }
.article-page-hero { padding: clamp(3.5rem, 8vw, 7rem) 0 3rem; color: white; background: linear-gradient(125deg, #0c1714, var(--primary-deep)); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; margin-bottom: 1.7rem; color: #9fc3b6; font-size: .76rem; }
.breadcrumbs a { color: #c9e2d9; text-decoration: none; }
.article-page-hero h1 { max-width: 980px; margin-bottom: 1.3rem; font-size: clamp(2.25rem, 5.3vw, 4.5rem); }
.article-page-hero .article-lead { max-width: 760px; margin: 0; color: #c8d9d3; }
.article-page-layout { display: grid; gap: 3rem; }
.article-page-content { min-width: 0; }
.article-page-content > p:first-child { color: var(--text); font-size: 1.08rem; }
.article-page-content h2 { margin: 3rem 0 1rem; font-size: clamp(1.55rem, 3.2vw, 2.15rem); }
.article-page-content h3 { margin: 2rem 0 .8rem; font-size: 1.2rem; }
.article-page-content p, .article-page-content li { font-size: 1rem; }
.article-page-content ul, .article-page-content ol { padding-left: 1.3rem; color: var(--text-muted); }
.article-page-content li { margin-bottom: .65rem; }
.article-page-content a { color: var(--primary-dark); font-weight: 600; text-underline-offset: .2rem; }
.article-figure { margin: 2.5rem 0; }
.article-figure .article-image-frame > img { width: 100%; aspect-ratio: 1.5 / 1; object-fit: cover; border-radius: var(--radius); }
.article-figure figcaption { margin-top: .7rem; color: var(--text-muted); font-size: .76rem; }
.article-answer { margin: 2.2rem 0; padding: 1.5rem; border-left: 4px solid var(--primary); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: var(--surface); }
.article-answer strong { display: block; margin-bottom: .5rem; color: var(--primary-dark); }
.article-answer p { margin: 0; color: var(--text); }
.article-table-wrap { margin: 2rem 0; overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.article-table { width: 100%; min-width: 620px; border-collapse: collapse; background: white; }
.article-table th, .article-table td { padding: .9rem 1rem; border-bottom: 1px solid var(--border); text-align: left; font-size: .86rem; vertical-align: top; }
.article-table th { color: var(--primary-deep); background: var(--surface); }
.article-table tr:last-child td { border-bottom: 0; }
.article-aside { align-self: start; padding: 1.4rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.article-aside h2 { margin-bottom: .8rem; font-size: 1.15rem; }
.article-aside p { font-size: .85rem; }
.article-aside .button { width: 100%; }
.related-articles { padding: clamp(3.5rem, 7vw, 6rem) 0; background: var(--surface); }
.related-grid { display: grid; gap: 1rem; }
.related-link { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem; border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text); background: white; text-decoration: none; font-weight: 600; }
.related-link:hover { border-color: var(--primary); color: var(--primary-dark); }

.final-cta { padding: clamp(5rem, 10vw, 9rem) 0; color: white; background: linear-gradient(120deg, var(--primary-dark), #00402e); text-align: center; }
.final-cta-inner { max-width: 850px; }
.final-cta .eyebrow { margin-bottom: 1.3rem; }
.final-cta p:not(.eyebrow) { max-width: 700px; margin: 0 auto 2rem; color: #c8e3da; }

.site-footer { padding-top: 4.5rem; color: #d3dfdb; background: #0c1513; }
.footer-grid { display: grid; gap: 2.5rem; }
.footer-brand img { width: min(100%, 320px); filter: brightness(1.25); }
.footer-brand p { max-width: 390px; color: #9fb2ac; }
.footer-brand .footer-tagline { margin: 1.25rem 0 .55rem; color: #72d8b7; font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid h2 { margin-bottom: 1rem; color: white; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid li { margin-bottom: .55rem; }
.footer-grid a { color: #b8c7c2; font-size: .88rem; text-decoration: none; }
.footer-grid a:hover { color: white; }
.footer-grid p { color: #9fb2ac; font-size: .88rem; }
.footer-contact { display: inline-block; padding-bottom: .25rem; border-bottom: 1px solid #578375; color: white !important; font-weight: 600; }
.footer-socials { display: flex; flex-wrap: wrap; gap: .7rem 1.2rem; align-items: center; margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1); }
.footer-socials span { color: #72d8b7; font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-socials a { color: #b8c7c2; font-size: .78rem; text-decoration: none; }
.footer-socials a:hover { color: white; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin-top: 3.5rem; padding-block: 1.3rem; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p, .footer-bottom a { margin: 0; color: #7f918b; font-size: .75rem; text-decoration: none; }

.floating-wa { position: fixed; z-index: 90; right: max(1rem, env(safe-area-inset-right)); bottom: max(1rem, env(safe-area-inset-bottom)); display: flex; width: 54px; max-width: calc(100vw - 2rem); height: 54px; align-items: center; justify-content: center; border-radius: 50%; color: white; background: #1ca766; box-shadow: 0 14px 35px rgba(0,0,0,.24); text-decoration: none; transition: transform .2s ease; }
.floating-wa:hover { transform: translateY(-3px); }
.floating-wa svg { width: 28px; fill: currentColor; }
.floating-wa span { display: none; }
.noscript { position: fixed; z-index: 999; right: 1rem; bottom: 1rem; left: 1rem; padding: .8rem; color: white; background: #8b2d22; text-align: center; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 620px) {
    .services-grid, .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .comparison-grid, .blog-grid, .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .comparison-card-featured { grid-column: 1 / -1; }
    .advantages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .advantages-grid article:nth-child(odd) { padding-right: 1.5rem; border-right: 1px solid var(--border); }
    .advantages-grid article:nth-child(even) { padding-left: 1.5rem; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .floating-wa { width: auto; min-width: 54px; padding: 0 1rem; border-radius: 999px; }
    .floating-wa span { display: block; margin-left: .55rem; font-size: .75rem; font-weight: 600; }
}

@media (min-width: 820px) {
    .container { width: min(calc(100% - 4rem), var(--container)); }
    .intro-grid { grid-template-columns: 1.1fr .9fr; gap: 5rem; }
    .section-heading { grid-template-columns: minmax(0, 1.2fr) minmax(260px, .55fr); align-items: end; justify-content: space-between; }
    .section-heading.compact { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .service-card-wide { grid-column: span 2; min-height: 290px; }
    .structure-feature { grid-template-columns: 1fr 1fr; }
    .structure-copy { display: flex; min-height: 690px; flex-direction: column; justify-content: center; padding: 5rem clamp(3rem, 6vw, 7rem); }
    .portfolio-grid { grid-template-columns: repeat(12, 1fr); grid-auto-rows: 260px; }
    .portfolio-item { min-height: 0; grid-column: span 4; }
    .portfolio-item img { min-height: 0; }
    .portfolio-featured { grid-column: span 8; grid-row: span 2; }
    .portfolio-item:nth-child(4), .portfolio-item:nth-child(5), .portfolio-item:nth-child(6) { grid-column: span 4; }
    .blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .process-list { grid-template-columns: repeat(3, 1fr); }
    .process-list li { min-height: 205px; grid-template-columns: 1fr; align-content: start; padding: 1.5rem; border: 1px solid var(--border); border-right: 0; }
    .process-list li:nth-child(3), .process-list li:nth-child(6) { border-right: 1px solid var(--border); }
    .process-list li:nth-child(n+4) { border-top: 0; }
    .project-cta-inner { grid-template-columns: 1.1fr .9fr; gap: 5rem; align-items: end; }
    .faq-grid { grid-template-columns: .72fr 1.28fr; gap: 5rem; align-items: start; }
    .faq-intro { position: sticky; top: 115px; }
    .location-grid { grid-template-columns: .82fr 1.18fr; gap: 4rem; }
    .article-page-layout { grid-template-columns: minmax(0, 1fr) 290px; gap: 4.5rem; }
    .article-aside { position: sticky; top: 115px; }
    .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.25fr; }
    .footer-brand { grid-column: auto; }
}

@media (min-width: 1080px) {
    .header-inner { min-height: 84px; }
    .brand { width: 245px; }
    .menu-toggle { display: none; }
    .primary-nav { position: static; display: flex; width: auto; max-width: none; flex-direction: row; align-items: center; gap: 1.05rem; padding: 0; transform: none; visibility: visible; pointer-events: auto; background: transparent; transition: none; overflow: visible; }
    .primary-nav > a:not(.button) { padding: .5rem 0; border: 0; font-size: .72rem; }
    .primary-nav > a:not(.button):hover { color: var(--primary); }
    .primary-nav .button { margin-top: 0; }
    .hero { min-height: 760px; }
    .hero-grid { grid-template-columns: 1fr 310px; gap: 4rem; min-height: 760px; }
    .hero-spec { display: grid; grid-template-columns: 34px 1fr; gap: 1rem .8rem; align-items: start; padding: 1.5rem; border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius); background: rgba(10,25,21,.55); backdrop-filter: blur(12px); }
    .hero-spec span { color: #6bdab5; font-size: .7rem; font-weight: 600; }
    .hero-spec p { margin: 0; color: #dce9e5; font-size: .78rem; }
    .positioning-grid { grid-template-columns: repeat(3, 1fr); }
    .positioning article { padding: 1.6rem 2rem; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 0; }
    .positioning article:first-child { padding-left: 0; }
    .positioning article:last-child { border-right: 0; }
    .services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .service-card-wide { grid-column: span 2; }
    .comparison-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .comparison-card-featured { grid-column: auto; }
    .advantages-grid { grid-template-columns: repeat(3, 1fr); }
    .advantages-grid article { padding: 2rem; border-right: 1px solid var(--border); }
    .advantages-grid article:nth-child(odd), .advantages-grid article:nth-child(even) { padding: 2rem; }
    .advantages-grid article:nth-child(1), .advantages-grid article:nth-child(4) { padding-left: 0; }
    .advantages-grid article:nth-child(3), .advantages-grid article:nth-child(6) { padding-right: 0; border-right: 0; }
    .process-list { grid-template-columns: repeat(6, 1fr); }
    .process-list li { min-height: 255px; border-top: 1px solid var(--border) !important; border-right: 0 !important; }
    .process-list li:last-child { border-right: 1px solid var(--border) !important; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

@media print {
    .site-header, .floating-wa, .button, .menu-toggle { display: none !important; }
    .hero { min-height: auto; }
    .hero-grid { min-height: auto; }
    .section { padding: 2rem 0; }
}

.error-page { min-height: 100svh; color: white; background: var(--charcoal); }
.error-main { display: grid; min-height: 100svh; place-items: center; padding: 2rem 1.25rem; background: radial-gradient(circle at 80% 15%, rgba(0,143,104,.35), transparent 35%), linear-gradient(135deg, #101b18, #07100e); }
.error-panel { width: min(100%, 760px); text-align: center; }
.error-logo { display: block; width: min(100%, 340px); margin: 0 auto 3rem; }
.error-code { margin-bottom: .5rem; color: #73e0bc; font-size: .85rem; font-weight: 700; letter-spacing: .3em; }
.error-panel h1 { font-size: clamp(2.3rem, 7vw, 4.8rem); }
.error-panel > p:not(.error-code) { max-width: 620px; margin: 0 auto 2rem; color: #b8c9c3; }
.error-actions { justify-content: center; }

/* =========================================================
   Article system refresh - 19 Sep 2026
   ========================================================= */

/* Fix: only style the main thumbnail, never the nested brand/logo image. */
.blog-card .branded-image > img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 0;
    background: var(--surface-strong);
    transition: transform .35s ease;
}

.blog-card .image-brand img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.blog-card-rich {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 34px rgba(16, 44, 36, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.blog-card-rich:hover {
    transform: translateY(-5px);
    border-color: #abcbbf;
    box-shadow: 0 22px 48px rgba(16, 44, 36, .12);
}

.blog-card-rich > a {
    height: 100%;
}

.blog-card-rich .branded-image {
    border-radius: 0;
}

.blog-card-rich:hover .branded-image > img {
    transform: scale(1.025);
}

.blog-card-body {
    display: flex;
    min-height: 235px;
    flex-direction: column;
    padding: 1.25rem 1.3rem 1.4rem;
}

.blog-card-body h2,
.blog-card-body h3 {
    margin: .55rem 0 .7rem;
    font-size: clamp(1.08rem, 2vw, 1.28rem);
    line-height: 1.38;
    letter-spacing: -.025em;
}

.blog-card-body p {
    display: -webkit-box;
    margin: 0 0 1.15rem;
    overflow: hidden;
    color: var(--text-muted);
    font-size: .86rem;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blog-meta {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    min-height: 26px;
    padding: .25rem .6rem;
    border: 1px solid #cfe5db;
    border-radius: 999px;
    color: var(--primary-dark);
    background: #edf8f3;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.blog-read-more {
    margin-top: auto;
    color: var(--primary-dark);
    font-size: .82rem;
    font-weight: 700;
}

.blog-all-link {
    align-self: start;
    justify-self: start;
}

/* Article archive */
.article-archive-hero {
    padding: clamp(4rem, 9vw, 7rem) 0 clamp(3.5rem, 7vw, 5.5rem);
    color: white;
    background:
        radial-gradient(circle at 86% 22%, rgba(64, 202, 155, .2), transparent 28%),
        linear-gradient(135deg, #0d1916 0%, #063f2f 100%);
}

.article-archive-hero-inner {
    max-width: 900px;
}

.article-archive-hero h1 {
    max-width: 850px;
    margin-bottom: 1rem;
    font-size: clamp(2.45rem, 6vw, 4.9rem);
}

.article-archive-hero p:not(.section-kicker) {
    max-width: 760px;
    margin-bottom: 0;
    color: #c9ded6;
    font-size: clamp(1rem, 2vw, 1.15rem);
}

.breadcrumbs-dark {
    margin-bottom: 1.5rem;
}

.article-archive-section {
    background: #fbfdfc;
}

.article-archive-toolbar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.article-archive-toolbar h2 {
    max-width: 720px;
    margin-bottom: 0;
    font-size: clamp(1.9rem, 4vw, 3rem);
}

.blog-grid-archive {
    align-items: stretch;
}

.article-guidance {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.article-guidance-grid {
    display: grid;
    gap: 2rem;
}

.article-guidance-grid h2 {
    max-width: 760px;
    margin-bottom: 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.article-guidance-grid p {
    max-width: 620px;
}

/* Single article */
.article-page-hero-rich {
    padding: clamp(3.2rem, 7vw, 6rem) 0 clamp(3.5rem, 6vw, 5rem);
    background:
        radial-gradient(circle at 86% 18%, rgba(66, 207, 159, .17), transparent 30%),
        linear-gradient(135deg, #0c1714 0%, #004b36 100%);
}

.article-hero-grid {
    display: grid;
    gap: 2.4rem;
    align-items: center;
}

.article-hero-copy {
    min-width: 0;
}

.article-page-hero-rich h1 {
    max-width: 900px;
    margin-bottom: 1.15rem;
    font-size: clamp(2.15rem, 5.5vw, 4.3rem);
    text-wrap: balance;
}

.article-page-hero-rich .article-lead {
    max-width: 780px;
    margin-bottom: 1.35rem;
    color: #c7dbd4;
    font-size: clamp(.98rem, 2vw, 1.12rem);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem .8rem;
    align-items: center;
    color: #b8d0c8;
    font-size: .76rem;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: .35rem .7rem;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .055);
}

.article-featured {
    margin: 0;
}

.article-featured img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .24);
}

.article-featured figcaption {
    margin-top: .7rem;
    color: #9ab7ad;
    font-size: .7rem;
}

.article-reading-section {
    padding: clamp(3.4rem, 7vw, 6.5rem) 0;
    background: #fff;
}

.article-page-layout-v2 {
    align-items: start;
}

.article-prose {
    min-width: 0;
}

.article-intro-tools {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem 1.2rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.article-content-label,
.article-aside-kicker {
    margin: 0;
    color: var(--primary-dark);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.article-back-link {
    color: var(--text-muted) !important;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
}

.article-prose > p:first-of-type {
    margin-bottom: 1.8rem;
    color: #24312e;
    font-size: clamp(1.05rem, 2vw, 1.16rem);
    line-height: 1.85;
}

.article-prose p,
.article-prose li {
    font-size: clamp(.96rem, 1.5vw, 1.02rem);
    line-height: 1.86;
}

.article-prose p {
    margin-bottom: 1.2rem;
}

.article-prose h2 {
    scroll-margin-top: 7rem;
    margin: clamp(2.6rem, 6vw, 4.2rem) 0 1rem;
    padding-top: .25rem;
    color: #12221e;
    font-size: clamp(1.55rem, 3.4vw, 2.15rem);
    line-height: 1.3;
}

.article-prose h3 {
    margin: 2.15rem 0 .7rem;
    color: #1b2a26;
    font-size: clamp(1.12rem, 2vw, 1.28rem);
}

.article-prose ul,
.article-prose ol {
    margin: 1rem 0 1.6rem;
    padding-left: 1.25rem;
}

.article-prose li::marker {
    color: var(--primary);
    font-weight: 700;
}

.article-figure {
    margin: clamp(2rem, 5vw, 3.2rem) 0;
}

.article-figure .article-image-frame {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 48px rgba(13, 48, 38, .1);
}

.article-figure .article-image-frame > img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.article-figure .image-brand {
    right: .6rem;
    bottom: .6rem;
    width: clamp(90px, 22%, 145px);
    min-height: 28px;
    padding: .3rem .45rem;
    opacity: .9;
}

.article-figure figcaption {
    margin-top: .75rem;
    color: #71817c;
    font-size: .76rem;
    line-height: 1.6;
}

.article-answer,
.article-highlight {
    margin: 2rem 0;
    padding: 1.25rem 1.35rem;
    border: 1px solid #cfe3db;
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    background: #f2f9f6;
}

.article-answer strong,
.article-highlight strong {
    color: var(--primary-dark);
}

.article-table-wrap {
    margin: 2rem 0;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 24px rgba(16, 44, 36, .05);
    -webkit-overflow-scrolling: touch;
}

.article-table {
    min-width: 680px;
}

.article-table th,
.article-table td {
    padding: .95rem 1rem;
    font-size: .84rem;
    line-height: 1.6;
}

.article-aside-v2 {
    display: grid;
    gap: 1rem;
    padding: 0;
    border: 0;
    background: transparent;
}

.article-toc-card,
.article-consult-card {
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fbfdfc;
}

.article-consult-card {
    background: linear-gradient(145deg, #f0f8f5, #ffffff);
}

.article-toc {
    margin: .85rem 0 0;
    padding: 0;
    list-style: none;
}

.article-toc li + li {
    border-top: 1px solid #e6efeb;
}

.article-toc a {
    display: block;
    padding: .75rem 0;
    color: #50605b;
    font-size: .78rem;
    line-height: 1.55;
    text-decoration: none;
}

.article-toc a:hover {
    color: var(--primary-dark);
}

.article-consult-card h2 {
    margin: .55rem 0 .6rem;
    font-size: 1.2rem;
    line-height: 1.35;
}

.article-consult-card p {
    margin-bottom: 1rem;
    font-size: .82rem;
}

.article-consult-card .button {
    width: 100%;
}

.article-related-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.article-related-heading h2 {
    margin-bottom: 0;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.related-grid-cards {
    align-items: stretch;
}

.related-article-card {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    background: white;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.related-article-card:hover {
    transform: translateY(-4px);
    border-color: #abcbbf;
    box-shadow: 0 18px 42px rgba(16, 44, 36, .1);
}

.related-article-card > img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.related-article-card-body {
    display: flex;
    min-height: 170px;
    flex-direction: column;
    padding: 1.1rem 1.2rem 1.25rem;
}

.related-article-card strong {
    display: block;
    margin: .65rem 0 1rem;
    font-size: 1rem;
    line-height: 1.45;
}

.related-more {
    margin-top: auto;
    color: var(--primary-dark);
    font-size: .78rem;
    font-weight: 700;
}

@media (min-width: 620px) {
    .article-archive-toolbar {
        flex-direction: row;
        align-items: end;
    }

    .article-related-heading {
        flex-direction: row;
        align-items: end;
        justify-content: space-between;
    }
}

@media (min-width: 820px) {
    .article-guidance-grid {
        grid-template-columns: 1.05fr .95fr;
        gap: 5rem;
        align-items: start;
    }

    .article-hero-grid {
        grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
        gap: clamp(3rem, 6vw, 6rem);
    }

    .article-page-layout-v2 {
        grid-template-columns: minmax(0, 760px) minmax(260px, 310px);
        justify-content: space-between;
        gap: clamp(3rem, 6vw, 5rem);
    }

    .article-aside-v2 {
        position: sticky;
        top: 110px;
    }
}

@media (min-width: 1080px) {
    .blog-grid-archive {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 619px) {
    .article-page-hero-rich {
        padding-top: 2.5rem;
    }

    .article-page-hero-rich h1 {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.12;
    }

    .article-meta {
        gap: .45rem;
    }

    .article-meta span {
        min-height: 28px;
        font-size: .68rem;
    }

    .article-featured img {
        border-radius: var(--radius);
    }

    .article-reading-section {
        padding-top: 3rem;
    }

    .article-table-wrap {
        margin-right: -1.25rem;
        margin-left: 0;
        border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    }

    .article-toc-card {
        order: 2;
    }

    .article-consult-card {
        order: 1;
    }
}
