/*
 * Buzyniski Electric
 * Custom green-and-blue electrical grid design.
 */

/* --------------------------------------------------------------------------
   1. Design tokens and reset
   -------------------------------------------------------------------------- */

:root {
    --navy-950: #06142f;
    --navy-900: #091c3f;
    --navy-800: #102a55;
    --navy-700: #173c70;
    --blue-600: #246b9f;
    --blue-500: #3183b6;
    --green-700: #087844;
    --green-600: #0b9454;
    --green-500: #12a961;
    --green-400: #48c781;
    --lime-400: #b8df4c;
    --lime-300: #cbe96f;
    --mint-100: #e8f6ef;
    --mint-50: #f3faf7;
    --ice-100: #edf5fa;
    --ink: #111a2b;
    --muted: #5e6b7d;
    --line: #d9e4e9;
    --surface: #ffffff;
    --surface-soft: #f6f9fb;
    --danger: #c84545;
    --shadow-sm: 0 10px 30px rgba(5, 20, 47, 0.08);
    --shadow-md: 0 20px 55px rgba(5, 20, 47, 0.14);
    --shadow-lg: 0 32px 80px rgba(5, 20, 47, 0.22);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --container: 1240px;
    --header-height: 94px;
    --transition: 180ms ease;

    /* HubSpot form tokens. These style forms made with HubSpot's current editor. */
    --hsf-global__font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --hsf-global__font-size: 16px;
    --hsf-global__color: #111a2b;
    --hsf-global-error__color: #c84545;
    --hsf-row__horizontal-spacing: 14px;
    --hsf-row__vertical-spacing: 17px;
    --hsf-module__vertical-spacing: 17px;
    --hsf-background__background-color: transparent;
    --hsf-background__border-width: 0;
    --hsf-background__padding: 0;
    --hsf-button__font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --hsf-button__font-size: 16px;
    --hsf-button__color: #ffffff;
    --hsf-button__background-color: #0b9454;
    --hsf-button__background-image: none;
    --hsf-button__border-radius: 8px;
    --hsf-button__padding: 14px 24px;
    --hsf-button__box-shadow: 0 10px 24px rgba(11, 148, 84, 0.2);
    --hsf-field-label__font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --hsf-field-label__font-size: 13px;
    --hsf-field-label__color: #091c3f;
    --hsf-field-label-requiredindicator__color: #c84545;
    --hsf-field-input__font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --hsf-field-input__color: #111a2b;
    --hsf-field-input__background-color: #ffffff;
    --hsf-field-input__placeholder-color: #6d7989;
    --hsf-field-input__border-color: #cbd8df;
    --hsf-field-input__border-width: 1px;
    --hsf-field-input__border-style: solid;
    --hsf-field-input__border-radius: 8px;
    --hsf-field-input__padding: 13px 14px;
    --hsf-field-textarea__font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --hsf-field-textarea__color: #111a2b;
    --hsf-field-textarea__background-color: #ffffff;
    --hsf-field-textarea__placeholder-color: #6d7989;
    --hsf-field-textarea__border-color: #cbd8df;
    --hsf-field-textarea__border-width: 1px;
    --hsf-field-textarea__border-style: solid;
    --hsf-field-textarea__border-radius: 8px;
    --hsf-field-textarea__padding: 13px 14px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

img {
    height: auto;
}

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

button {
    cursor: pointer;
}

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

a:hover,
a:focus-visible {
    color: var(--green-600);
}

p,
ul,
ol,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.65em;
    color: var(--navy-950);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.2rem);
}

h2 {
    font-size: clamp(2.2rem, 4.5vw, 4.2rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

::selection {
    color: var(--navy-950);
    background: var(--lime-300);
}

/* --------------------------------------------------------------------------
   2. Accessibility and layout utilities
   -------------------------------------------------------------------------- */

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
    z-index: 100000;
    top: 8px;
    left: 8px;
    width: auto;
    height: auto;
    padding: 12px 16px;
    margin: 0;
    overflow: visible;
    clip: auto;
    color: #fff;
    background: var(--navy-950);
    border-radius: 8px;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: clamp(76px, 9vw, 132px) 0;
}

.section--pull-up {
    z-index: 5;
    padding-top: 0;
    margin-top: -62px;
}

.section--navy {
    color: rgba(255, 255, 255, 0.8);
    background: var(--navy-950);
}

.section--mint {
    background: var(--mint-50);
}

.section-copy {
    max-width: 625px;
}

.section-copy > p {
    color: var(--muted);
    font-size: 1.05rem;
}

.section-copy--light h2,
.section-copy--light h3 {
    color: #fff;
}

.section-copy--light > p {
    color: rgba(255, 255, 255, 0.72);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(48px, 8vw, 108px);
    align-items: center;
}

.split-layout--image-wide {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.split-layout--reverse > :first-child {
    order: 2;
}

.split-layout--reverse > :last-child {
    order: 1;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 56px;
    align-items: end;
    margin-bottom: clamp(40px, 6vw, 72px);
}

.section-heading h2 {
    max-width: 820px;
    margin-bottom: 0;
}

.section-heading > p {
    margin-bottom: 0;
    color: var(--muted);
}

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

.section-heading--light > p {
    color: rgba(255, 255, 255, 0.68);
}

.eyebrow {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--green-700);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--green-500), var(--lime-400));
}

.eyebrow .buz-icon {
    width: 17px;
    height: 17px;
}

.eyebrow:has(.buz-icon)::before {
    display: none;
}

.eyebrow--light {
    color: var(--lime-300);
}

.eyebrow--light::before {
    background: var(--lime-300);
}

.buz-icon {
    width: 1.25em;
    height: 1.25em;
    flex: 0 0 auto;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.button {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 22px;
    color: #fff;
    background: var(--navy-950);
    border: 2px solid transparent;
    border-radius: 10px 2px 10px 2px;
    font-size: 0.93rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.button:hover,
.button:focus-visible {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(5, 20, 47, 0.2);
}

.button .buz-icon {
    width: 18px;
    height: 18px;
}

.button--large {
    min-height: 57px;
    padding: 16px 28px;
}

.button--primary {
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
}

.button--primary:hover,
.button--primary:focus-visible {
    background: linear-gradient(135deg, var(--green-500), var(--green-700));
}

.button--secondary {
    background: var(--navy-900);
}

.button--secondary:hover,
.button--secondary:focus-visible {
    background: var(--navy-700);
}

.button--lime {
    color: var(--navy-950);
    background: var(--lime-400);
}

.button--lime:hover,
.button--lime:focus-visible {
    color: var(--navy-950);
    background: var(--lime-300);
}

.button--outline-light {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.48);
}

.button--outline-light:hover,
.button--outline-light:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.text-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--green-700);
    font-size: 0.94rem;
    font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
    gap: 13px;
    color: var(--navy-900);
}

.text-link .buz-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}

.text-link--large {
    font-size: 1.02rem;
}

.check-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 30px 0 34px;
    list-style: none;
}

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

.check-list li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    color: var(--ink);
    font-weight: 650;
}

.check-list .buz-icon {
    width: 21px;
    height: 21px;
    margin-top: 2px;
    padding: 4px;
    color: #fff;
    background: var(--green-600);
    border-radius: 50%;
}

.check-list--light li {
    color: rgba(255, 255, 255, 0.84);
}

.check-list--light .buz-icon {
    color: var(--navy-950);
    background: var(--lime-400);
}

/* --------------------------------------------------------------------------
   3. Utility bar and header
   -------------------------------------------------------------------------- */

.utility-bar {
    color: rgba(255, 255, 255, 0.78);
    background: var(--navy-950);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
}

.utility-bar__inner {
    display: flex;
    min-height: 38px;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}

.utility-bar__message,
.utility-bar__actions,
.utility-chip,
.utility-note,
.utility-phone {
    display: flex;
    gap: 8px;
    align-items: center;
}

.utility-bar__message {
    gap: 22px;
}

.utility-chip {
    color: #fff;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.utility-note {
    color: rgba(255, 255, 255, 0.62);
}

.utility-bar .buz-icon {
    width: 15px;
    height: 15px;
    color: var(--green-400);
}

.utility-phone {
    color: #fff;
    font-weight: 800;
}

.utility-phone:hover,
.utility-phone:focus-visible,
.utility-social:hover,
.utility-social:focus-visible {
    color: var(--lime-300);
}

.utility-social {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.site-header {
    position: relative;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(9, 28, 63, 0.09);
}

.site-header.is-sticky {
    position: sticky;
    top: 0;
    box-shadow: 0 8px 30px rgba(5, 20, 47, 0.08);
}

.admin-bar .site-header.is-sticky {
    top: 32px;
}

.site-header__inner {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr) auto;
    min-height: var(--header-height);
    gap: 24px;
    align-items: center;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.site-logo {
    display: block;
    width: 225px;
    max-width: 100%;
    height: 72px;
    object-fit: contain;
    object-position: left center;
}

.main-navigation {
    justify-self: end;
}

.main-navigation ul {
    display: flex;
    padding: 0;
    margin: 0;
    gap: 3px;
    align-items: center;
    list-style: none;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: flex;
    min-height: 48px;
    padding: 13px 11px;
    align-items: center;
    color: var(--navy-900);
    font-size: 0.85rem;
    font-weight: 760;
    line-height: 1.2;
    white-space: nowrap;
}

.main-navigation > .menu > li > a::after {
    position: absolute;
    right: 12px;
    bottom: 5px;
    left: 12px;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--green-500), var(--blue-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.main-navigation > .menu > li:hover > a::after,
.main-navigation > .menu > li.current-menu-item > a::after,
.main-navigation > .menu > li.current-menu-ancestor > a::after,
.main-navigation > .menu > li > a:focus-visible::after {
    transform: scaleX(1);
}

.main-navigation .menu-item-has-children > a {
    gap: 6px;
}

.main-navigation .menu-item-has-children > a::before {
    order: 2;
    width: 6px;
    height: 6px;
    content: "";
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}

.main-navigation .sub-menu {
    position: absolute;
    z-index: 50;
    top: calc(100% + 12px);
    left: 0;
    display: grid;
    width: 235px;
    padding: 10px;
    gap: 2px;
    visibility: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.main-navigation .sub-menu::before {
    position: absolute;
    top: -12px;
    right: 0;
    left: 0;
    height: 12px;
    content: "";
}

.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.main-navigation .sub-menu a {
    min-height: 0;
    padding: 12px 14px;
    border-radius: 8px;
    white-space: normal;
}

.main-navigation .sub-menu a:hover,
.main-navigation .sub-menu a:focus-visible {
    color: var(--navy-950);
    background: var(--mint-100);
}

.site-header__cta {
    justify-self: end;
}

.button--header {
    min-height: 48px;
    padding-inline: 19px;
}

.menu-toggle {
    display: none;
    padding: 0;
    color: var(--navy-950);
    background: transparent;
    border: 0;
}

.menu-toggle__label {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.menu-toggle__lines {
    display: grid;
    width: 28px;
    gap: 5px;
}

.menu-toggle__lines span {
    display: block;
    height: 2px;
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition);
}

/* --------------------------------------------------------------------------
   4. Homepage hero
   -------------------------------------------------------------------------- */

.hero {
    position: relative;
    overflow: hidden;
}

.hero--home {
    min-height: 720px;
    color: #fff;
    background:
        radial-gradient(circle at 78% 28%, rgba(49, 131, 182, 0.24), transparent 28%),
        linear-gradient(125deg, var(--navy-950) 0%, var(--navy-900) 54%, #0a3551 100%);
}

.hero__grid-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.2;
    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(90deg, transparent 0, #000 45%, #000 100%);
}

.hero__grid-pattern::after {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 54%;
    height: 64%;
    content: "";
    border: 1px solid rgba(72, 199, 129, 0.26);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(72, 199, 129, 0.04), 0 0 0 140px rgba(49, 131, 182, 0.04);
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    min-height: 720px;
    gap: 30px;
    align-items: center;
    padding-top: 55px;
    padding-bottom: 108px;
}

.hero__copy {
    max-width: 770px;
}

.hero__copy h1 {
    max-width: 760px;
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(3.4rem, 6.4vw, 6rem);
}

.hero__copy h1 span {
    display: block;
    color: var(--lime-300);
}

.hero__copy > p {
    max-width: 690px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.08rem;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 34px;
}

.hero__trust span {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 700;
}

.hero__trust .buz-icon {
    width: 18px;
    height: 18px;
    color: var(--green-400);
}

.hero__visual {
    position: relative;
    min-height: 540px;
}

.hero__power-ring {
    position: absolute;
    z-index: 0;
    top: 8%;
    right: -16%;
    width: 550px;
    height: 550px;
    border: 2px solid rgba(72, 199, 129, 0.35);
    border-radius: 50%;
}

.hero__power-ring::before,
.hero__power-ring::after {
    position: absolute;
    content: "";
    border-radius: inherit;
}

.hero__power-ring::before {
    inset: 52px;
    border: 1px dashed rgba(203, 233, 111, 0.3);
}

.hero__power-ring::after {
    inset: 112px;
    background: radial-gradient(circle, rgba(18, 169, 97, 0.16), transparent 68%);
    border: 1px solid rgba(49, 131, 182, 0.28);
}

.hero__power-ring span {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--lime-400);
    border: 4px solid var(--navy-900);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(184, 223, 76, 0.7);
}

.hero__power-ring span:nth-child(1) {
    top: 28px;
    left: 148px;
}

.hero__power-ring span:nth-child(2) {
    right: 35px;
    bottom: 150px;
}

.hero__power-ring span:nth-child(3) {
    bottom: 18px;
    left: 185px;
}

.hero__generator {
    position: absolute;
    z-index: 2;
    right: -34px;
    bottom: 8px;
    width: min(620px, 115%);
    filter: drop-shadow(0 32px 30px rgba(0, 0, 0, 0.35));
}

.hero__status-card {
    position: absolute;
    z-index: 4;
    right: 8px;
    bottom: 48px;
    display: flex;
    max-width: 260px;
    padding: 16px 19px;
    gap: 12px;
    align-items: center;
    color: var(--navy-950);
    background: rgba(255, 255, 255, 0.94);
    border-left: 4px solid var(--green-500);
    border-radius: 8px 2px 8px 2px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
}

.hero__status-card strong,
.hero__status-card small {
    display: block;
}

.hero__status-card strong {
    font-size: 0.86rem;
}

.hero__status-card small {
    color: var(--muted);
    font-size: 0.72rem;
}

.status-dot {
    position: relative;
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    background: var(--green-500);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(18, 169, 97, 0.15);
}

.hero__angle {
    position: absolute;
    right: -5%;
    bottom: -95px;
    left: -5%;
    height: 160px;
    background: #fff;
    transform: rotate(-2.5deg);
    transform-origin: center;
}

/* --------------------------------------------------------------------------
   5. Service switcher and cards
   -------------------------------------------------------------------------- */

.service-switcher__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(5, 20, 47, 0.08);
    border-radius: 16px 3px 16px 3px;
    box-shadow: var(--shadow-md);
}

.service-tile {
    position: relative;
    min-height: 315px;
    padding: 34px 28px 30px;
    overflow: hidden;
    background: #fff;
    border-right: 1px solid var(--line);
    transition: transform var(--transition), background var(--transition), color var(--transition);
}

.service-tile:last-child {
    border-right: 0;
}

.service-tile::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 96px;
    height: 7px;
    content: "";
    background: var(--green-500);
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.service-tile::after {
    position: absolute;
    right: -35px;
    bottom: -35px;
    width: 120px;
    height: 120px;
    content: "";
    border: 18px solid rgba(18, 169, 97, 0.08);
    border-radius: 50%;
}

.service-tile:hover,
.service-tile:focus-visible {
    z-index: 2;
    color: var(--ink);
    background: var(--mint-50);
    transform: translateY(-8px);
}

.service-tile--blue::before {
    background: var(--blue-500);
}

.service-tile--navy::before {
    background: var(--navy-700);
}

.service-tile--mint::before {
    background: var(--lime-400);
}

.service-tile__number {
    position: absolute;
    top: 23px;
    right: 18px;
    color: rgba(9, 28, 63, 0.12);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.icon-box,
.feature-card__icon {
    display: grid;
    width: 50px;
    height: 50px;
    margin-bottom: 27px;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--green-500), var(--green-700));
    border-radius: 13px 3px 13px 3px;
    box-shadow: 0 10px 24px rgba(11, 148, 84, 0.22);
}

.service-tile--blue .icon-box {
    background: linear-gradient(135deg, var(--blue-500), var(--navy-700));
}

.service-tile--navy .icon-box {
    background: linear-gradient(135deg, var(--navy-700), var(--navy-950));
}

.service-tile--mint .icon-box {
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--lime-300), var(--green-400));
}

.icon-box .buz-icon,
.feature-card__icon .buz-icon {
    width: 25px;
    height: 25px;
}

.service-tile h2 {
    margin-bottom: 13px;
    font-size: 1.35rem;
    letter-spacing: -0.025em;
}

.service-tile p {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 0.91rem;
    line-height: 1.55;
}

.feature-card-grid {
    display: grid;
    gap: 22px;
}

.feature-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
    position: relative;
    padding: 32px 28px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px 3px 16px 3px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card::after {
    position: absolute;
    right: -28px;
    bottom: -28px;
    width: 84px;
    height: 84px;
    content: "";
    border: 14px solid rgba(18, 169, 97, 0.07);
    border-radius: 50%;
}

.feature-card:hover {
    border-color: rgba(11, 148, 84, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 0.94rem;
}

.feature-card--alert .feature-card__icon {
    background: linear-gradient(135deg, #d45c3d, #9f2937);
    box-shadow: 0 10px 24px rgba(159, 41, 55, 0.2);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.value-card {
    padding: 31px 27px;
    background: #fff;
    border-top: 5px solid var(--green-500);
    border-radius: 4px 4px 16px 16px;
    box-shadow: var(--shadow-sm);
}

.value-card > span {
    display: inline-grid;
    width: 48px;
    height: 48px;
    margin-bottom: 23px;
    place-items: center;
    color: var(--green-700);
    background: var(--mint-100);
    border-radius: 50%;
}

.value-card > span .buz-icon {
    width: 24px;
    height: 24px;
}

.value-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

/* --------------------------------------------------------------------------
   6. Image frames and feature sections
   -------------------------------------------------------------------------- */

.image-frame {
    position: relative;
    min-height: 470px;
}

.image-frame__image,
.image-frame > .theme-image {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.image-frame--angled {
    overflow: visible;
}

.image-frame--angled::before {
    position: absolute;
    z-index: 0;
    top: -22px;
    left: -22px;
    width: 42%;
    height: 55%;
    content: "";
    background: var(--green-600);
    clip-path: polygon(0 0, 100% 0, 73% 100%, 0 100%);
}

.image-frame--angled::after {
    position: absolute;
    z-index: 0;
    right: -22px;
    bottom: -22px;
    width: 44%;
    height: 46%;
    content: "";
    background: var(--blue-500);
    clip-path: polygon(27% 0, 100% 0, 100% 100%, 0 100%);
}

.image-frame--angled .image-frame__image {
    position: relative;
    z-index: 1;
    border-radius: 16px 3px 16px 3px;
    box-shadow: var(--shadow-lg);
}

.image-frame__badge {
    position: absolute;
    z-index: 3;
    right: -30px;
    bottom: 35px;
    display: flex;
    max-width: 285px;
    padding: 18px 20px;
    gap: 13px;
    align-items: center;
    color: #fff;
    background: var(--navy-950);
    border-left: 5px solid var(--lime-400);
    border-radius: 8px 2px 8px 2px;
    box-shadow: var(--shadow-md);
}

.image-frame__badge .buz-icon {
    width: 28px;
    height: 28px;
    color: var(--lime-300);
}

.image-frame__badge strong,
.image-frame__badge span span {
    display: block;
}

.image-frame__badge strong {
    margin-bottom: 2px;
    font-size: 0.88rem;
}

.image-frame__badge span {
    font-size: 0.75rem;
    line-height: 1.45;
}

.image-frame--maintenance {
    min-height: 585px;
}

.image-frame--maintenance .image-frame__image {
    border-radius: 3px 24px 3px 24px;
    box-shadow: var(--shadow-md);
}

.image-frame--maintenance::before {
    position: absolute;
    z-index: -1;
    top: -28px;
    right: -28px;
    width: 56%;
    height: 58%;
    content: "";
    background-image: radial-gradient(var(--green-500) 1.6px, transparent 1.6px);
    background-size: 14px 14px;
    opacity: 0.45;
}

.image-frame--electric {
    min-height: 500px;
    overflow: hidden;
    background: var(--navy-900);
    border-radius: 40px 4px 40px 4px;
    box-shadow: var(--shadow-md);
}

.image-frame--electric .image-frame__image {
    opacity: 0.92;
}

.image-frame__lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 0 18%, rgba(203, 233, 111, 0.65) 18% 18.5%, transparent 18.5%),
        linear-gradient(0deg, transparent 0 24%, rgba(72, 199, 129, 0.38) 24% 24.6%, transparent 24.6%);
    mix-blend-mode: screen;
}

.protocol-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 30px 0 34px;
}

.protocol-grid > div {
    display: grid;
    padding: 18px 19px;
    gap: 4px;
    background: var(--mint-50);
    border-left: 4px solid var(--green-500);
    border-radius: 4px;
}

.protocol-grid strong {
    color: var(--navy-950);
    font-size: 0.92rem;
}

.protocol-grid span {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.45;
}

.mini-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 30px 0 34px;
}

.mini-service-grid span {
    display: flex;
    padding: 14px 16px;
    gap: 9px;
    align-items: center;
    color: var(--navy-900);
    background: #fff;
    border: 1px solid rgba(9, 28, 63, 0.08);
    border-radius: 7px;
    font-size: 0.88rem;
    font-weight: 750;
}

.mini-service-grid .buz-icon {
    color: var(--green-600);
}

.maintenance-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.maintenance-list span {
    display: flex;
    padding: 13px 14px;
    gap: 9px;
    align-items: flex-start;
    color: var(--navy-900);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 650;
}

.maintenance-list .buz-icon {
    width: 19px;
    height: 19px;
    color: var(--green-600);
}

/* --------------------------------------------------------------------------
   7. Process and certification sections
   -------------------------------------------------------------------------- */

.circuit-section {
    overflow: hidden;
}

.circuit-section::before,
.circuit-section::after {
    position: absolute;
    pointer-events: none;
    content: "";
}

.circuit-section::before {
    top: -140px;
    right: -140px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(72, 199, 129, 0.22);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(72, 199, 129, 0.03), 0 0 0 120px rgba(49, 131, 182, 0.025);
}

.circuit-section::after {
    right: 0;
    bottom: 0;
    left: 0;
    height: 42%;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(transparent, #000);
}

.circuit-section > .container {
    position: relative;
    z-index: 2;
}

.process-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.process-line::before {
    position: absolute;
    top: 30px;
    right: 10%;
    left: 10%;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--green-500), var(--blue-500), var(--lime-400));
}

.process-step {
    position: relative;
    z-index: 1;
}

.process-step > span {
    display: grid;
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
    place-items: center;
    color: var(--navy-950);
    background: var(--lime-400);
    border: 7px solid var(--navy-950);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(203, 233, 111, 0.5);
    font-size: 0.8rem;
    font-weight: 900;
}

.process-step h3 {
    color: #fff;
}

.process-step p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.88rem;
}

.vertical-process {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.vertical-process::before {
    position: absolute;
    top: 32px;
    right: 7%;
    left: 7%;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--green-500), var(--blue-500), var(--lime-400));
}

.vertical-process__step {
    position: relative;
    z-index: 1;
}

.vertical-process__step > span {
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    place-items: center;
    color: var(--navy-950);
    background: var(--lime-400);
    border: 8px solid var(--navy-950);
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 900;
}

.vertical-process__step h3 {
    color: #fff;
    font-size: 1.08rem;
}

.vertical-process__step p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.83rem;
}

.certification-section {
    padding-top: clamp(58px, 7vw, 92px);
    padding-bottom: clamp(58px, 7vw, 92px);
}

.certification-card {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr) auto;
    padding: 38px 42px;
    gap: 36px;
    align-items: center;
    background: linear-gradient(135deg, #fff, var(--ice-100));
    border: 1px solid var(--line);
    border-left: 7px solid var(--green-500);
    border-radius: 14px 3px 14px 3px;
    box-shadow: var(--shadow-md);
}

.certification-card__logo {
    padding: 14px;
    background: #fff;
    border-radius: 8px;
}

.certification-card__logo img {
    width: 100%;
}

.certification-card h2 {
    margin-bottom: 10px;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.certification-card p {
    margin-bottom: 0;
    color: var(--muted);
}

/* --------------------------------------------------------------------------
   8. Interior page heroes
   -------------------------------------------------------------------------- */

.page-hero {
    position: relative;
    display: grid;
    min-height: 575px;
    overflow: hidden;
    color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-hero::after {
    position: absolute;
    right: -8%;
    bottom: -90px;
    width: 45%;
    height: 180px;
    content: "";
    background: var(--green-600);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.9;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 20, 47, 0.97) 0%, rgba(6, 20, 47, 0.83) 46%, rgba(6, 20, 47, 0.22) 100%),
        linear-gradient(0deg, rgba(6, 20, 47, 0.3), transparent 55%);
}

.page-hero__overlay::after {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.17;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.page-hero__inner {
    position: relative;
    z-index: 2;
    align-self: center;
    max-width: 800px;
    padding-top: 82px;
    padding-bottom: 82px;
}

.page-hero h1 {
    margin-bottom: 20px;
    color: #fff;
    font-size: clamp(3.2rem, 6.5vw, 5.9rem);
}

.page-hero p {
    max-width: 720px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.page-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.page-hero__chips span {
    padding: 8px 13px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 720;
    backdrop-filter: blur(8px);
}

.page-hero--generator,
.page-hero--installation,
.page-hero--about,
.page-hero--areas,
.page-hero--contact,
.page-hero--careers,
.page-hero--service-request {
    background-image: url("../images/generator-installation.webp");
}

.page-hero--maintenance {
    background-image: url("../images/generator-maintenance.webp");
}

.page-hero--repair {
    background-image: url("../images/generator-repair.jpg");
}

.page-hero--electrical {
    background-image: url("../images/electrical-service.webp");
    background-position: center 34%;
}

.page-hero--about .page-hero__overlay,
.page-hero--areas .page-hero__overlay,
.page-hero--contact .page-hero__overlay,
.page-hero--careers .page-hero__overlay,
.page-hero--service-request .page-hero__overlay {
    background:
        linear-gradient(90deg, rgba(6, 20, 47, 0.98) 0%, rgba(6, 20, 47, 0.88) 53%, rgba(8, 120, 68, 0.32) 100%),
        linear-gradient(0deg, rgba(6, 20, 47, 0.4), transparent 55%);
}

.simple-hero {
    padding: clamp(90px, 10vw, 140px) 0 clamp(60px, 7vw, 92px);
    background: linear-gradient(135deg, var(--mint-50), var(--ice-100));
    border-bottom: 1px solid var(--line);
}

.simple-hero h1 {
    max-width: 960px;
    margin-bottom: 0;
    font-size: clamp(2.7rem, 5.5vw, 5rem);
}

.simple-hero--post {
    background: var(--navy-950);
}

.simple-hero--post h1 {
    color: #fff;
}

/* --------------------------------------------------------------------------
   9. About and service-area components
   -------------------------------------------------------------------------- */

.about-collage {
    position: relative;
    min-height: 570px;
}

.about-collage__large,
.about-collage__small {
    position: absolute;
    overflow: hidden;
    border-radius: 18px 3px 18px 3px;
    box-shadow: var(--shadow-md);
}

.about-collage__large {
    inset: 0 90px 70px 0;
}

.about-collage__small {
    right: 0;
    bottom: 0;
    width: 48%;
    height: 42%;
    border: 8px solid #fff;
}

.about-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-collage__tag {
    position: absolute;
    top: 26px;
    left: -22px;
    display: flex;
    padding: 13px 18px;
    gap: 9px;
    align-items: center;
    color: #fff;
    background: var(--green-600);
    border-radius: 8px 2px 8px 2px;
    box-shadow: var(--shadow-md);
    font-size: 0.82rem;
    font-weight: 800;
}

.service-area-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(50px, 8vw, 100px);
    align-items: center;
}

.service-area-map {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 30% 34%, rgba(72, 199, 129, 0.32), transparent 18%),
        linear-gradient(145deg, var(--navy-900), #0a3c55);
    border-radius: 28px 4px 28px 4px;
    box-shadow: var(--shadow-lg);
}

.service-area-map::before,
.service-area-map::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(203, 233, 111, 0.28);
    border-radius: 50%;
}

.service-area-map::before {
    top: 60px;
    left: 70px;
    width: 280px;
    height: 280px;
    box-shadow: 0 0 0 60px rgba(72, 199, 129, 0.04), 0 0 0 120px rgba(49, 131, 182, 0.03);
}

.service-area-map::after {
    right: -80px;
    bottom: -80px;
    width: 280px;
    height: 280px;
}

.service-area-map__grid {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 35px 35px;
}

.map-pin {
    position: absolute;
    z-index: 2;
    width: 15px;
    height: 15px;
    background: var(--lime-400);
    border: 4px solid var(--navy-900);
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(184, 223, 76, 0.15), 0 0 24px rgba(184, 223, 76, 0.5);
}

.map-pin--one {
    top: 27%;
    left: 29%;
}

.map-pin--two {
    top: 51%;
    left: 56%;
}

.map-pin--three {
    right: 19%;
    bottom: 23%;
}

.service-area-map__label {
    position: absolute;
    z-index: 3;
    top: 34px;
    right: 34px;
    display: grid;
    padding: 16px 18px;
    gap: 3px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.service-area-map__label strong {
    color: #fff;
}

.service-area-map__label span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.74rem;
}

.service-area-map__home {
    position: absolute;
    z-index: 3;
    bottom: 35px;
    left: 35px;
    display: flex;
    padding: 16px 18px;
    gap: 12px;
    align-items: center;
    color: var(--navy-950);
    background: var(--lime-400);
    border-radius: 9px 2px 9px 2px;
    box-shadow: var(--shadow-md);
}

.service-area-map__home strong,
.service-area-map__home span span {
    display: block;
}

.service-area-map__home span {
    font-size: 0.76rem;
}

.contact-stack {
    display: grid;
    gap: 12px;
    margin-top: 32px;
}

.contact-stack a {
    display: flex;
    padding: 17px 18px;
    gap: 14px;
    align-items: center;
    color: var(--navy-950);
    background: var(--mint-50);
    border: 1px solid var(--line);
    border-radius: 9px;
}

.contact-stack a:hover,
.contact-stack a:focus-visible {
    color: var(--navy-950);
    background: var(--mint-100);
    border-color: rgba(11, 148, 84, 0.25);
}

.contact-stack .buz-icon {
    width: 25px;
    height: 25px;
    color: var(--green-600);
}

.contact-stack small,
.contact-stack strong {
    display: block;
}

.contact-stack small {
    color: var(--muted);
    font-size: 0.72rem;
}

.contact-stack strong {
    font-size: 0.92rem;
}

/* --------------------------------------------------------------------------
   10. Forms and contact pages
   -------------------------------------------------------------------------- */

.section--form {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.82);
    background:
        radial-gradient(circle at 8% 10%, rgba(72, 199, 129, 0.18), transparent 22%),
        linear-gradient(135deg, var(--navy-950), #0a3551);
}

.section--form::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.form-section__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
    gap: clamp(48px, 8vw, 100px);
    align-items: start;
}

.form-section__copy {
    position: sticky;
    top: 135px;
}

.form-section__copy h2 {
    color: #fff;
}

.form-section__copy > p {
    color: rgba(255, 255, 255, 0.72);
}

.inline-phone {
    display: inline-flex;
    padding: 13px 17px;
    gap: 12px;
    align-items: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 9px;
}

.inline-phone:hover,
.inline-phone:focus-visible {
    color: var(--lime-300);
    background: rgba(255, 255, 255, 0.11);
}

.inline-phone .buz-icon {
    width: 26px;
    height: 26px;
    color: var(--green-400);
}

.inline-phone small,
.inline-phone strong {
    display: block;
}

.inline-phone small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
}

.inline-phone strong {
    font-size: 1.02rem;
}

.form-card {
    padding: clamp(28px, 4vw, 46px);
    color: var(--ink);
    background: #fff;
    border-top: 7px solid var(--green-500);
    border-radius: 4px 4px 20px 20px;
    box-shadow: var(--shadow-lg);
}

.form-card > h3,
.form-card > h2 {
    margin-bottom: 24px;
}

.form-card--contact {
    border-top-color: var(--blue-500);
}

.buz-form {
    display: grid;
    gap: 17px;
}

.buz-form__preview-note {
    display: flex;
    padding: 11px 13px;
    gap: 9px;
    align-items: flex-start;
    color: #435064;
    background: var(--ice-100);
    border-left: 3px solid var(--blue-500);
    border-radius: 5px;
    font-size: 0.74rem;
    line-height: 1.45;
}

.buz-form__preview-note .buz-icon {
    width: 17px;
    height: 17px;
    margin-top: 1px;
    color: var(--blue-600);
}

.buz-form label {
    display: grid;
    gap: 7px;
    color: var(--navy-900);
    font-size: 0.82rem;
    font-weight: 730;
}

.buz-form input,
.buz-form select,
.buz-form textarea,
.search-field,
.comment-form input,
.comment-form textarea {
    width: 100%;
    color: var(--ink);
    background: #fff;
    border: 1px solid #cbd8df;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.buz-form input,
.buz-form select,
.search-field,
.comment-form input {
    height: 50px;
    padding: 0 14px;
}

.buz-form input[type="file"] {
    height: auto;
    min-height: 50px;
    padding: 10px 12px;
    color: var(--muted);
    background: var(--surface-soft);
}

.buz-form input[type="file"]::file-selector-button {
    padding: 8px 12px;
    margin-right: 12px;
    color: #fff;
    background: var(--navy-800);
    border: 0;
    border-radius: 6px;
    font-family: inherit;
    font-weight: 750;
    cursor: pointer;
}

.buz-file-control > span small,
.buz-file-control > small {
    color: var(--muted);
    font-size: 0.73rem;
    font-weight: 500;
}

.buz-form textarea,
.comment-form textarea {
    min-height: 135px;
    padding: 13px 14px;
    resize: vertical;
}

.buz-form input:focus,
.buz-form select:focus,
.buz-form textarea:focus,
.search-field:focus,
.comment-form input:focus,
.comment-form textarea:focus {
    background: #fff;
    border-color: var(--green-500);
    box-shadow: 0 0 0 4px rgba(18, 169, 97, 0.12);
}

.buz-form [aria-invalid="true"] {
    border-color: var(--danger);
    box-shadow: 0 0 0 4px rgba(200, 69, 69, 0.1);
}

.form-grid {
    display: grid;
    gap: 14px;
}

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

.form-grid--three {
    grid-template-columns: 1fr 0.65fr 0.75fr;
}

.check-control {
    display: flex !important;
    grid-template-columns: 20px 1fr;
    gap: 10px !important;
    align-items: flex-start;
    color: var(--muted) !important;
    font-size: 0.73rem !important;
    font-weight: 500 !important;
    line-height: 1.45;
}

.check-control input {
    width: 19px;
    height: 19px;
    min-width: 19px;
    padding: 0;
    margin-top: 1px;
    accent-color: var(--green-600);
}

.check-control a {
    color: var(--green-700);
    text-decoration: underline;
}

.buz-form__success {
    display: grid;
    padding: 16px 18px;
    gap: 4px;
    color: #07502f;
    background: #e8f8ef;
    border: 1px solid #b9e4ca;
    border-radius: 8px;
}

.buz-form__success[hidden] {
    display: none;
}

.buz-form__success strong {
    font-size: 0.9rem;
}

.buz-form__success span {
    font-size: 0.76rem;
}

/* HubSpot estimate/contact form ------------------------------------------------ */

.buz-hubspot-form {
    width: 100%;
    min-height: 220px;
    color: var(--ink);
}

.buz-hubspot-form--compact {
    min-height: 190px;
}

.buz-hubspot-form__loading {
    display: flex;
    min-height: 180px;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: var(--muted);
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 650;
    text-align: center;
}

.buz-hubspot-form__loading[hidden] {
    display: none;
}

.buz-hubspot-form .hbspt-form,
.buz-hubspot-form .hs-form {
    width: 100%;
}

.buz-hubspot-form .hs-form-field {
    margin-bottom: 17px;
}

.buz-hubspot-form .hs-form-field > label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy-900);
    font-size: 0.82rem;
    font-weight: 730;
    line-height: 1.4;
}

.buz-hubspot-form .hs-input:not([type="checkbox"]):not([type="radio"]),
.buz-hubspot-form select.hs-input,
.buz-hubspot-form textarea.hs-input {
    width: 100% !important;
    min-height: 50px;
    padding: 12px 14px !important;
    color: var(--ink);
    background: #fff;
    border: 1px solid #cbd8df;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.buz-hubspot-form textarea.hs-input {
    min-height: 130px;
    resize: vertical;
}

.buz-hubspot-form .hs-input:focus {
    border-color: var(--green-500) !important;
    box-shadow: 0 0 0 4px rgba(18, 169, 97, 0.12);
}

.buz-hubspot-form .inputs-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.buz-hubspot-form .hs-form-booleancheckbox-display,
.buz-hubspot-form .hs-form-checkbox-display {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

.buz-hubspot-form input[type="checkbox"],
.buz-hubspot-form input[type="radio"] {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 2px;
    accent-color: var(--green-600);
}

.buz-hubspot-form .legal-consent-container,
.buz-hubspot-form .hs-richtext {
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.55;
}

.buz-hubspot-form .legal-consent-container a,
.buz-hubspot-form .hs-richtext a {
    color: var(--green-700);
    text-decoration: underline;
}

.buz-hubspot-form .hs-error-msgs {
    padding: 0;
    margin: 6px 0 0;
    color: var(--danger);
    font-size: 0.76rem;
    list-style: none;
}

.buz-hubspot-form .hs-submit {
    margin-top: 20px;
}

.buz-hubspot-form .hs-button,
.buz-hubspot-form input[type="submit"] {
    min-height: 52px;
    padding: 14px 24px !important;
    color: #fff !important;
    background: var(--green-600) !important;
    border: 0 !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 24px rgba(11, 148, 84, 0.2);
    font-family: inherit;
    font-size: 0.94rem;
    font-weight: 800;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.buz-hubspot-form .hs-button:hover,
.buz-hubspot-form .hs-button:focus-visible,
.buz-hubspot-form input[type="submit"]:hover,
.buz-hubspot-form input[type="submit"]:focus-visible {
    background: var(--green-700) !important;
    box-shadow: 0 14px 28px rgba(8, 120, 68, 0.24);
    transform: translateY(-1px);
}

.buz-hubspot-form .submitted-message {
    padding: 18px 20px;
    color: #07502f;
    background: #e8f8ef;
    border: 1px solid #b9e4ca;
    border-radius: 8px;
    font-weight: 650;
    line-height: 1.6;
}

.mygenplan-section {
    background: var(--surface-soft);
}

.mygenplan-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    overflow: hidden;
    padding: clamp(38px, 6vw, 76px);
    gap: clamp(42px, 7vw, 88px);
    align-items: center;
    color: rgba(255, 255, 255, 0.76);
    background:
        radial-gradient(circle at 88% 18%, rgba(72, 199, 129, 0.24), transparent 28%),
        linear-gradient(135deg, var(--navy-950), #0b3651);
    border-radius: 30px 6px 30px 6px;
    box-shadow: var(--shadow-lg);
}

.mygenplan-card::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(90deg, transparent, #000);
}

.mygenplan-card__copy,
.mygenplan-steps {
    position: relative;
    z-index: 1;
}

.mygenplan-card__copy h2 {
    color: #fff;
}

.mygenplan-card__copy p {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.74);
}

.mygenplan-steps {
    display: grid;
    padding: 0;
    margin: 0;
    gap: 12px;
    list-style: none;
}

.mygenplan-steps li {
    display: grid;
    grid-template-columns: 54px 1fr;
    padding: 20px;
    gap: 16px;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px 3px 12px 3px;
    backdrop-filter: blur(10px);
}

.mygenplan-steps li > span {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--navy-950);
    background: var(--lime-300);
    border-radius: 50%;
    font-size: 0.76rem;
    font-weight: 850;
}

.mygenplan-steps strong,
.mygenplan-steps small {
    display: block;
}

.mygenplan-steps strong {
    color: #fff;
    font-size: 0.94rem;
}

.mygenplan-steps small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.76rem;
    line-height: 1.45;
}

.careers-page {
    background: var(--surface-soft);
}

.careers-page__grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(40px, 7vw, 86px);
    align-items: start;
}

.careers-intro {
    position: sticky;
    top: 135px;
}

.careers-intro__note {
    display: flex;
    padding: 20px;
    margin-top: 30px;
    gap: 14px;
    align-items: flex-start;
    color: var(--navy-900);
    background: #fff;
    border-left: 4px solid var(--green-500);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.careers-intro__note .buz-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    color: var(--green-600);
}

.careers-intro__note strong,
.careers-intro__note span {
    display: block;
}

.careers-intro__note span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.55;
}

.careers-form-card {
    border-top-color: var(--green-500);
}

.careers-form__message,
.careers-form__error {
    margin-bottom: 22px;
}

.careers-form__error {
    display: grid;
    padding: 16px 18px;
    gap: 4px;
    color: #7c2222;
    background: #fff1f1;
    border: 1px solid #efc0c0;
    border-radius: 8px;
}

.careers-form__error span {
    font-size: 0.76rem;
}

.buz-choice-group {
    padding: 0;
    margin: 0;
    border: 0;
}

.buz-choice-group legend {
    margin-bottom: 9px;
    color: var(--navy-900);
    font-size: 0.82rem;
    font-weight: 730;
}

.buz-choice-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.buz-choice-row label {
    display: flex;
    min-width: 112px;
    padding: 12px 15px;
    gap: 9px;
    align-items: center;
    background: var(--surface-soft);
    border: 1px solid #cbd8df;
    border-radius: 8px;
    cursor: pointer;
}

.buz-choice-row input {
    width: 18px;
    height: 18px;
    padding: 0;
    accent-color: var(--green-600);
}

.buz-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-page {
    background: var(--surface-soft);
}

.contact-page__grid {
    display: grid;
    grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
    gap: 34px;
    align-items: start;
}

.contact-panel {
    position: sticky;
    top: 125px;
    padding: 40px 34px;
    color: rgba(255, 255, 255, 0.8);
    background: linear-gradient(145deg, var(--navy-950), #0c3854);
    border-radius: 18px 3px 18px 3px;
    box-shadow: var(--shadow-md);
}

.contact-panel h2 {
    color: #fff;
    font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.contact-panel > p {
    color: rgba(255, 255, 255, 0.68);
}

.contact-stack--light a {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.13);
}

.contact-stack--light a:hover,
.contact-stack--light a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.contact-stack--light small {
    color: rgba(255, 255, 255, 0.55);
}

.contact-stack--light .buz-icon {
    color: var(--lime-300);
}

.contact-panel__note {
    display: flex;
    padding: 16px;
    margin-top: 27px;
    gap: 12px;
    align-items: flex-start;
    color: var(--navy-950);
    background: var(--lime-400);
    border-radius: 8px;
}

.contact-panel__note .buz-icon {
    width: 23px;
    height: 23px;
}

.contact-panel__note p {
    display: grid;
    margin: 0;
    gap: 2px;
}

.contact-panel__note strong {
    font-size: 0.86rem;
}

.contact-panel__note span,
.contact-panel__note a {
    color: var(--navy-800);
    font-size: 0.74rem;
}

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */

.footer-cta {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(120deg, var(--green-700), var(--blue-600));
}

.footer-cta__circuit {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 42px 42px;
}

.footer-cta__circuit::before {
    position: absolute;
    top: -130px;
    right: 8%;
    width: 350px;
    height: 350px;
    content: "";
    border: 2px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.03);
}

.footer-cta__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding-top: 52px;
    padding-bottom: 52px;
    gap: 36px;
    align-items: center;
}

.footer-cta h2 {
    max-width: 760px;
    margin-bottom: 0;
    color: #fff;
    font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.footer-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer {
    color: rgba(255, 255, 255, 0.68);
    background: #040e22;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(160px, 0.7fr));
    padding-top: 72px;
    padding-bottom: 60px;
    gap: 54px;
}

.site-logo--footer {
    width: 245px;
    height: 90px;
    filter: brightness(0) invert(1);
}

.site-footer__brand p {
    max-width: 390px;
    margin: 18px 0 24px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
}

.social-link {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 750;
}

.social-link .buz-icon {
    width: 28px;
    height: 28px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.site-footer h3 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

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

.site-footer li,
.site-footer a {
    font-size: 0.84rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--lime-300);
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
}

.site-footer__contact > a {
    display: flex;
    margin-bottom: 15px;
    gap: 10px;
    align-items: flex-start;
}

.site-footer__contact .buz-icon {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--green-400);
}

.site-footer__bottom {
    display: flex;
    padding-top: 20px;
    padding-bottom: 22px;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.42);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
}

.site-footer__bottom p {
    margin: 0;
}

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */

.legal-hero {
    background:
        linear-gradient(135deg, rgba(232, 246, 239, 0.94), rgba(237, 245, 250, 0.96)),
        linear-gradient(90deg, var(--mint-100), var(--ice-100));
}

.legal-hero__date {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 650;
}

.legal-section {
    background: var(--surface-soft);
}

.legal-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: clamp(34px, 6vw, 74px);
    align-items: start;
}

.legal-toc {
    position: sticky;
    top: calc(var(--header-height) + 30px);
    display: grid;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.legal-toc strong {
    padding: 17px 19px;
    color: #fff;
    background: var(--navy-900);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.legal-toc a {
    padding: 11px 19px;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    font-size: 0.78rem;
    font-weight: 650;
    line-height: 1.4;
    transition: color var(--transition), background var(--transition);
}

.legal-toc a:last-child {
    border-bottom: 0;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
    color: var(--green-700);
    background: var(--mint-50);
}

.legal-document {
    padding: clamp(30px, 5vw, 58px);
    color: #435064;
    background: #fff;
    border-top: 6px solid var(--green-500);
    border-radius: 4px 4px 20px 20px;
    box-shadow: var(--shadow-sm);
}

.legal-document h2 {
    margin: 2em 0 0.65em;
    color: var(--navy-950);
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    scroll-margin-top: calc(var(--header-height) + 28px);
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p,
.legal-document li {
    line-height: 1.75;
}

.legal-document p {
    margin-bottom: 1.15em;
}

.legal-document ul {
    display: grid;
    padding-left: 1.25em;
    gap: 9px;
    margin: 0 0 1.35em;
}

.legal-document a {
    color: var(--green-700);
    font-weight: 650;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.legal-contact {
    padding: 20px 22px;
    color: var(--navy-900);
    background: var(--mint-50);
    border-left: 4px solid var(--green-500);
    border-radius: 0 10px 10px 0;
    font-style: normal;
    line-height: 1.75;
}

/* --------------------------------------------------------------------------
   12. Posts, content, comments, and 404
   -------------------------------------------------------------------------- */

.entry-content-wrap {
    padding: clamp(62px, 8vw, 110px) 0;
}

.entry-content {
    max-width: 840px;
}

.entry-content > * + * {
    margin-top: 1.4em;
}

.entry-content a {
    color: var(--green-700);
    text-decoration: underline;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 1.5em;
}

.entry-content blockquote {
    padding: 24px 28px;
    margin-inline: 0;
    color: var(--navy-900);
    background: var(--mint-50);
    border-left: 5px solid var(--green-500);
}

.content-with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 56px;
    align-items: start;
}

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

.post-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 15px 3px 15px 3px;
    box-shadow: var(--shadow-sm);
}

.post-card__image {
    display: block;
    height: 250px;
    overflow: hidden;
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.post-card:hover .post-card__image img {
    transform: scale(1.04);
}

.post-card__content {
    padding: 26px;
}

.post-card__meta {
    display: block;
    margin-bottom: 10px;
    color: var(--green-700);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.post-card h2 {
    font-size: 1.45rem;
}

.post-card h2 a:hover,
.post-card h2 a:focus-visible {
    color: var(--green-700);
}

.post-card p {
    color: var(--muted);
    font-size: 0.9rem;
}

.widget-area {
    display: grid;
    gap: 22px;
}

.widget {
    padding: 24px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
}

.widget-title {
    font-size: 1.2rem;
}

.single-entry__image {
    margin-bottom: 38px;
    overflow: hidden;
    border-radius: 18px 3px 18px 3px;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form label {
    flex: 1;
}

.comments-area {
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid var(--line);
}

.comment-list {
    padding-left: 24px;
}

.error-page {
    position: relative;
    display: grid;
    min-height: 720px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, var(--navy-950), #0a3a56);
    place-items: center;
}

.error-page__grid {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 48px 48px;
}

.error-page__inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
    text-align: center;
}

.error-page__code {
    display: block;
    margin-bottom: -14px;
    color: var(--lime-400);
    font-size: clamp(7rem, 20vw, 13rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.08em;
    opacity: 0.18;
}

.error-page h1 {
    color: #fff;
}

.error-page p {
    max-width: 650px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.72);
}

.error-page .button-row {
    justify-content: center;
}

/* --------------------------------------------------------------------------
   13. Scroll reveals
   -------------------------------------------------------------------------- */

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.js .reveal--right {
    transform: translateX(30px);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}

/* --------------------------------------------------------------------------
   14. Responsive adjustments
   -------------------------------------------------------------------------- */

@media (max-width: 1180px) {
    :root {
        --header-height: 84px;
    }

    .site-header__inner {
        grid-template-columns: 210px minmax(0, 1fr) auto;
        gap: 16px;
    }

    .site-logo {
        width: 190px;
        height: 64px;
    }

    .main-navigation a {
        padding-inline: 8px;
        font-size: 0.79rem;
    }

    .button--header {
        padding-inline: 14px;
        font-size: 0.82rem;
    }

    .hero__inner {
        grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    }

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

    .service-tile:nth-child(2) {
        border-right: 0;
    }

    .service-tile:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .feature-card-grid--four,
    .value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vertical-process {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .vertical-process::before {
        display: none;
    }

    .certification-card {
        grid-template-columns: 190px minmax(0, 1fr);
    }

    .certification-card > .button {
        grid-column: 2;
        justify-self: start;
    }

    .site-footer__grid {
        grid-template-columns: minmax(280px, 1.2fr) repeat(2, minmax(170px, 0.8fr));
    }

    .site-footer__contact {
        grid-column: 2 / 4;
    }
}

@media (max-width: 1100px) {
    .utility-note {
        display: none;
    }

    .site-header__inner {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .site-header__cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
        gap: 11px;
        align-items: center;
    }

    .main-navigation {
        position: fixed;
        z-index: 100;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(390px, 88vw);
        padding: 110px 24px 40px;
        overflow-y: auto;
        visibility: hidden;
        background: #fff;
        box-shadow: -20px 0 60px rgba(5, 20, 47, 0.2);
        opacity: 0;
        transform: translateX(100%);
        transition: transform 250ms ease, opacity 250ms ease, visibility 250ms ease;
    }

    .main-navigation.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }

    .main-navigation ul {
        display: grid;
        gap: 4px;
    }

    .main-navigation a {
        min-height: 48px;
        padding: 12px 10px;
        font-size: 0.96rem;
    }

    .main-navigation > .menu > li > a::after {
        display: none;
    }

    .main-navigation .sub-menu {
        position: static;
        width: auto;
        padding: 4px 0 7px 14px;
        visibility: visible;
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        transform: none;
    }

    .main-navigation .sub-menu a {
        color: var(--muted);
        font-size: 0.88rem;
    }

    .menu-open .menu-toggle {
        position: fixed;
        z-index: 130;
        top: 27px;
        right: 26px;
    }

    .admin-bar.menu-open .menu-toggle {
        top: 59px;
    }

    .menu-open .menu-toggle__lines span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-open .menu-toggle__lines span:nth-child(2) {
        opacity: 0;
    }

    .menu-open .menu-toggle__lines span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero__inner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 86px;
        padding-bottom: 145px;
    }

    .hero__copy {
        max-width: 760px;
    }

    .hero__visual {
        min-height: 450px;
        margin-top: -25px;
    }

    .hero__generator {
        right: 4%;
        left: auto;
        width: min(620px, 88%);
    }

    .hero__power-ring {
        right: 4%;
        width: 450px;
        height: 450px;
    }

    .split-layout,
    .split-layout--image-wide,
    .service-area-layout,
    .contact-page__grid,
    .form-section__grid,
    .mygenplan-card,
    .careers-page__grid {
        grid-template-columns: 1fr;
    }

    .split-layout--reverse > :first-child,
    .split-layout--reverse > :last-child {
        order: initial;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-section__copy,
    .contact-panel,
    .careers-intro {
        position: static;
    }

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

    .process-line::before {
        display: none;
    }

    .image-frame,
    .image-frame--maintenance,
    .image-frame--electric {
        min-height: 500px;
    }

    .about-collage {
        min-height: 540px;
    }

    .footer-cta__inner {
        grid-template-columns: 1fr;
    }

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

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .site-footer__contact {
        grid-column: auto;
    }

    .content-with-sidebar {
        grid-template-columns: 1fr;
    }

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

    .legal-toc {
        position: static;
    }
}

@media (max-width: 720px) {
    body {
        font-size: 16px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .utility-bar__inner {
        min-height: 34px;
    }

    .utility-chip {
        font-size: 0.68rem;
    }

    .utility-phone span {
        display: none;
    }

    .site-header__inner {
        min-height: 74px;
    }

    .site-logo {
        width: 172px;
        height: 56px;
    }

    .menu-toggle__label {
        display: none;
    }

    .menu-open .menu-toggle {
        top: 20px;
    }

    .admin-bar.menu-open .menu-toggle {
        top: 66px;
    }

    .hero--home {
        min-height: 0;
    }

    .hero__inner {
        padding-top: 66px;
        padding-bottom: 118px;
    }

    .hero__copy h1 {
        font-size: clamp(3rem, 15vw, 4.6rem);
    }

    .hero__visual {
        min-height: 330px;
    }

    .hero__power-ring {
        top: 7%;
        right: -20%;
        width: 350px;
        height: 350px;
    }

    .hero__generator {
        right: -8%;
        width: 110%;
    }

    .hero__status-card {
        right: 0;
        bottom: 5px;
    }

    .hero__angle {
        bottom: -80px;
        height: 120px;
    }

    .section--pull-up {
        margin-top: -34px;
    }

    .service-switcher__grid {
        grid-template-columns: 1fr;
    }

    .service-tile,
    .service-tile:nth-child(2) {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .service-tile:last-child {
        border-bottom: 0;
    }

    .feature-card-grid--three,
    .feature-card-grid--four,
    .value-grid,
    .process-line,
    .vertical-process,
    .protocol-grid,
    .mini-service-grid,
    .maintenance-list,
    .form-grid--two,
    .form-grid--three,
    .check-list--two,
    .post-grid {
        grid-template-columns: 1fr;
    }

    .image-frame,
    .image-frame--maintenance,
    .image-frame--electric {
        min-height: 390px;
    }

    .image-frame__badge {
        right: 12px;
        bottom: 18px;
        left: 12px;
        max-width: none;
    }

    .page-hero {
        min-height: 520px;
    }

    .page-hero__inner {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .page-hero h1 {
        font-size: clamp(2.8rem, 14vw, 4.2rem);
    }

    .page-hero__overlay {
        background: linear-gradient(90deg, rgba(6, 20, 47, 0.96), rgba(6, 20, 47, 0.68));
    }

    .certification-card {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .certification-card > .button {
        grid-column: auto;
    }

    .certification-card__logo {
        max-width: 250px;
    }

    .about-collage {
        min-height: 460px;
    }

    .about-collage__large {
        right: 35px;
        bottom: 68px;
    }

    .about-collage__small {
        width: 54%;
        height: 38%;
    }

    .about-collage__tag {
        left: 8px;
    }

    .service-area-map {
        min-height: 420px;
    }

    .service-area-map__label {
        top: 20px;
        right: 20px;
    }

    .service-area-map__home {
        bottom: 20px;
        left: 20px;
    }

    .form-card,
    .contact-panel {
        padding: 28px 22px;
    }

    .legal-document {
        padding: 30px 22px;
    }

    .mygenplan-card {
        padding: 32px 22px;
        border-radius: 20px 4px 20px 4px;
    }

    .footer-cta__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .site-footer__brand,
    .site-footer__contact {
        grid-column: auto;
    }

    .site-footer__bottom {
        gap: 8px;
        align-items: flex-start;
        flex-direction: column;
    }

    .search-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .button-row .button {
        width: 100%;
    }

    .hero__trust {
        display: grid;
    }

    .hero__visual {
        min-height: 280px;
    }

    .hero__status-card {
        display: none;
    }

    .page-hero__chips {
        display: none;
    }

    .section {
        padding-top: 68px;
        padding-bottom: 68px;
    }
}
