/* Reset adapted from classic blank-theme patterns, with modern box sizing. */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section,
summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer,
header, hgroup, menu, nav, section {
    display: block;
}

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

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

body {
    min-width: 320px;
    background: #0f0d13;
    color: #e6e0e9;
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

ol, ul {
    list-style: none;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

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

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

:root {
    --surface-lowest: #0f0d13;
    --surface: #141218;
    --surface-low: #1d1b20;
    --surface-mid: #211f24;
    --surface-high: #2b292f;
    --surface-highest: #36343a;
    --text: #e6e0e9;
    --text-muted: #cbc4d2;
    --outline: #494551;
    --gold: #e7c365;
    --gold-strong: #c9a74d;
    --on-gold: #3e2e00;
    --purple: #cfbcff;
    --danger: #ffb4ab;
    --wrap: 1180px;
    --pad: clamp(16px, 4vw, 24px);
    --section: clamp(56px, 8vw, 96px);
    --radius: 8px;
}

.screen-reader-text {
    position: absolute;
    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 {
    z-index: 100000;
    top: 8px;
    left: 8px;
    width: auto;
    height: auto;
    padding: 12px 16px;
    clip: auto;
    background: var(--gold);
    color: var(--on-gold);
}

.material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.wrap {
    width: min(100% - (var(--pad) * 2), var(--wrap));
    margin-inline: auto;
}

.section-pad {
    padding: var(--section) var(--pad);
}

.gradient-bg {
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-lowest) 100%);
}

.accent {
    color: var(--gold);
}

.italic {
    font-style: italic;
}

.glass-card {
    background: rgba(33, 31, 36, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    backdrop-filter: blur(16px);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 6px;
    font-family: "Oswald", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button--primary {
	background: #b01007;
    color: #ffffff;
    box-shadow: 0 0 24px rgba(177, 34, 26, 0.28);
    border: solid 1px #b24545;
}

.button--primary:hover {
	background-color: #ed0d00;
}

.button--ghost,
.button--outline {
    border: 1px solid var(--outline);
    color: var(--text);
}

.button--outline {
    color: var(--gold);
    border-color: rgba(231, 195, 101, 0.65);
}

.button--ghost:hover,
.button--outline:hover {
    background: var(--surface-highest);
}

.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    background: rgba(20, 18, 24, 0.82);
    border-bottom: 1px solid rgba(73, 69, 81, 0.28);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(20px);
}

.site-header__inner {
    width: min(100% - (var(--pad) * 2), var(--wrap));
    min-height: 80px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-family: "Oswald", Arial, sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-style: italic;
}

.site-brand .material-symbols-outlined {
    font-size: 36px;
}

.custom-logo {
    width: auto;
    max-height: 54px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(231, 195, 101, 0.45);
    border-radius: 6px;
    background: transparent;
    color: var(--gold);
    cursor: pointer;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 32px);
}

.primary-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    color: var(--text-muted);
    font-family: "Oswald", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.primary-menu a:hover,
.primary-menu a:focus {
    color: var(--gold);
}

.primary-menu > li:last-child > a {
    min-height: 40px;
    padding: 9px 20px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--on-gold);
    box-shadow: 0 0 24px rgba(231, 195, 101, 0.18);
}

.site-main {
    padding-top: 80px;
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__inner {
    position: relative;
    z-index: 1;
    width: min(100%, var(--wrap));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
    gap: clamp(32px, 6vw, 72px);
    align-items: center;
}

.hero__copy {
    display: grid;
    gap: 28px;
}

.response-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 5px 14px;
    border: 1px solid rgba(231, 195, 101, 0.24);
    border-radius: 999px;
    background: rgba(231, 195, 101, 0.1);
    color: var(--gold);
    font-family: "Oswald", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 1;
    transition: opacity 180ms ease, transform 180ms ease;
}

.response-badge.is-swapping {
    opacity: 0.35;
    transform: translateY(-2px);
}

.response-badge .material-symbols-outlined {
    font-size: 18px;
}

h1, h2, h3, .site-footer__logo {
    font-family: "Oswald", Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h1 {
    max-width: 760px;
    font-size: clamp(42px, 8vw, 76px);
    line-height: 1.05;
}

h2 {
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.12;
}

h3 {
    font-size: 24px;
    line-height: 1.25;
}

.hero__text {
    max-width: 570px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.55;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__media {
    position: relative;
    min-height: clamp(390px, 42vw, 560px);
}

.hero__glow {
    position: absolute;
    top: -40px;
    right: -64px;
    width: min(34vw, 380px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(231, 195, 101, 0.12);
    filter: blur(80px);
}

.hero__pile {
    position: relative;
    z-index: 1;
    width: min(100%, 640px);
    aspect-ratio: 5 / 4;
    margin-inline: auto;
}

.hero__frame {
    position: absolute;
    z-index: var(--z, 1);
    width: clamp(190px, 42%, 270px);
    aspect-ratio: 5 / 4;
    padding: 8px;
    border-radius: 10px;
    background: rgba(33, 31, 36, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
    transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--r, 0deg));
    transition: transform 360ms ease, box-shadow 360ms ease;
}

.hero__frame:hover {
    z-index: 50;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.46);
    transform: translate(var(--x, 0), calc(var(--y, 0) - 18px)) rotate(0deg) scale(1.5);
}

.hero__frame > img,
.hero__placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: 5 / 4;
    border-radius: 6px;
    object-fit: cover;
	object-position: left;
}

.hero__frame--1 {
    top: 2%;
    left: 2%;
    --x: 0px;
    --y: 14px;
    --r: -9deg;
    --z: 5;
}

.hero__frame--2 {
    top: 1%;
    left: 31%;
    --x: 0px;
    --y: 0px;
    --r: 5deg;
    --z: 8;
}

.hero__frame--3 {
    top: 7%;
    right: 2%;
    --x: 0px;
    --y: 12px;
    --r: -4deg;
    --z: 4;
}

.hero__frame--4 {
    bottom: 6%;
    left: 6%;
    --x: 0px;
    --y: 0px;
    --r: 7deg;
    --z: 10;
}

.hero__frame--5 {
    bottom: 1%;
    left: 34%;
    --x: 0px;
    --y: -2px;
    --r: -2deg;
    --z: 14;
}

.hero__frame--6 {
    right: 4%;
    bottom: 8%;
    --x: 0px;
    --y: 3px;
    --r: 9deg;
    --z: 9;
}

.hero__placeholder,
.about__placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--surface-high), var(--surface-lowest));
    color: var(--gold);
}

.about__placeholder {
    min-height: 360px;
}

.hero__placeholder .material-symbols-outlined,
.about__placeholder .material-symbols-outlined {
    font-size: 42px;
}

.hero__mascot {
    position: absolute;
    left: 2%;
    bottom: -8%;
    z-index: 60;
    width: clamp(86px, 10vw, 132px);
    filter: drop-shadow(0 0 18px rgba(231, 195, 101, 0.28));
}

.float-soft {
    animation: float-soft 6s ease-in-out infinite;
}

@keyframes float-soft {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
}

.trust-bar {
    padding: 42px 0;
    background: var(--surface-lowest);
    border-block: 1px solid rgba(73, 69, 81, 0.25);
}

.trust-bar p {
    margin-bottom: 26px;
    color: var(--text-muted);
    font-family: "Oswald", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-align: center;
    text-transform: uppercase;
}

.brand-carousel {
    opacity: 0.72;
}

.brand-slide {
    width: calc(100% / 7);
    min-width: 0;
    padding: 0 8px;
}

.brand-slide span,
.brand-slide img {
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
/*    background: rgba(203, 196, 210, 0.11);*/
    background: #ffffff;
    color: var(--text);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-align: center;
}

.brand-slide img {
    object-fit: contain;
    padding: 12px 14px;
    filter: opacity(0.4) contrast(0.8) grayscale(1);
	transition: filter .5s ease-in;
}

.brand-slide img:hover,
.brand-slide.is-selected img {
    filter: opacity(1) contrast(1) grayscale(0);
}

.section-heading {
    margin-bottom: 42px;
}

.section-heading p {
    margin-top: 10px;
    color: var(--text-muted);
}

.section-heading--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.section-heading--split img {
    width: 92px;
    filter: drop-shadow(0 0 16px rgba(231, 195, 101, 0.18));
}

.section-heading--center {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.repair-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.repair-card {
    position: relative;
    min-height: 248px;
    padding: clamp(22px, 3vw, 32px);
    overflow: hidden;
    display: grid;
    align-content: start;
    gap: 16px;
}

.repair-card--wide {
    grid-column: span 2;
}

.repair-card__icon {
    color: var(--gold);
    font-size: 58px;
    transition: transform 180ms ease;
}

.repair-card:hover .repair-card__icon {
    transform: scale(1.06);
}

.repair-card h3 {
    margin-bottom: 8px;
}

.repair-card p {
    color: var(--text-muted);
}

.repair-card img {
    width: 100%;
    max-height: 160px;
    border-radius: 8px;
    object-fit: cover;
}

.other-systems {
    margin-top: 24px;
    padding: clamp(24px, 4vw, 36px);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: clamp(24px, 5vw, 56px);
    align-items: start;
}

.other-systems h3 {
    margin-bottom: 10px;
    color: var(--gold);
}

.other-systems p {
    color: var(--text-muted);
}

.other-systems__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 28px;
    color: var(--text);
    list-style: disc;
    padding-left: 20px;
}

.other-systems__list li::marker {
    color: var(--gold);
}

.marquee {
    overflow: hidden;
    background: var(--gold);
/*    background: #e6e0e9;*/
    color: var(--on-gold);
}

.marquee__track {
    width: max-content;
    display: flex;
    animation: marquee 70s linear infinite;
    will-change: transform;
}

.marquee__group {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 64px;
    min-width: 100vw;
    padding: 13px 64px 13px 0;
}

.marquee span {
    font-family: "Oswald", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.pricing-carousel {
    width: min(100%, 1040px);
    margin-inline: auto;
}

.price-card {
    width: calc((100% - 32px) / 3);
    min-height: 500px;
    margin-right: 16px;
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    border-top: 2px solid rgba(148, 142, 156, 0.5);
}

.price-card--featured {
    border-top: 4px solid var(--gold);
    background: rgba(43, 41, 47, 0.88);
}

.price-card__badge {
    width: fit-content;
    margin: -48px auto 20px;
    padding: 5px 14px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--on-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.price-card h3 {
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 0.14em;
}

.price-card__price {
    margin-bottom: 24px;
    color: var(--text);
    font-family: "Oswald", Arial, sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.price-card__price span {
    margin-left: 4px;
    color: var(--text-muted);
    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.price-card ul {
    display: grid;
    gap: 14px;
    margin-bottom: 34px;
    color: var(--text-muted);
}

.price-card li {
    display: flex;
    gap: 8px;
}

.price-card li .material-symbols-outlined {
    flex: 0 0 auto;
    color: var(--gold);
    font-size: 18px;
}

.price-card .button {
    margin-top: auto;
    width: 100%;
}

.flickity-enabled {
    outline: none;
}

.pricing-carousel .flickity-viewport {
    padding-top: 20px;
}

.pricing-carousel .flickity-prev-next-button{
	top: 65%;
}

.pricing-carousel .flickity-prev-next-button.previous {
    left: -20px;
}

.pricing-carousel .flickity-prev-next-button.next {
    right: -20px;
}

.flickity-page-dots {
    bottom: -34px;
}

.flickity-page-dots .dot {
    background: var(--gold);
}

.flickity-button {
    background: rgba(255, 255, 255, 0.35);
    color: var(--on-gold);
}

.flickity-button:hover {
    background: var(--gold);
}

.protocol {
    background: var(--surface-low);
}

.protocol__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
    gap: clamp(32px, 6vw, 72px);
    align-items: start;
}

.steps {
    margin-top: 34px;
    display: grid;
    gap: 34px;
}

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

.step > div:first-child {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-family: "Oswald", Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.step:first-child > div:first-child {
    background: var(--gold);
    color: var(--on-gold);
}

.step h3 {
    margin-bottom: 6px;
}

.step p {
    color: var(--text-muted);
}

.checklist {
    padding: clamp(24px, 4vw, 38px);
}

.checklist h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.checklist h3 .material-symbols-outlined {
    color: var(--gold);
}

.checklist label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
    padding: 14px;
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
}

.checklist input {
    width: 22px;
    height: 22px;
    accent-color: var(--gold);
}

.checklist__note {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    padding: 14px;
    border: 1px solid rgba(231, 195, 101, 0.22);
    border-radius: 8px;
    background: rgba(231, 195, 101, 0.06);
}

.checklist__note img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.checklist__note p {
    color: var(--text-muted);
    font-size: 13px;
}

.about__grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
    gap: clamp(36px, 7vw, 80px);
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image > img,
.about__placeholder {
    width: 100%;
    aspect-ratio: 1;
    border: 4px solid rgba(231, 195, 101, 0.2);
    border-radius: 56px;
    object-fit: cover;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.about__stat {
    position: absolute;
    right: -24px;
    bottom: -24px;
    min-width: 150px;
    padding: 20px;
    border: 1px solid rgba(231, 195, 101, 0.35);
    border-radius: 8px;
    background: rgba(33, 31, 36, 0.86);
    text-align: center;
    backdrop-filter: blur(12px);
}

.about__stat strong {
    display: block;
    color: var(--gold);
    font-family: "Oswald", Arial, sans-serif;
    font-size: 34px;
    line-height: 1;
}

.about__stat span {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about__copy {
    display: grid;
    gap: 20px;
}

.about__copy .lead {
    color: var(--text);
    font-size: 18px;
}

.about__copy blockquote {
    color: var(--text-muted);
    font-style: italic;
}

.about__icons {
    display: flex;
    gap: 16px;
    padding-top: 8px;
}

.about__icons a {
    color: var(--gold);
    transition: color 180ms ease, transform 180ms ease;
}

.about__icons a:hover,
.about__icons a:focus {
    color: #aae8ff;
    transform: translateY(-2px);
}

.about__icons .material-symbols-outlined {
    font-size: 28px;
}

.testimonials {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(231, 195, 101, 0.035)),
        var(--dark);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
}

.testimonial-card {
    display: grid;
    align-content: space-between;
    min-height: 280px;
    padding: clamp(22px, 3vw, 30px);
}

.testimonial-card__icon {
    display: block;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
}

.testimonial-card blockquote {
    margin: 18px 0 28px;
    color: var(--text);
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.45;
}

.testimonial-card footer {
    display: grid;
    gap: 5px;
    padding-top: 18px;
    border-top: 1px solid rgba(231, 195, 101, 0.2);
}

.testimonial-card strong {
    color: var(--gold);
    font-family: "Oswald", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.testimonial-card footer span {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.4;
}

.contact__card {
    position: relative;
    width: min(100% - (var(--pad) * 2), 860px);
    margin-inline: auto;
    padding: clamp(26px, 5vw, 48px);
}

.contact__mascot {
    position: absolute;
    top: -46px;
    right: 36px;
    width: 86px;
    filter: drop-shadow(0 0 16px rgba(231, 195, 101, 0.18));
}

.contact .section-heading p span {
    color: var(--gold);
}

.gravity-form-wrap {
    color: #ffffff;
}

.gravity-form-wrap .gform_wrapper.gform-theme {
    --gf-color-in-ctrl: #17151b !important;
    --gf-color-in-ctrl-rgb: 23, 21, 27 !important;
    --gf-color-in-ctrl-contrast: #ffffff !important;
    --gf-color-in-ctrl-contrast-rgb: 255, 255, 255 !important;
    --gf-color-in-ctrl-darker: #100f14 !important;
    --gf-color-in-ctrl-lighter: #211f27 !important;
    --gf-color-out-ctrl-dark: #ffffff !important;
    --gf-color-out-ctrl-dark-rgb: 255, 255, 255 !important;
    --gf-color-out-ctrl-dark-darker: #ffffff !important;
    --gf-color-out-ctrl-dark-lighter: rgba(255, 255, 255, 0.72) !important;
    --gf-ctrl-border-color: rgba(255, 255, 255, 0.14) !important;
    --gf-ctrl-label-color-primary: #ffffff !important;
    --gf-ctrl-label-color-secondary: #ffffff !important;
    --gf-field-pg-steps-number-color: #ffffff !important;
    color: #ffffff !important;
}

.gravity-form-wrap .gform_wrapper .gfield_label,
.gravity-form-wrap .gform_wrapper .gform-field-label {
    color: #ffffff !important;
    font-family: "Oswald", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gravity-form-wrap .gform_wrapper .gfield_required,
.gravity-form-wrap .gform_wrapper .gfield_required_text,
.gravity-form-wrap .gform_wrapper .gfield_description,
.gravity-form-wrap .gform_wrapper .gform_required_legend,
.gravity-form-wrap .gform_wrapper .gform-field-label--type-sub,
.gravity-form-wrap .gform_wrapper .ginput_complex label,
.gravity-form-wrap .gform_wrapper .gchoice label,
.gravity-form-wrap .gform_wrapper .ginput_container_consent label,
.gravity-form-wrap .gform_wrapper .ginput_counter {
    color: #ffffff !important;
}

.gravity-form-wrap .gform_wrapper input[type="text"],
.gravity-form-wrap .gform_wrapper input[type="email"],
.gravity-form-wrap .gform_wrapper input[type="tel"],
.gravity-form-wrap .gform_wrapper input[type="url"],
.gravity-form-wrap .gform_wrapper input[type="number"],
.gravity-form-wrap .gform_wrapper input[type="password"],
.gravity-form-wrap .gform_wrapper input[type="search"],
.gravity-form-wrap .gform_wrapper textarea,
.gravity-form-wrap .gform_wrapper select {
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 8px;
    background: #17151b !important;
    color: #ffffff !important;
    padding: 14px 16px;
}

.gravity-form-wrap .gform_wrapper input::placeholder,
.gravity-form-wrap .gform_wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.58);
    opacity: 1;
}

.gravity-form-wrap .gform_wrapper select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.25 1.5L7 7.25L12.75 1.5' stroke='%23aae8ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-position: right 16px center !important;
    background-repeat: no-repeat !important;
    background-size: 14px 9px !important;
    padding-right: 48px !important;
}

.gravity-form-wrap .gform_wrapper input:focus,
.gravity-form-wrap .gform_wrapper textarea:focus,
.gravity-form-wrap .gform_wrapper select:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 2px rgba(231, 195, 101, 0.2) !important;
    outline: none;
}

.gravity-form-wrap .gform_wrapper .gform_button,
.gravity-form-wrap .gform_wrapper button,
.gravity-form-wrap .gform_wrapper input[type="submit"] {
    min-height: 52px;
    border: 0;
    border-radius: 8px;
    background: var(--gold);
    color: var(--on-gold);
    font-family: "Oswald", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
}

.subscribe-pop {
    position: fixed;
    z-index: 1200;
    right: 20px;
    bottom: 20px;
    width: min(calc(100vw - 32px), 390px);
    padding: 24px;
    border: 1px solid rgba(231, 195, 101, 0.34);
    border-radius: 8px;
    background: rgba(20, 18, 24, 0.96);
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
    transform: translateY(24px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease, transform 240ms ease;
}

.subscribe-pop.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.subscribe-pop__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--surface-high);
    color: var(--text);
    cursor: pointer;
}

.subscribe-pop h2 {
    padding-right: 30px;
    color: var(--gold);
    font-size: 28px;
}

.subscribe-pop p {
    margin: 8px 0 16px;
    color: var(--text-muted);
}

.gravity-form-wrap--compact .gform_wrapper .gfield {
    margin-bottom: 8px;
}

.gravity-form-wrap--compact .gform_wrapper .gform_button,
.gravity-form-wrap--compact .gform_wrapper input[type="submit"] {
    width: 100%;
    min-height: 44px;
    font-size: 14px;
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent {
    position: fixed;
    z-index: 1300;
    right: 16px;
    bottom: 16px;
    left: 16px;
    color: #ffffff;
    transform: translateY(18px);
    opacity: 0;
    transition: opacity 220ms ease, transform 220ms ease;
}

.cookie-consent--is-visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent__inner {
    width: min(100%, 980px);
    margin-left: auto;
    padding: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    border: 1px solid rgba(170, 232, 255, 0.38);
    border-radius: 10px;
    background: rgba(20, 18, 24, 0.98);
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.48);
}

.cookie-consent__title {
    margin-bottom: 4px;
    color: #aae8ff;
    font-size: 22px;
    line-height: 1.2;
}

.cookie-consent__description {
    max-width: 680px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.55;
}

.cookie-consent__link {
    color: #aae8ff;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-consent__button {
    min-height: 44px;
    padding: 11px 16px;
    border-radius: 6px;
    font-family: "Oswald", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.cookie-consent__button--primary {
    border: 1px solid #aae8ff;
    background: #aae8ff;
    color: #10232c;
}

.cookie-consent__button--secondary {
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: transparent;
    color: #ffffff;
}

.cookie-consent__link:focus-visible,
.cookie-consent__button:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

.site-footer {
    padding: 72px var(--pad) 8px;
    background: linear-gradient(0deg, var(--surface-lowest), var(--surface));
}

.site-footer__inner {
    width: min(100%, var(--wrap));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(180px, 0.8fr) minmax(180px, 0.8fr);
    gap: 32px;
}

.site-footer__logo {
    margin-bottom: 14px;
    color: var(--gold);
    font-size: clamp(34px, 4vw, 46px);
    font-style: italic;
}

.site-footer p,
.footer-menu a {
    color: var(--text-muted);
}

.site-footer h2 {
    margin-bottom: 14px;
    color: var(--text);
    font-size: 16px;
    letter-spacing: 0.1em;
}

.footer-menu {
    display: grid;
    gap: 10px;
}

.footer-menu a:hover {
    color: var(--gold);
}

.site-footer__socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.site-footer__socials a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--surface-mid);
    color: var(--text);
    transition: color 180ms ease, background-color 180ms ease;
}

.site-footer__socials a:hover {
    color: var(--gold);
    background: var(--surface-high);
}

.site-footer__mascot {
    width: 64px;
    margin-top: 18px;
    opacity: 0.45;
    filter: grayscale(1);
}

.site-footer__bottom {
    width: min(100%, var(--wrap));
    margin: 56px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(73, 69, 81, 0.28);
    text-align: center;
}

.site-footer__bottom p {
    font-size: 14px;
}

.standard-content {
    width: min(100% - (var(--pad) * 2), 860px);
    margin-inline: auto;
    padding-bottom: var(--section);
}

.standard-content h1 {
    margin: 48px 0 24px;
}

@media (max-width: 980px) {
    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        right: var(--pad);
        left: var(--pad);
        display: none;
        padding: 18px;
        border: 1px solid rgba(73, 69, 81, 0.42);
        border-radius: 8px;
        background: rgba(20, 18, 24, 0.98);
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    }

    .primary-nav.is-open {
        display: block;
    }

    .primary-menu {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
    }

    .primary-menu a,
    .primary-menu > li:last-child > a {
        width: 100%;
        justify-content: center;
    }

    .hero__inner,
    .protocol__grid,
    .about__grid,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero__media {
        max-width: 520px;
        width: 100%;
        margin-inline: auto;
    }

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

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

    .price-card {
        width: calc((100% - 16px) / 2);
    }

    .other-systems {
        grid-template-columns: 1fr;
    }

    .brand-slide {
        width: 20%;
    }

    .site-footer__inner {
        gap: 42px;
    }
}

@media (max-width: 820px) {
    .brand-slide {
        width: 25%;
        padding-inline: 7px;
    }

    .brand-slide span,
    .brand-slide img {
        height: 64px;
    }
}

@media (max-width: 680px) {
    .site-header__inner {
        min-height: 72px;
    }

    .site-brand {
        font-size: 26px;
    }

    .site-main {
        padding-top: 72px;
    }

    .hero__actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .hero__media {
        max-width: 560px;
        min-height: clamp(330px, 82vw, 460px);
        margin-top: 12px;
    }

    .hero__frame {
        width: 43%;
        padding: 6px;
    }

    .section-heading--split {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .repair-card--wide {
        grid-column: auto;
    }

    .other-systems__list {
        grid-template-columns: 1fr;
    }

    .brand-slide {
        width: 50%;
        padding-inline: 6px;
    }

    .brand-slide span,
    .brand-slide img {
        height: 58px;
    }

    .price-card {
        width: 100%;
        min-height: 460px;
    }

    .flickity-prev-next-button {
        width: 34px;
        height: 34px;
    }

    .about__image > img,
    .about__placeholder {
        border-radius: 28px;
    }

    .about__stat {
        right: 12px;
        bottom: 12px;
    }

    .contact__mascot {
        display: none;
    }

    .subscribe-pop {
        right: 16px;
        bottom: 16px;
    }

    .cookie-consent__inner {
        grid-template-columns: 1fr;
    }

    .cookie-consent__actions {
        justify-content: stretch;
    }

    .cookie-consent__button {
        flex: 1 1 180px;
    }
}

@media (max-width: 420px) {
    .brand-slide {
        width: 76%;
    }

    .brand-slide span,
    .brand-slide img {
        height: 56px;
    }
}

@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;
    }

    .marquee__track {
        width: 100%;
        animation: none !important;
        transform: none !important;
    }

    .marquee__group:not(:first-child),
    .marquee__group:first-child span:not(:first-child) {
        display: none;
    }

    .marquee__group {
        width: 100%;
        min-width: 0;
        justify-content: center;
        padding-inline: 16px;
    }

    .marquee span {
        white-space: normal;
        text-align: center;
    }

    .cookie-consent {
        transition: none;
    }
}
