/* ===================================================================
   Pro IT Elektro — light, high-voltage aesthetic (black + electric amber)
   =================================================================== */

:root {
    --bg: #f3f1ea;
    --bg-2: #ffffff;
    --ink: #16140f;
    --ink-2: #565046;
    --faint: #8a8375;
    --line: #e0dacb;
    --line-2: #d0c9b7;

    --amber: #ffb400;
    --amber-deep: #e08e00;
    --amber-soft: #fff2cf;
    --on-amber: #1c1400;

    --ok: #1f9d57;
    --radius: 16px;
    --radius-sm: 10px;
    --maxw: 1180px;

    --f-display: 'Outfit', system-ui, sans-serif;
    --f-body: 'Outfit', system-ui, sans-serif;
    --f-mono: 'Spline Sans Mono', ui-monospace, monospace;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--f-body);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4 {
    font-family: var(--f-display);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.02em;
}

.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 44px);
}

/* hazard stripe accent */
.hazard {
    height: 8px;
    width: 100%;
    background: repeating-linear-gradient(-45deg, var(--ink) 0 14px, var(--amber) 14px 28px);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 22px;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .2s var(--ease), box-shadow .2s, background .2s, color .2s;
    white-space: nowrap;
}

.btn svg {
    transition: transform .2s var(--ease);
}

.btn-primary {
    background: var(--amber);
    color: var(--on-amber);
    box-shadow: 0 6px 0 0 var(--amber-deep);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 0 0 var(--amber-deep);
}

.btn-primary:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 0 var(--amber-deep);
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-ghost {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
}

.btn-ghost:hover {
    background: var(--ink);
    color: var(--bg);
}

.btn-sm {
    padding: 9px 16px;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0 4px 0 0 var(--amber-deep);
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(243, 241, 234, .85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    height: 68px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -.02em;
}

.brand-bolt {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    background: var(--amber);
    color: var(--on-amber);
    border-radius: 9px;
    transform: rotate(-4deg);
}

.brand-text {
    white-space: nowrap;
}

.brand-text strong {
    color: var(--amber-deep);
}

.brand-lockup {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
}

.brand-text .tld {
    color: var(--faint);
    font-weight: 600;
}

.brand-by {
    font-family: var(--f-mono);
    font-size: 9.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--faint);
    font-weight: 600;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.main-nav a {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink-2);
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width .25s var(--ease);
}

.main-nav a:hover {
    color: var(--ink);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    font-family: var(--f-mono);
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: .3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav[hidden] {
    display: none;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 10px clamp(20px, 5vw, 44px) 18px;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
}

.mobile-nav a {
    padding: 12px 0;
    font-weight: 600;
    color: var(--ink-2);
    border-bottom: 1px solid var(--line);
}

.mobile-nav a:last-child {
    border: 0;
}

.mobile-phone {
    color: var(--amber-deep) !important;
    font-family: var(--f-mono);
}

/* ---------- Sections ---------- */
section {
    padding: clamp(64px, 9vw, 110px) 0;
    position: relative;
}

.sec-kicker {
    font-family: var(--f-mono);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--amber-deep);
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
}

.sec-kicker span {
    color: var(--faint);
}

.kicker {
    font-family: var(--f-mono);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--amber-deep);
    margin-bottom: 20px;
}

.sec-head {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    align-items: end;
    margin-bottom: 52px;
}

.sec-head h2 {
    font-size: clamp(28px, 4vw, 44px);
}

.sec-intro {
    color: var(--ink-2);
    font-size: 17px;
}

/* ---------- Hero ---------- */
.hero {
    padding-top: 0;
    background:
        radial-gradient(700px 380px at 88% -8%, var(--amber-soft), transparent 60%),
        var(--bg);
}

.hero>.hazard {
    margin-bottom: clamp(40px, 6vw, 72px);
}

.hero-inner {
    display: block;
    max-width: 820px;
    padding-bottom: clamp(40px, 6vw, 72px);
}

.hero h1 {
    font-size: clamp(38px, 6.4vw, 74px);
    font-weight: 800;
    margin-bottom: 22px;
}

.hero .mark {
    background: linear-gradient(180deg, transparent 62%, var(--amber) 62% 92%, transparent 92%);
    padding: 0 .05em;
}

.hero-lead {
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--ink-2);
    max-width: 560px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
}

.hero-badges li {
    font-family: var(--f-mono);
    font-size: 12.5px;
    color: var(--ink-2);
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 14px;
}

.hero-badges li::before {
    content: "⚡ ";
    color: var(--amber-deep);
}

/* electrical panel card */
.panel {
    background: var(--ink);
    color: #f0ece2;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .5);
}

.panel-top {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-family: var(--f-mono);
    font-size: 13px;
}

.panel-bolt {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    background: var(--amber);
    color: var(--on-amber);
    border-radius: 7px;
}

.panel-title {
    color: #b9b2a2;
}

.panel-live {
    margin-left: auto;
    color: var(--amber);
    font-size: 10.5px;
    letter-spacing: .12em;
    border: 1px solid var(--amber-deep);
    border-radius: 5px;
    padding: 2px 8px;
}

.panel-rows {
    padding: 8px 18px;
}

.prow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 14.5px;
}

.prow:last-child {
    border-bottom: 0;
}

.prow span {
    color: #b9b2a2;
}

.prow b {
    font-family: var(--f-mono);
    font-weight: 600;
}

.prow .ok {
    color: #6fe0a0;
}

.panel-foot {
    padding: 16px 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.gauge {
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .1);
    overflow: hidden;
    margin-bottom: 9px;
}

.gauge i {
    display: block;
    height: 100%;
    width: var(--w);
    background: linear-gradient(90deg, var(--amber-deep), var(--amber));
    animation: grow 1.3s var(--ease) both;
}

@keyframes grow {
    from {
        width: 0;
    }
}

.panel-foot span {
    font-family: var(--f-mono);
    font-size: 12px;
    color: #6fe0a0;
}

/* ---------- Trust strip ---------- */
.trust {
    padding: 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-grid div {
    background: var(--bg);
    padding: 26px 24px;
    text-align: center;
}

.trust-grid b {
    font-family: var(--f-display);
    font-size: clamp(20px, 2.6vw, 28px);
    display: block;
    color: var(--ink);
}

.trust-grid span {
    font-size: 13.5px;
    color: var(--ink-2);
    margin-top: 4px;
    display: block;
}

/* ---------- Services ---------- */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.svc {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 22px;
    transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}

.svc::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 4px;
    width: 100%;
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}

.svc:hover {
    transform: translateY(-5px);
    border-color: var(--line-2);
    box-shadow: 0 24px 40px -26px rgba(0, 0, 0, .35);
}

.svc:hover::before {
    transform: scaleX(1);
}

.svc-ico {
    font-size: 30px;
    display: block;
    margin-bottom: 14px;
    line-height: 1;
}

.svc h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.svc>p {
    color: var(--ink-2);
    font-size: 14px;
    margin-bottom: 13px;
}

.svc ul {
    list-style: none;
    display: grid;
    gap: 6px;
}

.svc ul li {
    font-size: 13px;
    color: var(--faint);
    padding-left: 17px;
    position: relative;
}

.svc ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--amber-deep);
}

/* ---------- Audience ---------- */
.audience {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

.aud {
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    padding: 30px 26px;
    background: var(--bg);
    transition: transform .25s var(--ease), background .25s;
}

.aud:hover {
    transform: translateY(-4px);
    background: var(--amber-soft);
}

.aud h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.aud p {
    color: var(--ink-2);
    font-size: 15px;
}

/* ---------- Process ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.step {
    padding: 26px 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg-2);
}

.step-n {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--amber);
    color: var(--on-amber);
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.step p {
    color: var(--ink-2);
    font-size: 14px;
}

/* ---------- Why ---------- */
.why {
    background:
        radial-gradient(600px 320px at 12% 10%, var(--amber-soft), transparent 60%),
        var(--bg);
}

.why-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(34px, 5vw, 70px);
    align-items: center;
}

.why-copy h2 {
    font-size: clamp(26px, 3.6vw, 40px);
    margin: 6px 0 24px;
}

.check {
    list-style: none;
    display: grid;
    gap: 13px;
    margin-bottom: 30px;
}

.check li {
    padding-left: 32px;
    position: relative;
    color: var(--ink);
    font-size: 15.5px;
}

.check li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: var(--amber);
}

.check li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    width: 5px;
    height: 9px;
    border: solid var(--on-amber);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.brands {
    background: var(--ink);
    border-radius: var(--radius);
    padding: 30px 28px;
}

.brands-label {
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #b9b2a2;
    margin-bottom: 18px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 10px;
}

.brands-grid span {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 16px;
    color: #efe9dd;
    text-align: center;
    padding: 9px 4px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    transition: color .2s, border-color .2s;
}

.brands-grid span:hover {
    color: var(--amber);
    border-color: var(--amber-deep);
}

/* ---------- Contact ---------- */
.contact {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
}

.contact-inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(34px, 5vw, 64px);
    align-items: start;
}

.contact-copy h2 {
    font-size: clamp(26px, 3.6vw, 40px);
    margin: 6px 0 16px;
}

.contact-lead {
    color: var(--ink-2);
    margin-bottom: 28px;
}

.cinfo {
    list-style: none;
    display: grid;
    gap: 16px;
}

.cinfo li {
    display: flex;
    flex-direction: column;
    gap: 3px;
    border-left: 3px solid var(--amber);
    padding-left: 14px;
}

.ci-label {
    font-family: var(--f-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--faint);
}

.cinfo a,
.ci-plain {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
}

.cinfo a:hover {
    color: var(--amber-deep);
}

/* form */
.form-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(22px, 3vw, 34px);
}

.field {
    margin-bottom: 16px;
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-2);
    margin-bottom: 7px;
}

.field .opt {
    color: var(--faint);
    font-weight: 400;
}

.field input,
.field textarea {
    width: 100%;
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-family: var(--f-body);
    font-size: 15px;
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--faint);
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 3px var(--amber-soft);
}

.hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13.5px;
    color: var(--ink-2);
    margin: 4px 0 16px;
    cursor: pointer;
}

.consent input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--amber-deep);
    flex-shrink: 0;
}

.cf-turnstile {
    margin-bottom: 16px;
    min-height: 65px;
}

.form-msg {
    margin-top: 12px;
    font-size: 14px;
    text-align: center;
    min-height: 20px;
}

.form-msg.ok {
    color: var(--ok);
}

.form-msg.err {
    color: #c0392b;
}

.btn.is-loading {
    opacity: .7;
    pointer-events: none;
}

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    padding: 0 clamp(12px, 4vw, 24px);
    transform: translateY(130%);
    transition: transform .45s var(--ease);
    pointer-events: none;
}

.cookie-banner.show {
    transform: none;
    pointer-events: auto;
}

.cookie-inner {
    max-width: var(--maxw);
    margin: 0 auto 16px;
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    gap: 22px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    box-shadow: 0 24px 50px -24px rgba(0, 0, 0, .35);
}

.cookie-text strong {
    font-family: var(--f-display);
    font-size: 15px;
}

.cookie-text p {
    color: var(--ink-2);
    font-size: 13px;
    line-height: 1.55;
    margin-top: 5px;
    max-width: 640px;
}

.cookie-text a {
    color: var(--amber-deep);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 14px;
    padding: 11px 18px;
    border-radius: 9px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform .2s var(--ease), border-color .2s, background .2s, color .2s;
    white-space: nowrap;
}

.cookie-reject {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
}

.cookie-reject:hover {
    background: var(--ink);
    color: var(--bg);
}

.cookie-accept {
    background: var(--amber);
    color: var(--on-amber);
    box-shadow: 0 4px 0 var(--amber-deep);
}

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

.footer-legal-btn {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    font: inherit;
    color: #a49d8f;
    font-size: 13.5px;
    transition: color .2s;
}

.footer-legal-btn:hover {
    color: var(--amber);
}

@media (max-width: 640px) {
    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
    }

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

    .cookie-btn {
        flex: 1;
    }
}

/* ---------- Privacy note under form ---------- */
.form-privacy {
    margin: 2px 0 8px;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--faint);
}

.form-privacy a {
    color: var(--ink-2);
    text-decoration: underline;
}

.form-privacy a:hover {
    color: var(--amber-deep);
}

/* ---------- Footer legal links ---------- */
.footer-legal {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #a49d8f;
    font-size: 13.5px;
}

.footer-legal a:hover {
    color: var(--amber);
}

/* ---------- Legal pages ---------- */
.legal {
    max-width: 820px;
    padding: 40px clamp(20px, 5vw, 44px) 90px;
}

.legal h1 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 8px;
}

.legal .updated {
    font-family: var(--f-mono);
    font-size: 13px;
    color: var(--faint);
    margin-bottom: 30px;
    display: block;
}

.legal h2 {
    font-size: 21px;
    margin: 36px 0 12px;
}

.legal h3 {
    font-size: 16px;
    margin: 22px 0 8px;
}

.legal p,
.legal li {
    color: var(--ink-2);
    margin-bottom: 12px;
}

.legal ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

.legal a {
    color: var(--amber-deep);
    text-decoration: underline;
}

.legal dl {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 10px 20px;
    margin: 12px 0 20px;
}

.legal dt {
    color: var(--faint);
    font-weight: 500;
}

.legal dd {
    color: var(--ink);
    margin: 0;
}

.legal .todo {
    background: var(--amber-soft);
    border: 1px solid var(--amber);
    color: var(--ink);
    padding: 1px 7px;
    border-radius: 5px;
    font-family: var(--f-mono);
    font-size: .88em;
}

@media (max-width: 560px) {
    .legal dl {
        grid-template-columns: 1fr;
        gap: 2px 0;
    }

    .legal dt {
        margin-top: 8px;
    }
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--ink);
    color: #cfc9bc;
}

.site-footer .hazard {
    height: 6px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 34px;
    padding: 54px 0 34px;
}

.foot-brand .brand {
    color: #fff;
    margin-bottom: 14px;
}

.foot-brand .brand-text strong {
    color: var(--amber);
}

.foot-brand p {
    font-size: 14.5px;
    max-width: 340px;
    color: #a49d8f;
}

.foot-col h4 {
    font-family: var(--f-mono);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #fff;
    margin-bottom: 14px;
}

.foot-col a {
    display: block;
    color: #a49d8f;
    font-size: 14.5px;
    padding: 5px 0;
}

.foot-col a:hover {
    color: var(--amber);
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 20px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 13px;
    color: #8b8578;
    flex-wrap: wrap;
    font-family: var(--f-mono);
}

/* ---------- Back to top ---------- */
.to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: var(--amber);
    color: var(--on-amber);
    display: grid;
    place-items: center;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: .3s var(--ease);
    z-index: 40;
    box-shadow: 0 4px 0 var(--amber-deep);
}

.to-top.show {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

/* ---------- Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
    transition-delay: var(--d, 0s);
}

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

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

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 880px) {

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

    .nav-toggle {
        display: flex;
    }

    .hero-inner,
    .why-inner,
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .panel {
        max-width: 440px;
    }

    .sec-head {
        grid-template-columns: 1fr;
        gap: 14px;
    }

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

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

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

@media (max-width: 560px) {
    .svc-grid,
    .steps,
    .frow,
    .brands-grid {
        grid-template-columns: 1fr;
    }

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

    .hero h1 {
        font-size: clamp(34px, 11vw, 48px);
    }
}
