@font-face {
    font-family: "DejaVu Local";
    src: url("../fonts/DejaVuSans-subset.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0020-007E, U+00A0-00FF, U+20AC, U+2018-2019, U+201C-201D, U+2013-2014, U+2026;
}

@font-face {
    font-family: "DejaVu Local";
    src: url("../fonts/DejaVuSans-Bold-subset.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0020-007E, U+00A0-00FF, U+20AC, U+2018-2019, U+201C-201D, U+2013-2014, U+2026;
}

:root {
    --ink: #253746;
    --ink-soft: #536775;
    --green: #6eb832;
    --green-dark: #4f8f23;
    --yellow: #f4c542;
    --white: #ffffff;
    --off-white: #f7f9f5;
    --line: #dce5dd;
    --shadow: 0 20px 55px rgba(37, 55, 70, .12);
    --radius-sm: 12px;
    --radius: 22px;
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "DejaVu Local", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 999; padding: 10px 16px; color: var(--white); background: var(--ink); border-radius: 8px; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); box-shadow: 0 1px 0 rgba(37,55,70,.09); backdrop-filter: blur(12px); }
.topbar { color: #dfe8ec; background: var(--ink); font-size: .78rem; }
.topbar__inner { min-height: 34px; display: flex; align-items: center; justify-content: flex-end; gap: 24px; }
.topbar a { color: var(--white); text-decoration: none; }
.topbar a:hover { color: var(--yellow); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { flex: 0 1 325px; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { position: relative; color: var(--ink); font-size: .92rem; font-weight: 700; text-decoration: none; }
.main-nav a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; content: ""; background: var(--green); transform: scaleX(0); transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { padding: 11px 17px; color: var(--white) !important; background: var(--green-dark); border-radius: 999px; }
.nav-cta:hover { background: var(--ink); }
.menu-toggle { display: none; width: 46px; height: 42px; padding: 10px; background: transparent; border: 0; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--ink); }

.hero { position: relative; overflow: hidden; padding: 88px 0 92px; background: linear-gradient(125deg, #f8faf7 0%, #fff 52%, #eff7e9 100%); }
.hero::before { position: absolute; top: -180px; right: -180px; width: 520px; height: 520px; content: ""; border: 1px solid rgba(110,184,50,.28); border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); align-items: center; gap: 78px; }
.eyebrow { margin: 0 0 14px; color: var(--green-dark); font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.18; }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(2.35rem, 5vw, 4.45rem); letter-spacing: -.045em; }
h2 { margin-bottom: 18px; font-size: clamp(1.9rem, 3.5vw, 3rem); letter-spacing: -.035em; }
h3 { margin-bottom: 12px; font-size: 1.16rem; }
.hero-lead { max-width: 700px; margin: 0 0 30px; color: var(--ink-soft); font-size: 1.12rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 12px 22px; font-weight: 700; line-height: 1.2; text-align: center; text-decoration: none; border: 2px solid transparent; border-radius: 999px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--white); background: var(--green-dark); box-shadow: 0 12px 25px rgba(79,143,35,.23); }
.button--primary:hover { background: var(--ink); }
.button--ghost { color: var(--ink); background: var(--white); border-color: var(--line); }
.button--full { width: 100%; }
.hero-points { display: flex; flex-wrap: wrap; gap: 16px 24px; padding: 0; margin: 30px 0 0; color: var(--ink-soft); font-size: .89rem; list-style: none; }
.hero-points li::before { margin-right: 8px; color: var(--green); content: "●"; }
.hero-visual { position: relative; min-height: 430px; display: grid; place-items: center; }
.energy-orbit { position: absolute; border-radius: 50%; }
.energy-orbit--one { width: 390px; height: 390px; border: 32px solid rgba(110,184,50,.13); border-left-color: rgba(37,55,70,.12); transform: rotate(25deg); }
.energy-orbit--two { width: 290px; height: 290px; border: 2px dashed rgba(37,55,70,.24); }
.energy-card { position: relative; z-index: 1; width: min(330px, 84%); padding: 34px; color: var(--white); background: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); }
.energy-card::before { position: absolute; top: -18px; right: 25px; width: 52px; height: 52px; content: ""; background: var(--yellow); clip-path: polygon(58% 0, 18% 52%, 47% 52%, 32% 100%, 82% 41%, 53% 41%); }
.energy-card__label { display: block; margin-bottom: 15px; color: #9dd96f; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.energy-card strong { display: block; font-size: 1.38rem; line-height: 1.55; }
.energy-card__badge { display: inline-block; padding: 6px 11px; margin-top: 24px; color: var(--ink); background: var(--yellow); border-radius: 999px; font-size: .75rem; font-weight: 700; }

.trust-bar { color: var(--white); background: var(--ink); }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.trust-grid div { padding: 28px 30px; border-right: 1px solid rgba(255,255,255,.13); }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: #9bd766; }
.trust-grid span { color: #d6e0e5; font-size: .87rem; }

.section { padding: 100px 0; }
.section--soft { background: var(--off-white); }
.section--dark { color: var(--white); background: var(--ink); }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading > p:last-child { color: var(--ink-soft); font-size: 1.03rem; }
.section-heading--light > p:last-child { color: #d1dde2; }
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 36px rgba(37,55,70,.07); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card p { margin-bottom: 0; color: var(--ink-soft); }
.service-icon { display: grid; width: 46px; height: 46px; margin-bottom: 26px; place-items: center; color: var(--ink); background: var(--yellow); border-radius: 50%; font-size: .78rem; font-weight: 700; }

.process-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.steps { padding: 0; margin: 0; list-style: none; counter-reset: step; }
.steps li { display: grid; grid-template-columns: 62px 1fr; gap: 20px; padding: 0 0 30px; }
.steps li + li { padding-top: 30px; border-top: 1px solid rgba(255,255,255,.13); }
.steps li > span { display: grid; width: 52px; height: 52px; place-items: center; color: var(--ink); background: var(--yellow); border-radius: 50%; font-weight: 700; }
.steps p { margin: 0; color: #cad7dc; }

.about-grid { display: grid; grid-template-columns: minmax(260px,.65fr) minmax(0,1.35fr); align-items: center; gap: 84px; }
.about-mark { display: grid; min-height: 360px; place-items: center; background: radial-gradient(circle at 50% 50%, #fff 0 28%, transparent 29%), linear-gradient(145deg,#edf6e7,#f8faf7); border-radius: 40px; }
.about-mark img { width: 210px; }
.about-grid p { color: var(--ink-soft); }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--green-dark); font-weight: 700; text-decoration: none; }
.text-link:hover span { transform: translateX(4px); }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 75px; align-items: start; }
.faq-intro { position: sticky; top: 145px; }
.faq-list details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.faq-list details + details { margin-top: 12px; }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 22px; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--green-dark); font-size: 1.45rem; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { padding: 0 22px 20px; margin: 0; color: var(--ink-soft); }

.contact-section { background: linear-gradient(135deg,#fff 0,#f2f7ee 100%); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.contact-copy > p { color: var(--ink-soft); }
.contact-methods { display: grid; gap: 10px; margin-top: 32px; }
.contact-methods a { padding: 16px 18px; text-decoration: none; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.contact-methods span, .contact-methods strong, .contact-methods small { display: block; }
.contact-methods span { color: var(--green-dark); font-size: .75rem; font-weight: 700; text-transform: uppercase; }
.contact-methods strong { overflow-wrap: anywhere; }
.contact-methods small { color: var(--ink-soft); }
.form-card { padding: 34px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card label { display: block; margin-bottom: 16px; font-size: .88rem; font-weight: 700; }
.form-card input, .form-card textarea { width: 100%; padding: 12px 14px; margin-top: 6px; color: var(--ink); background: #fbfcfa; border: 1px solid #cdd9cf; border-radius: 9px; outline: none; }
.form-card input:focus, .form-card textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(110,184,50,.16); }
.form-card textarea { resize: vertical; }
.checkbox { display: grid !important; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-weight: 400 !important; }
.checkbox input { width: 18px; height: 18px; margin: 4px 0 0; }
.checkbox a { color: var(--green-dark); }
.form-hint { margin: 12px 0 0; color: var(--ink-soft); font-size: .75rem; }
.hp-field { position: absolute !important; left: -9999px !important; }
.notice { padding: 14px 16px; margin-bottom: 20px; border-radius: 9px; }
.notice--success { color: #265d12; background: #e8f7dd; }
.notice--error { color: #7e2727; background: #fff0f0; }
.notice ul { margin-bottom: 0; }

.page-hero { padding: 76px 0; color: var(--white); background: var(--ink); }
.page-hero h1 { margin-bottom: 14px; font-size: clamp(2.4rem,5vw,4rem); }
.page-hero p:last-child { max-width: 640px; margin-bottom: 0; color: #d3dfe4; }
.legal-section { background: var(--off-white); }
.legal-layout { display: grid; grid-template-columns: minmax(0,1fr) 290px; gap: 34px; align-items: start; }
.legal-card { padding: clamp(26px,5vw,58px); background: var(--white); border-radius: var(--radius); box-shadow: 0 12px 40px rgba(37,55,70,.08); }
.legal-card h2 { margin-top: 38px; margin-bottom: 12px; font-size: 1.35rem; letter-spacing: -.02em; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p { color: var(--ink-soft); }
.legal-card a { color: var(--green-dark); }
.legal-aside { position: sticky; top: 140px; padding: 25px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.legal-aside p { color: var(--ink-soft); }
.legal-note { padding: 16px; margin: 15px 0; color: #694c00; background: #fff7d8; border-left: 4px solid var(--yellow); border-radius: 6px; }
.error-section { min-height: 52vh; display: grid; place-items: center; text-align: center; }
.error-content { max-width: 720px; margin-inline: auto; }
.error-code { margin-bottom: 8px; color: var(--green-dark); font-size: clamp(4.5rem, 16vw, 9rem); font-weight: 700; line-height: .9; letter-spacing: -.06em; }
.error-content h1 { margin-bottom: 16px; }
.error-content > p { max-width: 590px; margin: 0 auto 28px; color: var(--ink-soft); }
.error-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.quick-contact { position: fixed; right: 18px; bottom: 22px; z-index: 90; display: grid; justify-items: end; gap: 8px; }
.quick-contact__hours { padding: 6px 10px; color: var(--white); background: rgba(37,55,70,.94); border-radius: 8px; font-size: .69rem; box-shadow: 0 6px 18px rgba(37,55,70,.2); }
.quick-contact__button { display: flex; width: 122px; min-height: 44px; align-items: center; gap: 9px; padding: 8px 11px; color: var(--white); border-radius: 999px; box-shadow: 0 8px 22px rgba(37,55,70,.24); font-size: .8rem; font-weight: 700; text-decoration: none; }
.quick-contact__button svg { width: 21px; height: 21px; fill: currentColor; }
.quick-contact__button--phone { background: var(--ink); }
.quick-contact__button--whatsapp { background: #238d48; }
.quick-contact__button--email { background: var(--green-dark); }

.site-footer { padding-top: 70px; color: #d7e1e5; background: #1c2b36; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 50px; }
.footer-grid h2 { margin-bottom: 16px; color: var(--white); font-size: .9rem; letter-spacing: .05em; text-transform: uppercase; }
.footer-grid a, .footer-grid span { display: block; color: #d7e1e5; text-decoration: none; }
.footer-grid a:hover { color: var(--yellow); }
.footer-grid address { margin-bottom: 12px; font-style: normal; }
.footer-brand img { width: 300px; margin-bottom: 18px; }
.footer-social { display: flex; flex-flow: row wrap; align-items: center; justify-content: flex-start; gap: 12px; margin-top: 22px; }
.footer-grid .footer-social a { display: inline-flex; flex: 0 0 44px; width: 44px; height: 44px; align-items: center; justify-content: center; padding: 0; color: var(--white); background-color: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 5px 16px rgba(0,0,0,.14); transition: background-color .2s ease, border-color .2s ease, transform .2s ease; }
.footer-grid .footer-social a:hover, .footer-grid .footer-social a:focus-visible { color: var(--white); background-color: #238d48; border-color: #46ad68; transform: translateY(-2px); }
.footer-brand .footer-social img { display: block; width: 21px; height: 21px; margin: 0; object-fit: contain; }
.footer-brand p { max-width: 430px; color: #aebec5; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding: 24px 0; margin-top: 55px; color: #aebec5; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }

@media (max-width: 980px) {
    .menu-toggle { display: block; }
    .main-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; padding: 18px 20px 24px; background: var(--white); box-shadow: 0 18px 35px rgba(37,55,70,.12); }
    .main-nav.is-open { display: grid; }
    .main-nav a { padding: 8px 0; }
    .nav-cta { margin-top: 6px; text-align: center; }
    .brand { max-width: 290px; }
    .hero-grid, .process-grid, .about-grid, .faq-layout, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { min-height: 360px; }
    .faq-intro { position: static; }
    .card-grid { grid-template-columns: 1fr; }
    .about-mark { min-height: 300px; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .legal-layout { grid-template-columns: 1fr; }
    .legal-aside { position: static; }
}

@media (max-width: 680px) {
    html { scroll-padding-top: 88px; }
    .container { width: min(calc(100% - 28px), var(--container)); }
    .topbar__inner { min-height: 30px; justify-content: center; gap: 12px; font-size: .66rem; }
    .topbar__inner a { display: none; }
    .nav-wrap { min-height: 70px; }
    .brand { max-width: 235px; }
    .hero { padding: 58px 0 65px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { min-height: 300px; }
    .energy-orbit--one { width: 300px; height: 300px; border-width: 24px; }
    .energy-orbit--two { width: 230px; height: 230px; }
    .energy-card { padding: 26px; }
    .button-row { display: grid; }
    .hero-points { display: grid; gap: 8px; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-grid div { padding: 18px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
    .section { padding: 70px 0; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-card { padding: 23px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { display: grid; }
    .quick-contact { right: 10px; bottom: 12px; }
    .quick-contact__button { width: 46px; height: 46px; padding: 12px; }
    .quick-contact__button span { display: none; }
    .page-hero { padding: 55px 0; }
    .legal-card { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
