:root {
    --green: #0b7a42;
    --green-2: #0e9f57;
    --green-dark: #075a31;
    --green-light: #dcf8e9;
    --lime: #c7f36b;
    --ink: #10231a;
    --muted: #637168;
    --surface: #ffffff;
    --surface-2: #f4f7f4;
    --surface-3: #e9efe9;
    --line: #dfe7e1;
    --header: rgba(255, 255, 255, .86);
    --shadow: 0 20px 60px rgba(18, 55, 34, .11);
    --shadow-sm: 0 10px 30px rgba(18, 55, 34, .08);
    --radius: 24px;
    --container: 1180px;
}

[data-theme="dark"] {
    --ink: #eef8f1;
    --muted: #a5b4aa;
    --surface: #0d1712;
    --surface-2: #121f18;
    --surface-3: #1b2b22;
    --line: #283b30;
    --header: rgba(13, 23, 18, .88);
    --green-light: #123d27;
    --shadow: 0 20px 60px rgba(0, 0, 0, .3);
    --shadow-sm: 0 10px 30px rgba(0, 0, 0, .22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

button {
    color: inherit;
}

svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 108px 0;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 16px;
    z-index: 1000;
    padding: 10px 16px;
    background: var(--ink);
    color: var(--surface);
    border-radius: 8px;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: var(--header);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: border-color .25s, box-shadow .25s;
}

.site-header.scrolled {
    border-color: var(--line);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.site-header:not(.scrolled) {
    color: white;
    background: linear-gradient(to bottom, rgba(3, 20, 11, .68), transparent);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-header:not(.scrolled) .brand small,
.site-header:not(.scrolled) .desktop-nav a {
    color: rgba(255, 255, 255, .7);
}

.site-header:not(.scrolled) .desktop-nav a:hover {
    color: white;
}

.site-header:not(.scrolled) .theme-toggle,
.site-header:not(.scrolled) .language-toggle,
.site-header:not(.scrolled) .map-link,
.site-header:not(.scrolled) .menu-toggle {
    color: white;
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08);
}

.site-header:not(.scrolled) .map-link {
    color: var(--lime);
}

.nav-wrap {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: white;
    border-radius: 13px;
    background: linear-gradient(145deg, var(--green-2), var(--green-dark));
    box-shadow: 0 8px 20px rgba(11, 122, 66, .24);
}

.brand-mark svg {
    width: 28px;
}

.brand>span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand strong {
    font: 800 17px "Manrope", sans-serif;
    letter-spacing: -.35px;
}

.brand small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    transition: color .2s;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    border-radius: 2px;
    background: var(--green);
    transition: right .25s;
}

.desktop-nav a:hover {
    color: var(--ink);
}

.desktop-nav a:hover::after {
    right: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle,
.language-toggle,
.menu-toggle,
.map-link {
    border: 1px solid var(--line);
    background: var(--surface-2);
    cursor: pointer;
}

.theme-toggle,
.map-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: background .2s, transform .2s;
}

.language-toggle {
    min-width: 66px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 11px;
    border-radius: 21px;
    color: var(--green);
    font: 700 12px "Noto Sans Bengali", "DM Sans", sans-serif;
    transition: color .2s, background .2s, transform .2s;
}

.language-toggle svg {
    width: 16px;
}

.language-toggle:hover {
    transform: translateY(-2px);
    color: white;
    background: var(--green);
}

[lang="bn"] body {
    font-family: "Noto Sans Bengali", "DM Sans", sans-serif;
}

[lang="bn"] h1,
[lang="bn"] h2,
[lang="bn"] h3 {
    font-family: "Noto Sans Bengali", "Manrope", sans-serif;
    line-height: 1.2;
}

[lang="bn"] h1 {
    letter-spacing: -2px;
}

.map-link {
    color: var(--green);
}

.map-link svg {
    width: 19px;
}

.map-link:hover {
    transform: translateY(-2px);
    background: var(--green-light);
}

.theme-toggle:hover {
    transform: rotate(10deg);
}

.theme-toggle svg {
    width: 19px;
}

[data-theme="dark"] .sun-icon,
 :root:not([data-theme="dark"]) .moon-icon {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 25px;
    border: 0;
    border-radius: 12px;
    color: white;
    background: var(--green);
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 9px 24px rgba(11, 122, 66, .2);
    transition: transform .2s, background .2s, box-shadow .2s;
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--green-dark);
    box-shadow: 0 13px 30px rgba(11, 122, 66, .25);
}

.btn svg {
    width: 19px;
}

.btn-small {
    min-height: 42px;
    padding-inline: 19px;
    border-radius: 10px;
    font-size: 14px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 10px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: currentColor;
    transition: transform .25s, opacity .2s;
}

.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    min-height: min(900px, 100svh);
    padding: 145px 0 72px;
    overflow: hidden;
    color: white;
    background-color: #071a10;
    background-image: linear-gradient(90deg, rgba(3, 20, 11, .9) 0%, rgba(3, 25, 13, .78) 37%, rgba(3, 27, 14, .38) 72%, rgba(3, 20, 11, .22) 100%), linear-gradient(0deg, rgba(2, 16, 8, .55), transparent 46%), url("assets/images/cover.webp");
    background-position: center;
    background-size: cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .13;
    background-image: radial-gradient(rgba(255, 255, 255, .7) .65px, transparent .65px);
    background-size: 20px 20px;
    mask-image: linear-gradient(to right, black, transparent 62%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 115px;
    background: linear-gradient(transparent, rgba(2, 16, 8, .48));
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .2;
    pointer-events: none;
}

.hero-glow-one {
    top: -210px;
    left: -130px;
    background: var(--lime);
}

.hero-glow-two {
    bottom: -260px;
    right: -80px;
    background: var(--green-2);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 70px;
    align-items: end;
}

.hero-copy {
    max-width: 760px;
    padding: 39px 41px 35px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(7, 31, 18, .68), rgba(7, 31, 18, .42));
    box-shadow: 0 28px 90px rgba(0, 0, 0, .27);
    backdrop-filter: blur(17px) saturate(1.15);
    -webkit-backdrop-filter: blur(17px) saturate(1.15);
}

.eyebrow,
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.65px;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--lime);
}

.eyebrow span {
    width: 28px;
    height: 2px;
    background: currentColor;
}

h1,
h2,
h3 {
    font-family: "Manrope", sans-serif;
    line-height: 1.1;
    margin-top: 0;
}

h1 {
    max-width: 680px;
    margin: 21px 0 25px;
    font-size: clamp(48px, 5.6vw, 75px);
    letter-spacing: -4px;
}

h1 em,
h2 em {
    display: block;
    color: var(--green);
    font-style: normal;
}

.hero h1 em {
    color: #46d887;
    text-shadow: 0 0 35px rgba(70, 216, 135, .2);
}

.hero-lead {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 17px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 36px;
}

.text-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero .text-link {
    color: white;
}

.icon-circle {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    color: var(--lime);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
}

.icon-circle svg {
    width: 19px;
}

.text-link>span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.text-link small {
    color: rgba(255, 255, 255, .57);
    font-size: 11px;
}

.text-link strong {
    margin-top: 3px;
    font-size: 14px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.avatars {
    display: flex;
    padding-left: 8px;
}

.avatars span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    margin-left: -8px;
    border: 3px solid rgba(8, 31, 19, .9);
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    color: var(--green);
    font-size: 9px;
    font-weight: 800;
}

.hero-proof>div:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.hero-proof strong {
    font-size: 14px;
}

.hero-proof small {
    color: rgba(255, 255, 255, .57);
    font-size: 11px;
}

.stars {
    margin-right: 5px;
    color: #f7b500;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    padding: 0 22px 20px 0;
}

.hero-energy-card {
    width: 100%;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 21px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .07));
    box-shadow: 0 24px 70px rgba(0, 0, 0, .3);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.energy-card-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 11px;
}

.live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 6px rgba(199, 243, 107, .12), 0 0 18px rgba(199, 243, 107, .45);
}

.energy-card-head>div {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.energy-card-head small {
    color: rgba(255, 255, 255, .55);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.energy-card-head strong {
    margin-top: 2px;
    font: 700 12px "Manrope", sans-serif;
}

.energy-card-head>svg {
    width: 22px;
    color: var(--lime);
}

.mini-energy-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 8px;
    margin: 23px 0;
}

.mini-energy-flow>div {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 7px;
}

.mini-energy-flow>div span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    color: var(--lime);
    background: rgba(4, 25, 13, .3);
}

.mini-energy-flow svg {
    width: 23px;
}

.mini-energy-flow small {
    color: rgba(255, 255, 255, .68);
    font-size: 8px;
}

.mini-energy-flow b {
    color: rgba(255, 255, 255, .3);
    font-size: 14px;
}

.energy-card-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .11);
}

.energy-card-footer span {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, .6);
    font-size: 7px;
}

.energy-card-footer svg {
    width: 12px;
    color: var(--lime);
}

.solar-stat {
    position: absolute;
    right: -20px;
    top: -65px;
    z-index: 3;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 27px;
    color: white;
    border: 6px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    background: rgba(11, 122, 66, .88);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
    backdrop-filter: blur(10px);
}

.solar-stat strong {
    font: 800 31px "Manrope", sans-serif;
    line-height: 1;
}

.solar-stat span {
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.brand-strip {
    padding: 38px 0 42px;
    border-top: 1px solid var(--line);
    background: var(--surface);
}

.brand-strip-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    margin-bottom: 28px;
}

.brand-strip-head p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-align: center;
    text-transform: uppercase;
}

.brand-line {
    width: 35px;
    height: 1px;
    background: var(--line);
}

.brand-logos {
    display: grid;
    grid-template-columns: repeat(10, minmax(70px, 1fr));
    align-items: center;
    gap: 20px;
}

.brand-logos a {
    min-width: 0;
    height: 57px;
    display: grid;
    place-items: center;
    padding: 9px 5px;
    border-radius: 10px;
    transition: background .2s, transform .2s;
}

.brand-logos a:hover {
    transform: translateY(-3px);
    background: var(--surface-2);
}

.brand-logos img {
    width: 100%;
    max-width: 105px;
    height: 35px;
    object-fit: contain;
    filter: grayscale(1) brightness(0);
    opacity: .55;
    transition: opacity .2s;
}

.brand-logos a:hover img {
    opacity: .9;
}

.brand-logos a:nth-child(4) img {
    max-width: 46px;
    filter: grayscale(1) contrast(1.35);
}

.brand-logos a:nth-child(10) img {
    max-width: 112px;
}

[data-theme="dark"] .brand-logos img {
    filter: grayscale(1) brightness(0) invert(1);
    opacity: .62;
}

[data-theme="dark"] .brand-logos a:nth-child(4) img {
    filter: grayscale(1) contrast(1.35);
    opacity: .85;
}

.trust-strip {
    border-block: 1px solid var(--line);
    background: var(--surface-2);
}

.trust-grid {
    min-height: 118px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.trust-grid>div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 24px;
    border-right: 1px solid var(--line);
}

.trust-grid>div:first-child {
    padding-left: 0;
}

.trust-grid>div:last-child {
    border-right: 0;
}

.trust-grid svg {
    width: 29px;
    flex: 0 0 auto;
    color: var(--green);
}

.trust-grid span {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.trust-grid strong {
    font-size: 13px;
}

.trust-grid small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
}

.services {
    background: var(--surface);
}

.section-heading {
    margin-bottom: 54px;
}

.split-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
}

.section-heading h2,
.systems h2,
.contact h2,
.reviews h2 {
    margin: 14px 0 0;
    font-size: clamp(36px, 4.2vw, 53px);
    letter-spacing: -2.4px;
}

.split-heading p {
    max-width: 430px;
    margin: 0 0 7px;
    color: var(--muted);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.service-card-main {
    position: relative;
    min-height: 354px;
    padding: 31px 27px 25px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.service-card-main:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: var(--shadow);
}

.service-card-main.featured {
    color: white;
    border-color: transparent;
    background: var(--green);
}

.service-icon {
    width: 51px;
    height: 51px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--green);
    background: var(--green-light);
}

.service-icon svg {
    width: 25px;
}

.featured .service-icon {
    color: white;
    background: rgba(255, 255, 255, .14);
}

.service-number {
    position: absolute;
    top: 34px;
    right: 27px;
    color: var(--line);
    font: 700 12px "Manrope", sans-serif;
}

.featured .service-number {
    color: rgba(255, 255, 255, .45);
}

.service-card-main h3 {
    margin: 31px 0 14px;
    font-size: 22px;
    letter-spacing: -.5px;
}

.service-card-main p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.featured p {
    color: rgba(255, 255, 255, .73);
}

.service-card-main a {
    position: absolute;
    bottom: 25px;
    left: 27px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
}

.featured a {
    color: var(--lime);
}

.service-card-main a span {
    font-size: 17px;
    transition: transform .2s;
}

.service-card-main a:hover span {
    transform: translateX(4px);
}

.systems {
    background: var(--surface-2);
}

.solar-basics {
    margin-bottom: 88px;
    padding: 42px 45px 32px;
    border: 1px solid var(--line);
    border-radius: 25px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.basics-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.basics-heading h2 {
    max-width: 620px;
    margin: 9px 0 0;
    font-size: clamp(30px, 3.5vw, 44px);
}

.basics-heading p {
    max-width: 260px;
    margin: 0 0 7px;
    color: var(--muted);
    font-size: 13px;
    text-align: right;
}

.energy-flow {
    display: grid;
    grid-template-columns: 1fr 55px 1fr 55px 1fr 55px 1fr;
    align-items: center;
}

.flow-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    min-width: 0;
    text-align: center;
}

.flow-icon {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 25px;
    color: var(--green);
    background: var(--green-light);
    box-shadow: inset 0 0 0 7px var(--surface);
}

.flow-icon svg {
    width: 50px;
}

.sun-flow {
    color: #d59300;
    background: #fff3c9;
}

[data-theme="dark"] .sun-flow {
    background: #3b3216;
}

.home-flow {
    color: white;
    background: var(--green);
}

.flow-item strong {
    margin-top: 16px;
    font: 800 14px "Manrope", sans-serif;
}

.flow-item small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
}

.flow-arrow {
    color: var(--green);
    opacity: .6;
}

.flow-arrow svg {
    width: 100%;
}

.flow-note {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px;
    padding-top: 23px;
    border-top: 1px dashed var(--line);
}

.flow-note>span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 10px;
}

.flow-note svg {
    width: 21px;
    flex: 0 0 auto;
    color: var(--green);
}

.flow-note b {
    color: var(--ink);
}

.systems-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 90px;
    align-items: center;
}

.section-intro {
    max-width: 600px;
    color: var(--muted);
}

.system-tabs {
    display: flex;
    gap: 8px;
    margin: 32px 0 27px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.system-tab {
    padding: 10px 18px;
    border: 0;
    border-radius: 9px;
    color: var(--muted);
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.system-tab.active {
    color: white;
    background: var(--green);
}

.system-panel {
    min-height: 245px;
    padding: 27px 30px;
    border-left: 3px solid var(--green);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.panel-label {
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.system-panel h3 {
    margin: 10px 0 9px;
    font-size: 21px;
}

.system-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.system-panel ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
    font-size: 12px;
    font-weight: 600;
}

.system-panel li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.system-panel li span {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--green);
    background: var(--green-light);
    font-size: 10px;
}

.guide-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 23px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.guide-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 28px;
    color: white;
    background: var(--green);
    font: 700 16px "Manrope", sans-serif;
}

.guide-card-top svg {
    width: 27px;
    opacity: .7;
}

.guide-card ol {
    padding: 12px 28px;
    margin: 0;
    list-style: none;
    counter-reset: item;
}

.guide-card li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.guide-card li>span {
    width: 29px;
    height: 29px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--green);
    background: var(--green-light);
    font-size: 11px;
    font-weight: 800;
}

.guide-card li div {
    display: flex;
    flex-direction: column;
}

.guide-card li strong {
    font-size: 13px;
}

.guide-card li small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
}

.guide-card>a {
    display: flex;
    justify-content: space-between;
    padding: 18px 28px;
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
}

.regulations {
    background: var(--surface);
}

.centered {
    max-width: 740px;
    margin-inline: auto;
    text-align: center;
}

.centered h2 em {
    display: inline;
}

.centered p {
    color: var(--muted);
}

.steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 55px;
}

.steps::before {
    content: "";
    position: absolute;
    top: 53px;
    left: 12%;
    right: 12%;
    height: 1px;
    border-top: 1px dashed var(--green);
    opacity: .4;
}

.steps article {
    position: relative;
    z-index: 1;
    min-height: 250px;
    padding: 29px 23px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
}

.step-num {
    position: absolute;
    top: 17px;
    right: 18px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
}

.step-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 6px solid var(--surface);
    border-radius: 50%;
    color: white;
    background: var(--green);
    box-shadow: 0 0 0 1px var(--line);
    font-weight: 800;
}

.steps h3 {
    margin: 24px 0 11px;
    font-size: 18px;
}

.steps p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.regulation-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 25px;
    padding: 24px 29px;
    border: 1px solid color-mix(in srgb, var(--green) 25%, var(--line));
    border-radius: 15px;
    background: var(--green-light);
}

.regulation-note>div:first-child {
    display: flex;
    align-items: flex-start;
    gap: 17px;
}

.regulation-note svg {
    width: 28px;
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--green);
}

.regulation-note p {
    max-width: 610px;
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
}

.official-links {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    gap: 4px;
}

.official-links a {
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
    text-align: right;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.subsidy {
    background: #082f1d;
    color: white;
}

.subsidy .kicker {
    color: var(--lime);
}

.subsidy-layout {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 65px;
    align-items: center;
}

.subsidy-copy h2 {
    max-width: 680px;
    margin: 14px 0 19px;
    font-size: clamp(38px, 4.4vw, 57px);
    letter-spacing: -2.8px;
}

.subsidy-lead {
    max-width: 700px;
    color: rgba(255, 255, 255, .7);
}

.subsidy-math {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 13px;
    margin-top: 35px;
}

.subsidy-math>div {
    min-height: 94px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    background: rgba(255, 255, 255, .07);
}

.subsidy-math>span {
    color: var(--lime);
    font: 800 24px "Manrope", sans-serif;
}

.subsidy-math small,
.subsidy-math strong {
    display: block;
}

.subsidy-math small {
    color: rgba(255, 255, 255, .55);
    font-size: 9px;
}

.subsidy-math strong {
    margin-top: 5px;
    font-size: 14px;
}

.subsidy-math .math-green {
    border-color: rgba(199, 243, 107, .3);
    background: rgba(199, 243, 107, .1);
}

.subsidy-math .math-green strong {
    color: var(--lime);
}

.subsidy-disclaimer {
    display: block;
    margin-top: 13px;
    color: rgba(255, 255, 255, .47);
    font-size: 9px;
    line-height: 1.6;
}

.truth-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 21px;
    background: #f8fff9;
    color: #10231a;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .24);
}

.truth-card-title {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 23px 25px;
    border-bottom: 1px solid #dfe7e1;
}

.truth-card-title>span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #0b7a42;
    background: #dcf8e9;
}

.truth-card-title svg {
    width: 23px;
}

.truth-card-title div {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.truth-card-title small {
    color: #637168;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.truth-card-title strong {
    margin-top: 3px;
    font: 800 17px "Manrope", sans-serif;
}

.truth-card ul {
    padding: 9px 25px 17px;
    margin: 0;
    list-style: none;
}

.truth-card li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #e4ebe6;
}

.truth-card li:last-child {
    border-bottom: 0;
}

.truth-card li>span {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #0b7a42;
    background: #dcf8e9;
    font-size: 10px;
    font-weight: 800;
}

.truth-card p {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.truth-card p strong {
    font-size: 12px;
}

.truth-card p small {
    margin-top: 4px;
    color: #637168;
    font-size: 10px;
    line-height: 1.6;
}

.cfa-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.25fr;
    align-items: center;
    margin-top: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 17px;
    background: rgba(255, 255, 255, .055);
}

.cfa-band>div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.cfa-icon {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 11px;
    color: var(--lime);
    background: rgba(199, 243, 107, .1);
}

.cfa-icon svg {
    width: 20px;
}

.cfa-band p {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.cfa-band small {
    color: rgba(255, 255, 255, .5);
    font-size: 8px;
}

.cfa-band strong {
    margin-top: 3px;
    font-size: 12px;
}

.cfa-band>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    align-self: stretch;
    padding: 20px 23px;
    color: #10231a;
    background: var(--lime);
    font-size: 11px;
    font-weight: 800;
}

.cfa-band>a span {
    font-size: 18px;
}

.projects {
    background: var(--surface-2);
}

.gallery-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;
    margin-bottom: 40px;
}

.gallery-heading h2 {
    margin: 14px 0 0;
    font-size: clamp(36px, 4.2vw, 53px);
    letter-spacing: -2.4px;
}

.gallery-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.gallery-proof>strong {
    color: var(--green);
    font: 800 34px/1 "Manrope", sans-serif;
}

.gallery-proof>span {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.gallery-proof b {
    font-size: 11px;
}

.gallery-proof small {
    color: var(--muted);
    font-size: 9px;
}

.gallery-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 22px;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gallery-filter {
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--muted);
    background: var(--surface);
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: color .2s, border-color .2s, background .2s, transform .2s;
}

.gallery-filter:hover {
    transform: translateY(-2px);
    color: var(--green);
    border-color: color-mix(in srgb, var(--green) 35%, var(--line));
}

.gallery-filter span {
    display: inline-grid;
    min-width: 22px;
    height: 20px;
    margin-left: 5px;
    place-items: center;
    border-radius: 6px;
    color: var(--muted);
    background: var(--surface-2);
    font-size: 8px;
}

.gallery-filter.active {
    color: white;
    border-color: var(--green);
    background: var(--green);
}

.gallery-filter.active span {
    color: var(--green);
    background: white;
}

.gallery-hint {
    display: flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 9px;
}

.gallery-hint svg {
    width: 17px;
    color: var(--green);
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
    grid-auto-rows: 126px;
    gap: 13px;
}

.gallery-item {
    position: relative;
    grid-row: span 2;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 17px;
    color: white;
    background: #173425;
    cursor: zoom-in;
    isolation: isolate;
    animation: gallery-in .4s both;
}

.gallery-item.gallery-wide {
    grid-column: span 2;
}

.gallery-item.gallery-tall {
    grid-row: span 3;
}

.gallery-item.gallery-feature {
    grid-column: span 2;
    grid-row: span 3;
}

.gallery-item.is-hidden {
    display: none;
}

.gallery-item::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 32% 0 0;
    background: linear-gradient(transparent, rgba(2, 23, 12, .82));
    opacity: .7;
    transition: opacity .3s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.2, .7, .2, 1), filter .3s;
}

.gallery-item:hover img {
    transform: scale(1.055);
    filter: saturate(1.08);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item-content {
    position: absolute;
    z-index: 2;
    inset: auto 17px 15px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    text-align: left;
    opacity: 0;
    transform: translateY(7px);
    transition: opacity .25s, transform .25s;
}

.gallery-item:hover .gallery-item-content,
.gallery-item:focus-visible .gallery-item-content {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-content>span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gallery-item-content strong {
    font: 700 12px "Manrope", sans-serif;
}

.gallery-item-content small {
    color: rgba(255, 255, 255, .72);
    font-size: 8px;
    text-transform: capitalize;
}

.gallery-zoom {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(8px);
}

.gallery-zoom svg {
    width: 15px;
}

.gallery-more {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 28px auto 0;
    padding: 0 21px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--green);
    background: var(--surface);
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform .2s, border-color .2s;
}

.gallery-more:hover {
    transform: translateY(-2px);
    border-color: var(--green);
}

.gallery-more svg {
    width: 17px;
    transition: transform .25s;
}

.gallery-more.expanded svg {
    transform: rotate(180deg);
}

.gallery-more[hidden] {
    display: none;
}

.gallery-lightbox {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    padding: 0;
    border: 0;
    color: white;
    background: rgba(4, 12, 8, .94);
}

.gallery-lightbox::backdrop {
    background: rgba(2, 8, 4, .76);
    backdrop-filter: blur(8px);
}

.lightbox-shell {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 50px 100px 35px;
}

.gallery-lightbox figure {
    width: min(100%, 1160px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
}

.gallery-lightbox figure img {
    min-height: 0;
    max-width: 100%;
    max-height: calc(100% - 65px);
    border-radius: 15px;
    object-fit: contain;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .55);
}

.gallery-lightbox figcaption {
    width: min(100%, 900px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 15px;
}

.gallery-lightbox figcaption>span {
    display: flex;
    flex-direction: column;
}

.gallery-lightbox figcaption small {
    color: rgba(255, 255, 255, .45);
    font-size: 8px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.gallery-lightbox figcaption strong {
    margin-top: 3px;
    font: 700 13px "Manrope", sans-serif;
}

.lightbox-count {
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    color: white;
    background: rgba(255, 255, 255, .08);
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background .2s, transform .2s;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: var(--green);
    transform: scale(1.06);
}

.lightbox-close {
    top: 24px;
    right: 27px;
    width: 44px;
    height: 44px;
}

.lightbox-close svg {
    width: 20px;
}

.lightbox-nav {
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
}

.lightbox-nav:hover {
    transform: translateY(-50%) scale(1.06);
}

.lightbox-nav svg {
    width: 22px;
}

.lightbox-prev {
    left: 28px;
}

.lightbox-next {
    right: 28px;
}

body.lightbox-open {
    overflow: hidden;
}

@keyframes gallery-in {
    from {
        opacity: 0;
        transform: scale(.97);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.reviews {
    overflow: hidden;
    color: white;
    background: #073b23;
}

.reviews .container {
    position: relative;
}

.reviews .container::before {
    content: "“";
    position: absolute;
    top: 18px;
    right: 2%;
    color: rgba(255, 255, 255, .05);
    font: 800 270px/1 Georgia, serif;
}

.reviews-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.reviews h2 {
    max-width: 690px;
    margin-top: 13px;
}

.light-kicker {
    color: var(--lime);
}

.rating-block {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
}

.rating-block>strong {
    font: 800 52px/1 "Manrope", sans-serif;
}

.rating-block>span {
    display: flex;
    flex-direction: column;
}

.rating-block b {
    color: #f7bd1e;
    font-size: 14px;
    letter-spacing: 2px;
}

.rating-block small {
    margin-top: 5px;
    color: rgba(255, 255, 255, .65);
    font-size: 10px;
}

.review-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.review-grid article {
    min-height: 285px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background: rgba(255, 255, 255, .065);
}

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-stars {
    color: #f7bd1e;
    font-size: 12px;
    letter-spacing: 2px;
}

.google-g {
    font: 800 20px Arial, sans-serif;
    color: #4285f4;
}

blockquote {
    margin: 27px 0;
    font: 600 18px/1.65 "Manrope", sans-serif;
    letter-spacing: -.25px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.reviewer>span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--green-dark);
    background: var(--lime);
    font-size: 10px;
    font-weight: 800;
}

.reviewer div {
    display: flex;
    flex-direction: column;
}

.reviewer strong {
    font-size: 12px;
}

.reviewer small {
    color: rgba(255, 255, 255, .55);
    font-size: 9px;
}

.reviews-link {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    color: var(--lime);
    font-size: 12px;
    font-weight: 800;
}

.contact {
    background: var(--surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.contact-copy>p {
    max-width: 500px;
    color: var(--muted);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.contact-list a {
    display: flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
}

.contact-list a>span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--green);
    background: var(--green-light);
}

.contact-list svg {
    width: 20px;
}

.contact-list a>div {
    display: flex;
    flex-direction: column;
}

.contact-list small {
    color: var(--muted);
    font-size: 10px;
}

.contact-list strong {
    margin-top: 2px;
    font-size: 13px;
    overflow-wrap: anywhere;
}

.map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.map-actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--green);
    background: var(--surface-2);
    font-size: 10px;
    font-weight: 800;
}

.map-actions a:last-child {
    color: white;
    border-color: var(--green);
    background: var(--green);
}

.map-actions svg {
    width: 18px;
}

.lead-form {
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface-2);
    box-shadow: var(--shadow);
}

.form-heading h3 {
    margin: 0;
    font-size: 25px;
}

.form-heading p {
    margin: 5px 0 25px;
    color: var(--muted);
    font-size: 12px;
}

.lead-form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 17px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.lead-form input,
.lead-form select {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid var(--line);
    outline: 0;
    border-radius: 10px;
    color: var(--ink);
    background: var(--surface);
    font-size: 13px;
    transition: border-color .2s, box-shadow .2s;
}

.lead-form input:focus,
.lead-form select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--green) 13%, transparent);
}

.lead-form input::placeholder {
    color: var(--muted);
    opacity: .7;
}

.form-submit {
    width: 100%;
    margin-top: 5px;
}

.form-note {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-size: 9px;
    text-align: center;
}

footer {
    padding: 72px 0 24px;
    color: #d8e6dc;
    background: #07130c;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.55fr repeat(3, 1fr);
    gap: 55px;
    padding-bottom: 55px;
}

footer .brand small {
    color: #85978b;
}

.footer-brand p {
    max-width: 300px;
    color: #85978b;
    font-size: 12px;
}

.footer-grid>div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-grid h3 {
    margin-bottom: 11px;
    color: white;
    font-size: 13px;
}

.footer-grid>div>a,
.footer-grid>div>span {
    color: #85978b;
    font-size: 11px;
    transition: color .2s;
    overflow-wrap: anywhere;
}

.footer-grid>div>a:hover {
    color: var(--lime);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid #1b2b21;
    color: #697b6f;
    font-size: 10px;
}

.footer-bottom a {
    color: #a4b4a9;
}

.whatsapp-float {
    position: fixed;
    z-index: 90;
    right: 22px;
    bottom: 22px;
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border: 4px solid var(--surface);
    border-radius: 50%;
    color: white;
    background: #25d366;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .2);
    transition: transform .2s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-float svg {
    width: 29px;
    fill: currentColor;
    stroke: none;
}

.mobile-cta {
    display: none;
}

@media (max-width: 1050px) {
    .desktop-nav {
        gap: 20px;
    }
    .map-link {
        display: none;
    }
    .brand-logos {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px 24px;
    }
    .hero-grid {
        gap: 42px;
    }
    .hero-copy {
        padding-inline: 34px;
    }
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card-main {
        min-height: 320px;
    }
    .systems-grid,
    .contact-grid {
        gap: 50px;
    }
    .solar-basics {
        padding-inline: 30px;
    }
    .energy-flow {
        grid-template-columns: 1fr 35px 1fr 35px 1fr 35px 1fr;
    }
    .flow-icon {
        width: 74px;
        height: 74px;
    }
    .subsidy-layout {
        gap: 38px;
    }
    .cfa-band {
        grid-template-columns: repeat(3, 1fr);
    }
    .cfa-band>a {
        grid-column: 1 / 4;
    }
    .footer-grid {
        grid-template-columns: 1.3fr repeat(3, 1fr);
        gap: 28px;
    }
}

@media (max-width: 820px) {
    .desktop-nav,
    .desktop-call {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .mobile-nav {
        position: fixed;
        inset: 80px 0 auto;
        display: flex;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        background: var(--surface);
        opacity: 0;
        transition: max-height .3s, opacity .2s, padding .3s;
    }
    .menu-open .mobile-nav {
        max-height: 410px;
        padding-block: 15px 25px;
        border-bottom: 1px solid var(--line);
        opacity: 1;
    }
    .mobile-nav a {
        padding: 12px 8px;
        border-bottom: 1px solid var(--line);
        font-weight: 700;
    }
    .mobile-nav a:last-child {
        margin-top: 12px;
        color: white;
        border: 0;
        border-radius: 10px;
        background: var(--green);
        text-align: center;
    }
    .hero {
        min-height: auto;
        padding: 125px 0 75px;
        background-position: 57% center;
    }
    .hero-grid,
    .systems-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-copy {
        width: min(100%, 680px);
        margin-inline: auto;
        text-align: center;
    }
    .eyebrow {
        justify-content: center;
    }
    h1 {
        margin-inline: auto;
    }
    .hero-lead {
        margin-inline: auto;
    }
    .hero-actions,
    .hero-proof {
        justify-content: center;
    }
    .hero-visual {
        width: min(100%, 430px);
        min-height: 270px;
        margin: 5px auto 0;
        padding-right: 0;
    }
    .solar-stat {
        right: -35px;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        padding-block: 18px;
    }
    .trust-grid>div {
        min-height: 80px;
        border-right: 0;
    }
    .trust-grid>div:nth-child(odd) {
        border-right: 1px solid var(--line);
    }
    .split-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }
    .basics-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
    .basics-heading p {
        text-align: left;
    }
    .energy-flow {
        grid-template-columns: 1fr 25px 1fr;
        row-gap: 26px;
    }
    .flow-item:nth-of-type(3) {
        grid-column: 1;
        grid-row: 3;
    }
    .flow-item:nth-of-type(4) {
        grid-column: 3;
        grid-row: 3;
    }
    .flow-arrow:nth-of-type(2) {
        display: none;
    }
    .flow-arrow:nth-of-type(3) {
        grid-column: 2;
        grid-row: 3;
    }
    .flow-note {
        grid-template-columns: 1fr;
    }
    .systems-grid {
        gap: 40px;
    }
    .guide-card {
        width: min(100%, 600px);
        margin-inline: auto;
    }
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps::before {
        display: none;
    }
    .regulation-note {
        align-items: flex-start;
        flex-direction: column;
    }
    .official-links a {
        text-align: left;
    }
    .subsidy-layout {
        grid-template-columns: 1fr;
    }
    .subsidy-copy {
        text-align: center;
    }
    .subsidy-lead {
        margin-inline: auto;
    }
    .subsidy-math {
        text-align: left;
    }
    .gallery-heading {
        align-items: flex-start;
        flex-direction: column;
    }
    .gallery-toolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }
    .project-gallery {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 115px;
    }
    .lightbox-shell {
        padding-inline: 70px;
    }
    .review-grid {
        grid-template-columns: 1fr;
    }
    .review-grid article {
        min-height: 235px;
    }
    .contact-grid {
        gap: 45px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }
    .section {
        padding: 78px 0;
    }
    .nav-wrap {
        height: 70px;
    }
    .mobile-nav {
        top: 70px;
    }
    .brand-mark {
        width: 39px;
        height: 39px;
    }
    .brand-mark svg {
        width: 24px;
    }
    .brand strong {
        font-size: 15px;
    }
    .brand small {
        font-size: 9px;
    }
    .theme-toggle,
    .menu-toggle {
        width: 38px;
        height: 38px;
    }
    .language-toggle {
        min-width: 46px;
        width: 46px;
        height: 38px;
        padding: 0 5px;
        font-size: 10px;
        border-radius: 19px;
    }
    .language-toggle svg {
        display: none;
    }
    .hero {
        padding: 105px 0 64px;
        background-position: 58% center;
    }
    .hero-copy {
        padding: 29px 20px 25px;
        border-radius: 21px;
    }
    h1 {
        font-size: 46px;
        letter-spacing: -2.8px;
    }
    .hero-lead {
        font-size: 16px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 19px;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-proof {
        margin-top: 33px;
    }
    .hero-visual {
        display: none;
    }
    .brand-strip {
        padding-block: 30px;
        overflow: hidden;
    }
    .brand-strip .container {
        width: 100%;
    }
    .brand-logos {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 0 14px 8px;
        scrollbar-width: none;
        scroll-snap-type: x proximity;
    }
    .brand-logos::-webkit-scrollbar {
        display: none;
    }
    .brand-logos a {
        min-width: 118px;
        border: 1px solid var(--line);
        background: var(--surface-2);
        scroll-snap-align: center;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .trust-grid>div {
        padding: 12px 5px !important;
        border: 0 !important;
        border-bottom: 1px solid var(--line) !important;
    }
    .trust-grid>div:last-child {
        border-bottom: 0 !important;
    }
    .section-heading h2,
    .systems h2,
    .contact h2,
    .reviews h2,
    .gallery-heading h2 {
        font-size: 37px;
        letter-spacing: -1.8px;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .service-card-main {
        min-height: 315px;
    }
    .solar-basics {
        margin-bottom: 65px;
        padding: 27px 17px 22px;
    }
    .energy-flow {
        grid-template-columns: 1fr;
        gap: 13px;
    }
    .flow-item,
    .flow-item:nth-of-type(3),
    .flow-item:nth-of-type(4) {
        grid-column: 1;
        grid-row: auto;
    }
    .flow-arrow,
    .flow-arrow:nth-of-type(2),
    .flow-arrow:nth-of-type(3) {
        display: block;
        grid-column: 1;
        grid-row: auto;
        width: 30px;
        margin: 0 auto;
        transform: rotate(90deg);
    }
    .flow-icon {
        width: 72px;
        height: 72px;
        border-radius: 20px;
    }
    .flow-icon svg {
        width: 42px;
    }
    .flow-item strong {
        margin-top: 9px;
    }
    .flow-note {
        margin-top: 23px;
    }
    .system-tabs {
        overflow-x: auto;
    }
    .system-tab {
        flex: 1 0 auto;
    }
    .system-panel {
        padding: 24px 21px;
    }
    .system-panel ul {
        grid-template-columns: 1fr;
    }
    .guide-card ol {
        padding-inline: 20px;
    }
    .steps {
        grid-template-columns: 1fr;
    }
    .steps article {
        min-height: 220px;
    }
    .regulation-note {
        padding: 22px 20px;
    }
    .regulation-note>div:first-child {
        flex-direction: column;
    }
    .subsidy-copy h2 {
        font-size: 38px;
        letter-spacing: -2px;
    }
    .subsidy-math {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .subsidy-math>span {
        transform: rotate(90deg);
    }
    .truth-card ul {
        padding-inline: 18px;
    }
    .cfa-band {
        grid-template-columns: 1fr;
    }
    .cfa-band>div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }
    .cfa-band>a {
        grid-column: 1;
    }
    .gallery-proof {
        width: 100%;
    }
    .gallery-filters {
        flex-wrap: nowrap;
        width: calc(100vw - 14px);
        margin-left: -14px;
        padding: 0 14px 6px;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .gallery-filters::-webkit-scrollbar {
        display: none;
    }
    .gallery-filter {
        flex: 0 0 auto;
    }
    .gallery-hint {
        display: none;
    }
    .project-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 102px;
        gap: 9px;
    }
    .gallery-item {
        border-radius: 13px;
    }
    .gallery-item.gallery-feature {
        grid-column: span 2;
        grid-row: span 3;
    }
    .gallery-item.gallery-wide {
        grid-column: span 2;
    }
    .gallery-item-content {
        inset: auto 12px 11px;
        opacity: 1;
        transform: none;
    }
    .gallery-item-content strong {
        font-size: 10px;
    }
    .gallery-zoom {
        width: 28px;
        height: 28px;
    }
    .lightbox-shell {
        padding: 65px 12px 25px;
    }
    .gallery-lightbox figure img {
        max-height: calc(100% - 80px);
        border-radius: 10px;
    }
    .lightbox-close {
        top: 14px;
        right: 14px;
    }
    .lightbox-nav {
        top: auto;
        bottom: 18px;
        width: 42px;
        height: 42px;
        transform: none;
    }
    .lightbox-nav:hover {
        transform: scale(1.05);
    }
    .lightbox-prev {
        left: 14px;
    }
    .lightbox-next {
        right: 14px;
    }
    .gallery-lightbox figcaption {
        padding-inline: 48px;
    }
    .reviews-head {
        align-items: flex-start;
        flex-direction: column;
    }
    blockquote {
        font-size: 16px;
    }
    .lead-form {
        padding: 26px 20px;
    }
    .field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / 3;
    }
    .footer-grid>div:last-child {
        grid-column: 1 / 3;
    }
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
    .whatsapp-float {
        display: none;
    }
    .mobile-cta {
        position: fixed;
        z-index: 95;
        inset: auto 0 0;
        display: grid;
        grid-template-columns: 1fr 1.25fr;
        padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--line);
        background: var(--surface);
        box-shadow: 0 -8px 24px rgba(0, 0, 0, .09);
    }
    .mobile-cta a {
        display: grid;
        min-height: 46px;
        place-items: center;
        color: var(--green);
        font-weight: 800;
    }
    .mobile-cta a:last-child {
        color: white;
        border-radius: 9px;
        background: #1fad5b;
    }
    footer {
        padding-bottom: 94px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}