:root {
    color-scheme: light;
    --navy-950: #061321;
    --navy-900: #07192c;
    --navy-850: #0a2239;
    --navy-800: #0c2944;
    --ink: #102238;
    --muted: #627085;
    --line: #dce4eb;
    --paper: #ffffff;
    --paper-soft: #f4f7f9;
    --electric: #f4c542;
    --electric-strong: #e7b927;
    --electric-soft: #fff6cf;
    --success: #1f7656;
    --danger: #a23b46;
    --shadow-sm: 0 14px 36px rgba(7, 25, 44, 0.07);
    --shadow-md: 0 24px 70px rgba(7, 25, 44, 0.13);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --shell: 1180px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--paper);
    color: var(--ink);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
    font: inherit;
}

button,
input,
select,
textarea {
    border: 0;
}

button,
summary,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

p,
h1,
h2,
h3 {
    margin-top: 0;
}

.site-shell {
    width: min(var(--shell), calc(100% - 48px));
    margin-inline: auto;
}

.skip-link {
    padding: 10px 16px;
    position: fixed;
    left: 18px;
    top: -80px;
    z-index: 1000;
    color: var(--navy-950);
    background: var(--electric);
    border-radius: 0 0 10px 10px;
    font-weight: 800;
}

.skip-link:focus {
    top: 0;
}

.site-header {
    min-height: 82px;
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgba(220, 228, 235, 0.88);
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.site-brand {
    min-width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-symbol {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    color: var(--navy-950);
    background: var(--electric);
    box-shadow: 0 9px 22px rgba(244, 197, 66, 0.27);
    font-size: 0.88rem;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.brand-symbol::after {
    width: 22px;
    height: 70px;
    position: absolute;
    right: -15px;
    top: -12px;
    background: rgba(255, 255, 255, 0.35);
    content: "";
    transform: rotate(28deg);
}

.brand-copy {
    display: grid;
    gap: 0;
    line-height: 1.2;
}

.brand-copy strong {
    color: var(--navy-900);
    font-size: 1.04rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.brand-copy small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    position: relative;
    color: #3e4c60;
    font-size: 0.91rem;
    font-weight: 720;
}

.desktop-nav a::after {
    height: 2px;
    position: absolute;
    right: 50%;
    bottom: 4px;
    left: 50%;
    background: var(--electric-strong);
    content: "";
    transition: right 180ms ease, left 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
    color: var(--navy-900);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
    right: 0;
    left: 0;
}

.header-cta,
.button-primary,
.form-submit {
    min-height: 50px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-950);
    background: var(--electric);
    box-shadow: 0 12px 28px rgba(244, 197, 66, 0.22);
    font-weight: 850;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta {
    padding: 0 19px;
    font-size: 0.88rem;
}

.header-cta:hover,
.button-primary:hover,
.form-submit:hover {
    background: #ffd553;
    box-shadow: 0 15px 36px rgba(244, 197, 66, 0.3);
    transform: translateY(-2px);
}

.mobile-nav {
    display: none;
}

.hero {
    min-height: 700px;
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 14% 12%, rgba(32, 93, 141, 0.24), transparent 34rem),
        linear-gradient(125deg, var(--navy-950), var(--navy-900) 58%, #0b2b48);
}

.hero::before {
    width: 62%;
    height: 1px;
    position: absolute;
    right: -8%;
    top: 19%;
    background: linear-gradient(90deg, transparent, rgba(244, 197, 66, 0.37), transparent);
    content: "";
    transform: rotate(-24deg);
}

.hero-grid {
    min-height: 700px;
    padding-block: 88px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.82fr);
    align-items: center;
    gap: clamp(56px, 8vw, 110px);
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-kicker,
.section-kicker {
    margin-bottom: 20px;
    color: var(--electric);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-kicker > span {
    width: 28px;
    height: 2px;
    background: var(--electric);
}

.hero h1 {
    max-width: 720px;
    margin-bottom: 25px;
    font-size: clamp(3.2rem, 6.4vw, 5.8rem);
    font-weight: 860;
    line-height: 0.96;
    letter-spacing: -0.065em;
}

.hero h1 em {
    color: var(--electric);
    font-style: normal;
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 34px;
    color: #cbd6e2;
    font-size: clamp(1.02rem, 1.5vw, 1.15rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.button-primary {
    min-width: 190px;
    padding: 0 24px;
}

.button-ghost {
    min-height: 50px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #e5edf5;
    font-weight: 760;
    transition: border 180ms ease, background 180ms ease;
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.06);
}

.hero-contact {
    margin-top: 45px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    display: flex;
    flex-wrap: wrap;
    gap: 26px 34px;
}

.hero-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(244, 197, 66, 0.3);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--electric);
    background: rgba(244, 197, 66, 0.07);
    font-size: 0.84rem;
    font-weight: 900;
}

.hero-contact a > span:last-child {
    min-width: 0;
    display: grid;
    line-height: 1.25;
}

.hero-contact small {
    color: #91a3b5;
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-contact strong {
    margin-top: 5px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 760;
}

.energy-panel {
    min-height: 510px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 34px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        #0b243b;
    box-shadow: 0 38px 90px rgba(0, 0, 0, 0.28);
}

.energy-panel::before {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    position: absolute;
    right: -50px;
    top: -54px;
    background: rgba(244, 197, 66, 0.12);
    content: "";
    filter: blur(3px);
}

.energy-grid {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.energy-bolt {
    width: 132px;
    height: 180px;
    position: absolute;
    right: 54px;
    top: 65px;
    filter: drop-shadow(0 0 28px rgba(244, 197, 66, 0.26));
}

.energy-bolt::before,
.energy-bolt::after {
    position: absolute;
    background: var(--electric);
    content: "";
    transform: skew(-16deg);
}

.energy-bolt::before {
    width: 46px;
    height: 112px;
    right: 42px;
    top: 0;
    clip-path: polygon(44% 0, 100% 0, 62% 100%, 0 100%);
}

.energy-bolt::after {
    width: 55px;
    height: 112px;
    right: 27px;
    bottom: 0;
    clip-path: polygon(42% 0, 100% 0, 54% 100%, 0 100%);
}

.energy-title {
    position: absolute;
    left: 42px;
    top: 44px;
    display: grid;
    line-height: 1;
}

.energy-title > span,
.energy-company > span {
    color: #91a6b9;
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.energy-title strong {
    margin: 8px 0 9px;
    color: #fff;
    font-size: 4.8rem;
    font-weight: 900;
    letter-spacing: -0.07em;
}

.energy-title small {
    max-width: 120px;
    color: #c9d5e0;
    font-size: 0.77rem;
    line-height: 1.45;
}

.energy-company {
    width: calc(100% - 84px);
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    position: absolute;
    left: 42px;
    bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(6, 19, 33, 0.52);
    backdrop-filter: blur(12px);
}

.energy-company strong {
    color: var(--electric);
    font-size: 1.8rem;
    line-height: 1;
}

.energy-values {
    position: absolute;
    right: 42px;
    bottom: 43px;
    left: 42px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #cbd6e2;
    font-size: 0.7rem;
    font-weight: 760;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.energy-values span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.energy-values span::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--electric);
    content: "";
}

.trust-strip {
    position: relative;
    z-index: 3;
    background: var(--electric);
}

.trust-grid {
    min-height: 112px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.trust-grid p {
    margin: 0;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-grid p + p {
    border-left: 1px solid rgba(7, 25, 44, 0.17);
}

.trust-grid p > strong {
    color: rgba(7, 25, 44, 0.42);
    font-size: 0.76rem;
}

.trust-grid p > span {
    display: grid;
    line-height: 1.25;
}

.trust-grid b {
    color: var(--navy-950);
    font-size: 0.98rem;
}

.trust-grid small {
    margin-top: 5px;
    color: #3f3d32;
    font-size: 0.74rem;
}

.section {
    padding-block: clamp(86px, 10vw, 132px);
}

.services-section {
    background:
        radial-gradient(circle at 100% 0%, rgba(244, 197, 66, 0.12), transparent 28rem),
        var(--paper-soft);
}

.section-heading-public {
    margin-bottom: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 54px;
}

.section-heading-public > div {
    max-width: 680px;
}

.section-kicker {
    margin-bottom: 14px;
    color: #876500;
}

.section-heading-public h2,
.about-copy h2,
.contact-copy h2,
.legal-hero h1 {
    margin-bottom: 0;
    color: var(--navy-900);
    font-size: clamp(2.35rem, 4.6vw, 4.2rem);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.section-heading-public > p {
    max-width: 390px;
    margin: 0;
    color: var(--muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.service-card {
    min-height: 330px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-sm);
    transition: transform 180ms ease, border 180ms ease, box-shadow 180ms ease;
}

.service-card:nth-child(-n+3) {
    grid-column: span 2;
}

.service-card:nth-child(n+4) {
    grid-column: span 3;
}

.service-card:hover {
    border-color: #c7b257;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.service-card::after {
    width: 86px;
    height: 86px;
    border: 18px solid rgba(244, 197, 66, 0.09);
    border-radius: 50%;
    position: absolute;
    right: -31px;
    top: -33px;
    content: "";
}

.service-number {
    position: absolute;
    right: 25px;
    top: 22px;
    color: #a5b0bc;
    font-size: 0.7rem;
    font-weight: 800;
}

.service-symbol {
    width: 56px;
    height: 56px;
    margin-bottom: 35px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    background: var(--electric-soft);
}

.service-symbol > span {
    width: 18px;
    height: 30px;
    background: var(--electric-strong);
    clip-path: polygon(44% 0, 100% 0, 64% 44%, 100% 44%, 24% 100%, 42% 56%, 0 56%);
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--navy-900);
    font-size: 1.18rem;
    font-weight: 850;
    letter-spacing: -0.025em;
}

.service-card p {
    margin-bottom: 25px;
    color: var(--muted);
    font-size: 0.9rem;
}

.service-card a {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy-800);
    font-size: 0.83rem;
    font-weight: 800;
}

.service-card a span {
    color: #a07804;
    transition: transform 180ms ease;
}

.service-card a:hover span {
    transform: translateX(4px);
}

.about-section {
    overflow: hidden;
    background: var(--paper);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(390px, 0.86fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(60px, 10vw, 130px);
}

.about-visual {
    min-height: 560px;
    position: relative;
}

.about-frame {
    height: 520px;
    border-radius: 32px;
    position: relative;
    display: grid;
    place-content: center;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(145deg, var(--navy-950), #103453);
    background-size: 42px 42px, 42px 42px, auto;
    box-shadow: var(--shadow-md);
}

.about-frame::before {
    width: 260px;
    height: 260px;
    border: 52px solid rgba(244, 197, 66, 0.12);
    border-radius: 50%;
    position: absolute;
    left: -100px;
    bottom: -88px;
    content: "";
}

.about-frame > strong {
    position: relative;
    z-index: 2;
    color: var(--electric);
    font-size: 6.6rem;
    font-weight: 950;
    line-height: 0.85;
    letter-spacing: -0.09em;
}

.about-frame > small {
    margin-top: 12px;
    position: relative;
    z-index: 2;
    color: #cbd8e3;
    font-size: 0.82rem;
    font-weight: 750;
    letter-spacing: 0.2em;
    text-align: center;
    text-transform: uppercase;
}

.wire {
    height: 3px;
    border-radius: 10px;
    position: absolute;
    right: -30px;
    background: var(--electric);
    transform-origin: right center;
}

.wire::before {
    width: 10px;
    height: 10px;
    border: 2px solid var(--electric);
    border-radius: 50%;
    position: absolute;
    left: -9px;
    top: -4px;
    content: "";
}

.wire-one {
    width: 54%;
    top: 25%;
    transform: rotate(-14deg);
}

.wire-two {
    width: 38%;
    top: 40%;
    transform: rotate(8deg);
}

.wire-three {
    width: 47%;
    bottom: 22%;
    transform: rotate(-6deg);
}

.about-year {
    width: 190px;
    min-height: 125px;
    padding: 22px;
    border-radius: 18px;
    position: absolute;
    right: -24px;
    bottom: 10px;
    display: grid;
    color: var(--navy-950);
    background: var(--electric);
    box-shadow: 0 18px 40px rgba(7, 25, 44, 0.22);
}

.about-year strong {
    font-size: 2.3rem;
    line-height: 1;
}

.about-year span {
    margin-top: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
}

.about-copy h2 {
    margin-bottom: 28px;
}

.about-copy > p:not(.section-kicker) {
    color: var(--muted);
}

.about-copy .about-intro {
    color: var(--ink);
    font-size: 1.12rem;
    font-weight: 620;
}

.approach-list {
    margin-top: 32px;
    border-top: 1px solid var(--line);
}

.approach-list > div {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: start;
    gap: 14px;
}

.approach-list > div > span {
    color: #806000;
    font-size: 0.74rem;
    font-weight: 850;
}

.approach-list p {
    margin: 0;
    display: grid;
    gap: 4px;
}

.approach-list strong {
    color: var(--navy-900);
}

.approach-list small {
    color: var(--muted);
    font-size: 0.84rem;
}

.projects-section {
    color: #fff;
    background: var(--navy-900);
}

.projects-section .section-heading-public h2 {
    color: #fff;
}

.projects-section .section-heading-public > p {
    color: #9eb0c1;
}

.projects-section .section-kicker {
    color: var(--electric);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.project-card {
    min-height: 310px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    background: #0b243b;
}

.project-card.has-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform 360ms ease;
}

.project-card.has-image:hover img {
    transform: scale(1.035);
}

.image-placeholder {
    display: grid;
    place-content: center;
    gap: 15px;
    text-align: center;
    background:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
        #0b243b;
    background-size: 34px 34px;
}

.placeholder-icon {
    width: 62px;
    height: 48px;
    margin-inline: auto;
    border: 2px solid rgba(244, 197, 66, 0.6);
    border-radius: 11px;
    position: relative;
}

.placeholder-icon::before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    right: 9px;
    top: 8px;
    background: var(--electric);
    content: "";
}

.placeholder-icon::after {
    position: absolute;
    inset: 19px 8px 7px;
    background: rgba(244, 197, 66, 0.42);
    clip-path: polygon(0 100%, 38% 10%, 58% 62%, 76% 25%, 100% 100%);
    content: "";
}

.image-placeholder figcaption {
    color: #b9c7d4;
    font-size: 0.85rem;
    font-weight: 700;
}

.project-index {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    position: absolute;
    right: 16px;
    top: 16px;
    display: grid;
    place-items: center;
    color: var(--navy-950);
    background: var(--electric);
    font-size: 0.7rem;
    font-weight: 900;
}

.contact-section {
    padding-block: clamp(82px, 10vw, 128px);
    color: #fff;
    background:
        radial-gradient(circle at 10% 10%, rgba(244, 197, 66, 0.1), transparent 25rem),
        var(--navy-950);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.08fr);
    align-items: start;
    gap: clamp(55px, 8vw, 100px);
}

.light-kicker {
    color: var(--electric);
}

.contact-copy h2 {
    margin-bottom: 24px;
    color: #fff;
}

.contact-copy > p:not(.section-kicker) {
    max-width: 490px;
    color: #9fb0c0;
}

.contact-direct {
    margin-top: 45px;
    display: grid;
}

.contact-direct > a,
.contact-direct > div {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 14px;
}

.contact-direct > * > span {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(244, 197, 66, 0.28);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--electric);
    background: rgba(244, 197, 66, 0.07);
    font-size: 0.8rem;
    font-weight: 900;
}

.contact-direct p {
    margin: 0;
    display: grid;
    min-width: 0;
}

.contact-direct small {
    color: #8094a6;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-direct strong {
    margin-top: 4px;
    overflow-wrap: anywhere;
    color: #fff;
    font-size: 0.94rem;
}

.contact-form-card {
    padding: clamp(28px, 4.5vw, 48px);
    border-radius: var(--radius-lg);
    color: var(--ink);
    background: #fff;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
}

.contact-form-card form {
    display: grid;
    gap: 20px;
}

.public-form-grid {
    display: grid;
    gap: 18px;
}

.two-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form-card label:not(.privacy-check) {
    display: grid;
    gap: 8px;
    color: var(--navy-900);
    font-size: 0.83rem;
    font-weight: 780;
}

.contact-form-card label > span {
    color: var(--danger);
}

.contact-form-card input:not([type="checkbox"]),
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid #d2dce5;
    border-radius: 11px;
    padding: 12px 14px;
    color: var(--ink);
    background: #f9fbfc;
    outline: 0;
    transition: border 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form-card textarea {
    min-height: 142px;
    resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    border-color: #b39126;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(244, 197, 66, 0.17);
}

.privacy-check {
    display: grid;
    grid-template-columns: 19px 1fr;
    align-items: start;
    gap: 10px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 560;
    line-height: 1.55;
}

.privacy-check input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--electric-strong);
}

.privacy-check span {
    color: var(--muted);
}

.privacy-check a {
    color: #765c0c;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.privacy-check b {
    color: var(--danger);
}

.form-legal-note {
    margin: -6px 0 0;
    color: #788697;
    font-size: 0.7rem;
}

.form-legal-note strong {
    color: #8c6910;
}

.form-submit {
    width: 100%;
    min-height: 54px;
    padding: 0 24px;
    cursor: pointer;
}

.form-submit span {
    margin-left: 9px;
}

.form-honeypot {
    width: 1px;
    height: 1px;
    position: absolute;
    left: -10000px;
    overflow: hidden;
}

.form-success,
.form-errors {
    margin-bottom: 22px;
    padding: 15px 17px;
    border-radius: 12px;
    display: grid;
    gap: 5px;
    font-size: 0.84rem;
}

.form-success {
    border: 1px solid #badfce;
    color: #175b42;
    background: #edf9f3;
}

.form-errors {
    border: 1px solid #ecc8cc;
    color: #87323b;
    background: #fff2f3;
}

.form-errors ul {
    margin: 4px 0 0;
    padding-left: 20px;
}

.pending-value {
    width: fit-content;
    border: 1px dashed #bf9215;
    border-radius: 7px;
    padding: 3px 8px;
    color: #76580a;
    background: #fff8d9;
    font-weight: 760;
}

.dark-pending {
    color: #ffe186 !important;
    background: rgba(244, 197, 66, 0.09);
}

.site-footer {
    padding-top: 68px;
    color: #c8d2dd;
    background: #040e19;
}

.footer-grid {
    padding-bottom: 54px;
    display: grid;
    grid-template-columns: 1.45fr 0.75fr 1fr;
    gap: 70px;
}

.footer-logo .brand-copy strong {
    color: #fff;
}

.footer-logo .brand-copy small {
    color: #8091a2;
}

.footer-brand > p {
    max-width: 400px;
    margin: 20px 0 0;
    color: #8596a7;
    font-size: 0.87rem;
}

.site-footer h2 {
    margin: 4px 0 19px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-links {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    list-style: none;
}

.footer-links li,
.footer-links a {
    color: #94a3b2;
    font-size: 0.82rem;
}

.footer-links a:hover {
    color: var(--electric);
}

.contact-links li,
.contact-links a {
    overflow-wrap: anywhere;
}

.contact-links .pending-value {
    color: #d9bc68;
    background: rgba(244, 197, 66, 0.06);
}

.footer-bottom {
    min-height: 76px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-bottom p {
    margin: 0;
    color: #718395;
    font-size: 0.72rem;
}

.footer-bottom nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.footer-bottom a {
    color: #8293a4;
    font-size: 0.72rem;
}

.footer-bottom a:hover {
    color: var(--electric);
}

.legal-hero {
    padding-block: 84px 72px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 10%, rgba(244, 197, 66, 0.16), transparent 24rem),
        var(--navy-900);
}

.legal-hero .section-kicker {
    color: var(--electric);
}

.legal-hero h1 {
    max-width: 820px;
    color: #fff;
}

.legal-hero-inner > p:last-child {
    max-width: 720px;
    margin: 22px 0 0;
    color: #aebdca;
}

.legal-content {
    padding-block: 72px 100px;
    background: var(--paper-soft);
}

.legal-grid {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    align-items: start;
    gap: 48px;
}

.legal-summary {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    position: sticky;
    top: 110px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.legal-summary strong {
    display: block;
    margin-bottom: 12px;
    color: var(--navy-900);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.legal-summary nav {
    display: grid;
    gap: 9px;
}

.legal-summary a {
    color: var(--muted);
    font-size: 0.8rem;
}

.legal-summary a:hover {
    color: #856407;
}

.legal-notice {
    margin-top: 18px;
    padding: 12px;
    border: 1px dashed #d0a52a;
    border-radius: 10px;
    color: #715609;
    background: #fff8d9;
    font-size: 0.72rem;
    line-height: 1.45;
}

.legal-articles {
    display: grid;
    gap: 20px;
}

.legal-card {
    padding: clamp(25px, 4vw, 42px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.legal-card h2 {
    margin-bottom: 19px;
    color: var(--navy-900);
    font-size: 1.42rem;
    letter-spacing: -0.025em;
}

.legal-card h3 {
    margin: 24px 0 9px;
    color: var(--navy-800);
    font-size: 1rem;
}

.legal-card p,
.legal-card li {
    color: #586779;
    font-size: 0.9rem;
}

.legal-card p:last-child {
    margin-bottom: 0;
}

.legal-card a {
    color: #765b0d;
    font-weight: 760;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-card dl {
    margin: 0;
    display: grid;
    grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
    gap: 0;
}

.legal-card dt,
.legal-card dd {
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px solid #edf0f3;
    text-align: left;
}

.legal-card dt {
    color: var(--muted);
    font-size: 0.8rem;
}

.legal-card dd {
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 720;
}

.legal-value {
    display: inline-block;
}

.legal-value.pending-value {
    padding: 4px 8px;
}

.legal-table-wrap {
    overflow-x: auto;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.84rem;
}

.legal-table th,
.legal-table td {
    padding: 13px 14px;
    border: 1px solid var(--line);
    vertical-align: top;
    text-align: left;
}

.legal-table th {
    color: var(--navy-900);
    background: #f4f7f9;
}

:focus-visible {
    outline: 3px solid rgba(244, 197, 66, 0.58);
    outline-offset: 3px;
}

@media (max-width: 1080px) {
    .desktop-nav {
        gap: 18px;
    }

    .desktop-nav a {
        font-size: 0.85rem;
    }

    .header-cta {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(350px, 0.78fr);
        gap: 50px;
    }

    .hero h1 {
        font-size: clamp(3.1rem, 6vw, 4.5rem);
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card:nth-child(n) {
        grid-column: span 1;
    }

    .service-card:last-child {
        grid-column: span 2;
    }

    .contact-grid {
        grid-template-columns: 0.78fr 1.1fr;
        gap: 50px;
    }
}

@media (max-width: 860px) {
    html {
        scroll-padding-top: 76px;
    }

    .site-shell {
        width: min(100% - 36px, var(--shell));
    }

    .site-header,
    .header-inner {
        min-height: 74px;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .mobile-nav {
        margin-left: auto;
        display: block;
        position: relative;
    }

    .mobile-nav summary {
        width: 46px;
        height: 46px;
        border: 1px solid var(--line);
        border-radius: 12px;
        display: grid;
        place-content: center;
        gap: 5px;
        cursor: pointer;
        list-style: none;
    }

    .mobile-nav summary::-webkit-details-marker {
        display: none;
    }

    .mobile-nav summary span {
        width: 20px;
        height: 2px;
        border-radius: 4px;
        display: block;
        background: var(--navy-900);
    }

    .mobile-nav nav {
        width: min(300px, calc(100vw - 36px));
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 15px;
        position: absolute;
        right: 0;
        top: calc(100% + 10px);
        display: grid;
        background: #fff;
        box-shadow: var(--shadow-md);
    }

    .mobile-nav nav a {
        min-height: 46px;
        padding: 0 13px;
        border-radius: 9px;
        display: flex;
        align-items: center;
        color: var(--navy-900);
        font-weight: 750;
    }

    .mobile-nav nav a:hover,
    .mobile-nav nav a[aria-current="page"] {
        background: var(--electric-soft);
    }

    .hero,
    .hero-grid {
        min-height: auto;
    }

    .hero-grid {
        padding-block: 76px;
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 720px;
    }

    .energy-panel {
        min-height: 470px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid p {
        min-height: 86px;
        padding: 18px 0;
    }

    .trust-grid p + p {
        border-top: 1px solid rgba(7, 25, 44, 0.17);
        border-left: 0;
    }

    .section-heading-public {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .section-heading-public > p {
        max-width: 620px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        max-width: 580px;
    }

    .contact-copy {
        max-width: 680px;
    }

    .legal-grid {
        grid-template-columns: 1fr;
    }

    .legal-summary {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1.3fr 0.7fr;
        gap: 45px;
    }

    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .site-shell {
        width: min(100% - 28px, var(--shell));
    }

    .brand-symbol {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .brand-copy strong {
        font-size: 0.97rem;
    }

    .brand-copy small {
        font-size: 0.61rem;
    }

    .hero-grid {
        padding-block: 62px;
    }

    .hero h1 {
        font-size: clamp(2.9rem, 14vw, 4rem);
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button-primary,
    .button-ghost {
        width: 100%;
    }

    .hero-contact {
        flex-direction: column;
    }

    .hero-contact strong {
        overflow-wrap: anywhere;
    }

    .energy-panel {
        min-height: 430px;
    }

    .energy-title {
        left: 28px;
        top: 32px;
    }

    .energy-title strong {
        font-size: 3.8rem;
    }

    .energy-bolt {
        right: 14px;
        transform: scale(0.8);
        transform-origin: top right;
    }

    .energy-company {
        width: calc(100% - 56px);
        left: 28px;
        bottom: 91px;
    }

    .energy-values {
        right: 28px;
        bottom: 34px;
        left: 28px;
        gap: 7px;
        font-size: 0.59rem;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .service-card:nth-child(n) {
        grid-column: span 1;
    }

    .service-card {
        min-height: 300px;
    }

    .about-visual {
        min-height: 455px;
    }

    .about-frame {
        height: 430px;
    }

    .about-frame > strong {
        font-size: 5.4rem;
    }

    .about-year {
        width: 165px;
        min-height: 110px;
        right: -5px;
    }

    .two-fields {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        border-radius: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        padding-block: 24px;
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom nav {
        justify-content: flex-start;
    }

    .legal-hero {
        padding-block: 60px 54px;
    }

    .legal-content {
        padding-block: 48px 72px;
    }

    .legal-card dl {
        grid-template-columns: 1fr;
    }

    .legal-card dt {
        padding-bottom: 4px;
        border-bottom: 0;
    }

    .legal-card dd {
        padding-top: 0;
    }
}

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