/* Check the air — promotional landing page
   Vanilla CSS, no frameworks. Edit colors via :root variables below.
   © 2026 Damian Dąbek */

:root {
    --bg: #0a0a0a;
    --bg-alt: #050505;
    --bg-card: #111;
    --border: #1f1f1f;
    --border-strong: #2a2a2a;
    --text: #f0f0f0;
    --text-muted: #8a8a8a;
    --text-dim: #5a5a5a;
    --red: #FF3B30;
    --red-glow: rgba(255, 59, 48, 0.4);
    --green: #32D74B;
    --blue: #007AFF;
    --yellow: #FFCC00;
    --orange: #FF8A00;
    --violet: #8B5CF6;
    --coffee: #FFDD00;
    --coffee-dark: #b89500;
    --max-w: 1180px;
    --radius: 0;
    --shadow-lift: 0 6px 24px -8px rgba(0,0,0,0.6);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .15s ease; }
a:hover, a:focus-visible { color: #5AC8FA; outline: none; }
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; top: -40px; left: 8px; background: var(--yellow); color: #000; padding: 8px 12px; font-weight: 800; z-index: 100; }
.skip-link:focus { top: 8px; }

/* HEADER */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav {
    display: flex; align-items: center; gap: 24px;
    height: 64px;
}
.brand {
    display: flex; align-items: center; gap: 14px;
    color: var(--text); font-weight: 900;
    flex: 0 0 auto;
    min-width: 0;
}
.brand img:not(.made-in-pl) {
    width: 52px; height: 52px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}
.brand-name {
    font-family: "Helvetica Neue", Arial, sans-serif;
    display: flex; flex-direction: column; gap: 2px;
    line-height: 1.1;
}
.brand-title {
    font-size: 14px; letter-spacing: 0.2em; font-weight: 900; color: var(--text);
}
.brand-tagline {
    font-size: 9px; letter-spacing: 0.12em; color: var(--text-dim);
    text-transform: uppercase; font-weight: 700;
    max-width: 260px;
}
@media (max-width: 760px) {
    .brand-tagline { display: none; }
}
.nav-links {
    display: flex; gap: 28px; margin-left: auto;
}
.nav-links a {
    color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.15em;
    font-size: 11px; font-weight: 800;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--text); }
.lang-select {
    background: var(--bg-card); color: var(--text);
    border: 1px solid var(--border-strong); padding: 6px 10px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
}
@media (max-width: 760px) {
    .nav-links { display: none; }
}

/* HERO */
.hero {
    padding: 80px 0 100px;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255,59,48,0.15), transparent 50%),
        radial-gradient(ellipse at 80% 60%, rgba(50,215,75,0.10), transparent 50%);
}
.hero-grid {
    display: grid; gap: 60px;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
}
@media (max-width: 880px) {
    .hero { padding: 50px 0 70px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-art { order: -1; }
}
.kicker {
    display: inline-block;
    font-size: 11px; letter-spacing: 0.25em;
    color: var(--green); font-weight: 900;
    text-transform: uppercase;
    border-left: 3px solid var(--green); padding-left: 10px;
    margin-bottom: 18px;
}
.h1 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05; font-weight: 900;
    margin: 0 0 24px; letter-spacing: -0.02em;
    color: var(--text);
}
.h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    line-height: 1.15; font-weight: 900;
    margin: 0 0 32px; letter-spacing: -0.015em;
    color: var(--text);
}
.lead {
    font-size: 18px; line-height: 1.6; color: var(--text-muted);
    margin: 0 0 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art img.hero-logo-main {
    width: 100%; max-width: 360px;
    filter: drop-shadow(0 20px 60px rgba(255,59,48,0.4));
    animation: pulse-glow 4s ease-in-out infinite;
}
.hero-variants {
    display: flex; gap: 24px; justify-content: center;
    margin-top: 24px;
}
.hero-variant { margin: 0; text-align: center; }
.hero-variant img {
    width: 96px; height: 96px;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
    transition: transform .2s ease;
}
.hero-variant:hover img { transform: translateY(-4px) scale(1.04); }
.hero-variant figcaption {
    margin-top: 8px;
    font-size: 11px; font-weight: 900;
    letter-spacing: 0.25em; color: var(--text-muted);
}
@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 20px 60px rgba(255,59,48,0.3)); }
    50% { filter: drop-shadow(0 20px 70px rgba(255,59,48,0.55)); }
}

.hero-badges {
    display: flex; flex-wrap: wrap; gap: 16px; margin: 28px 0 0;
    padding: 0; list-style: none;
}
.hero-badges li {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    padding: 8px 14px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.05em;
}

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 22px;
    font-size: 13px; font-weight: 900;
    text-transform: uppercase; letter-spacing: 0.15em;
    text-decoration: none; cursor: pointer;
    border: 2px solid transparent;
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn--primary {
    background: var(--red); color: #fff;
    box-shadow: 0 4px 16px -4px var(--red-glow);
}
.btn--primary:hover { background: #FF5247; color: #fff; }
.btn--ghost {
    background: transparent; color: var(--text);
    border-color: var(--border-strong);
}
.btn--ghost:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.btn--coffee {
    background: var(--coffee); color: #1a1a1a;
    box-shadow: 0 4px 16px -4px rgba(255,221,0,0.5);
    font-size: 15px; padding: 18px 32px;
}
.btn--coffee:hover { background: #FFE633; color: #000; }

/* SECTIONS */
.section { padding: 90px 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .kicker { border-left: none; border-bottom: 3px solid var(--green); padding: 0 0 6px; margin-bottom: 16px; }
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) { .grid--3, .grid--4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    padding: 28px;
    transition: border-color .15s ease, transform .15s ease;
}
.card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
}
.card-icon {
    font-size: 32px; line-height: 1;
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--c) 15%, transparent);
    border: 2px solid var(--c);
    margin-bottom: 18px;
}
.card h3 {
    font-size: 17px; font-weight: 900; margin: 0 0 12px;
    letter-spacing: -0.005em;
}
.card p {
    margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.6;
}

/* SCREENSHOTS */
.screens {
    display: grid; gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1000px) { .screens { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .screens { grid-template-columns: 1fr; } }
.screens figure {
    margin: 0; background: var(--bg-card);
    border: 1px solid var(--border-strong);
    overflow: hidden;
    transition: transform .15s ease, border-color .15s ease;
}
.screens figure:hover { transform: translateY(-4px); border-color: var(--red); }
.screens img { width: 100%; aspect-ratio: 9/16; object-fit: cover; background: #000; }
.screens figcaption {
    padding: 12px 16px;
    font-size: 12px; color: var(--text-muted);
    text-align: center; letter-spacing: 0.05em;
    text-transform: uppercase; font-weight: 700;
}

/* DOWNLOAD BANNER */
.banner {
    display: flex; gap: 24px; align-items: flex-start;
    border: 2px solid var(--yellow);
    background: linear-gradient(135deg, rgba(255,204,0,0.08), rgba(255,204,0,0.02));
    padding: 32px;
    max-width: 760px; margin: 0 auto;
}
.banner-icon { font-size: 48px; line-height: 1; flex-shrink: 0; }
.banner h3 {
    font-size: 22px; font-weight: 900; margin: 0 0 12px;
    color: var(--yellow); text-transform: uppercase; letter-spacing: 0.05em;
}
.banner p {
    margin: 0 0 20px; color: var(--text); line-height: 1.65;
}

/* DONATE */
.donate {
    background:
        radial-gradient(ellipse at center, rgba(255,221,0,0.08), transparent 70%);
}
.donate-grid {
    display: grid; gap: 60px;
    grid-template-columns: 1.4fr 1fr; align-items: center;
}
@media (max-width: 880px) { .donate-grid { grid-template-columns: 1fr; } }
.donate .kicker { color: var(--coffee); border-color: var(--coffee); }
.donate .lead {
    color: var(--text); font-size: 17px;
    border-left: 3px solid var(--coffee);
    padding: 8px 0 8px 18px;
    margin: 0 0 24px;
}
.donate .signature {
    font-size: 20px; font-weight: 900; color: var(--coffee);
    margin: 0 0 28px; letter-spacing: 0.02em;
}
.donate-art img {
    max-width: 280px; margin: 0 auto;
    filter: drop-shadow(0 12px 40px rgba(255,221,0,0.4));
}

/* FOOTER */
.site-footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 70px 0 30px;
    color: var(--text-muted);
}
.footer-grid {
    display: grid; gap: 40px;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    margin-bottom: 40px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h3 { font-size: 18px; color: var(--text); margin: 12px 0 8px; }
.site-footer h4 {
    font-size: 11px; color: var(--text);
    text-transform: uppercase; letter-spacing: 0.2em;
    margin: 0 0 14px; font-weight: 900;
}
.site-footer p { font-size: 13px; line-height: 1.6; margin: 0; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: var(--text-muted); font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700;
}
.footer-links a:hover { color: var(--text); }
.muted { color: var(--text-dim); font-size: 12px; line-height: 1.5; }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px; padding-bottom: 0;
    display: flex; gap: 12px; flex-wrap: wrap;
    font-size: 11px; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--text-dim);
}

/* RTL support for Arabic/Hebrew/Persian/Urdu */
html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .kicker { border-left: none; border-right: 3px solid var(--green); padding-left: 0; padding-right: 10px; }
html[dir="rtl"] .donate .lead { border-left: none; border-right: 3px solid var(--coffee); padding-left: 0; padding-right: 18px; }

/* DEMO PLAYER (auto-animated 4-step CSS demo) */
.demo-frame {
    display: grid; gap: 60px;
    grid-template-columns: 360px 1fr; align-items: center;
}
@media (max-width: 880px) { .demo-frame { grid-template-columns: 1fr; } }
.demo-phone {
    position: relative;
    width: 360px; height: 640px; margin: 0 auto;
    background: #050505;
    border: 8px solid #1a1a1a;
    border-radius: 36px;
    box-shadow: 0 30px 80px -20px rgba(255,59,48,0.4), 0 0 0 2px #333;
    overflow: hidden;
}
.demo-notch {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 110px; height: 22px; background: #000;
    border-bottom-left-radius: 12px; border-bottom-right-radius: 12px;
    z-index: 10;
}
.demo-screens { position: relative; width: 100%; height: 100%; }
.demo-screen {
    position: absolute; inset: 0;
    padding: 40px 18px 18px;
    display: flex; flex-direction: column; gap: 14px;
    opacity: 0; transform: translateX(40px);
    animation: demo-cycle 16s infinite;
}
.demo-screen--1 { animation-delay: 0s; }
.demo-screen--2 { animation-delay: 4s; }
.demo-screen--3 { animation-delay: 8s; }
.demo-screen--4 { animation-delay: 12s; }
@keyframes demo-cycle {
    0%, 3%   { opacity: 0; transform: translateX(40px); }
    5%, 22%  { opacity: 1; transform: translateX(0); }
    25%, 100% { opacity: 0; transform: translateX(-40px); }
}
.ds-bar {
    display: flex; align-items: center; justify-content: space-between;
    background: #0f0f0f; border: 1px solid #FF3B30; padding: 10px 14px;
    font-size: 10px; font-weight: 900; letter-spacing: 0.15em; color: #FF3B30;
}
.ds-bar--red    { border-color: #FF3B30; color: #FF3B30; background: #1a0000; }
.ds-bar--yellow { border-color: #FFCC00; color: #FFCC00; background: #1a1500; }
.ds-bar--blue   { border-color: #007AFF; color: #5AC8FA; background: #001428; }
.ds-clock { font-family: monospace; font-size: 12px; color: #fff; }
.ds-input {
    background: #0a0a0a; border: 1px solid #2a2a2a;
    padding: 18px; display: flex; align-items: center; justify-content: space-between;
}
.ds-label { font-size: 9px; letter-spacing: 0.2em; color: #888; font-weight: 900; }
.ds-val { font-size: 32px; color: #fff; font-weight: 900; }
.ds-row {
    display: flex; align-items: center; justify-content: space-between;
    background: #0f0f0f; border-left: 4px solid #FF3B30;
    padding: 14px 16px; font-size: 12px; color: #fff;
}
.ds-row--red  { border-left-color: #FF3B30; }
.ds-row--blue { border-left-color: #007AFF; }
.ds-row span:first-child { color: #888; font-weight: 900; letter-spacing: 0.1em; font-size: 10px; }
.ds-row span:last-child  { font-weight: 900; }
.ds-cta {
    margin-top: auto; padding: 14px;
    text-align: center; font-weight: 900; letter-spacing: 0.2em; font-size: 12px;
}
.ds-cta--green { background: #32D74B; color: #000; }
.ds-gauge {
    position: relative; width: 200px; height: 200px; margin: 12px auto;
    border-radius: 50%; background: #050505; border: 4px solid #1a1a1a;
    box-shadow: inset 0 4px 16px rgba(0,0,0,0.6);
    display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.ds-gauge::before {
    content: ''; position: absolute; inset: 12px;
    border-radius: 50%;
    background:
        conic-gradient(from 225deg, #32D74B 0deg, #32D74B 90deg, #FFCC00 90deg, #FFCC00 180deg, #FF3B30 180deg, #FF3B30 270deg, transparent 270deg);
    opacity: 0.25;
}
.ds-needle {
    position: absolute; left: 50%; top: 50%;
    width: 4px; height: 80px; background: #FF3B30;
    transform-origin: 50% 100%;
    transform: translate(-50%, -100%) rotate(35deg);
    box-shadow: 0 0 10px rgba(255,59,48,0.6);
}
.ds-gauge-val { font-size: 44px; color: #fff; font-weight: 900; line-height: 1; z-index: 1; }
.ds-gauge-unit { font-size: 11px; color: #888; letter-spacing: 0.2em; font-weight: 900; z-index: 1; }
.ds-info { text-align: center; color: #888; font-size: 13px; }
.ds-info strong { color: #32D74B; font-family: monospace; font-size: 16px; }
.ds-rate {
    text-align: center; padding: 24px 0;
    background: #1a1500; border: 1px solid #FFCC00;
}
.ds-rate-val { font-size: 56px; color: #FFCC00; font-weight: 900; }
.ds-rate-unit { font-size: 14px; color: #888; margin-left: 8px; }
.ds-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ds-tile {
    background: #0f0f0f; padding: 12px 8px; text-align: center;
    border: 1px solid;
}
.ds-tile--green  { border-color: #32D74B; }
.ds-tile--yellow { border-color: #FFCC00; }
.ds-tile--blue   { border-color: #007AFF; }
.ds-tile span { display: block; font-size: 8px; letter-spacing: 0.2em; color: #888; font-weight: 900; margin-bottom: 4px; }
.ds-tile strong { font-size: 18px; color: #fff; }
.demo-progress {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 4px; background: rgba(255,255,255,0.05);
    z-index: 20;
}
.demo-progress-bar {
    height: 100%; background: linear-gradient(90deg, #FF3B30, #FFCC00, #007AFF, #32D74B);
    animation: demo-progress 16s linear infinite;
}
@keyframes demo-progress {
    0%   { width: 0%; }
    100% { width: 100%; }
}
.demo-steps {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 14px;
    counter-reset: step;
}
.demo-step {
    counter-increment: step;
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px;
    background: var(--bg-card); border: 1px solid var(--border-strong);
    font-size: 14px; color: var(--text-muted);
    transition: all .3s ease;
}
.demo-step::before {
    content: counter(step);
    width: 32px; height: 32px;
    background: #1a1a1a; color: #666;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 14px;
    flex-shrink: 0;
}
.demo-step--1 { animation: demo-step-hl 16s infinite 0s; }
.demo-step--2 { animation: demo-step-hl 16s infinite 4s; }
.demo-step--3 { animation: demo-step-hl 16s infinite 8s; }
.demo-step--4 { animation: demo-step-hl 16s infinite 12s; }
@keyframes demo-step-hl {
    0%, 25%, 100% {
        background: var(--bg-card); border-color: var(--border-strong); color: var(--text-muted);
    }
    1%, 24% {
        background: rgba(50, 215, 75, 0.08);
        border-color: #32D74B;
        color: var(--text);
        transform: translateX(8px);
    }
}

/* CONTACT */
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    padding: 24px;
    display: block; text-decoration: none;
    transition: all .15s ease;
}
.contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--c, var(--blue));
    box-shadow: 0 12px 32px -10px rgba(0,0,0,0.6);
}
.contact-icon {
    font-size: 28px; line-height: 1;
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--c) 15%, transparent);
    border: 2px solid var(--c);
    margin-bottom: 16px;
}
.contact-card h3 {
    font-size: 14px; font-weight: 900; margin: 0 0 8px;
    text-transform: uppercase; letter-spacing: 0.1em; color: var(--text);
}
.contact-card p {
    font-size: 13px; color: var(--text-muted);
    line-height: 1.5; margin: 0 0 14px;
}
.contact-mail {
    display: block;
    font-family: monospace; font-size: 12px;
    color: var(--text); font-weight: 700;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    word-break: break-all;
}
.contact-card:hover .contact-mail { color: var(--c, var(--blue)); }

/* RAD trefoil icon (replaces emoji in card) */
.card-icon--rad svg { display: block; }

/* MADE IN POLAND badge in header — v82.23: powiększone na prośbę operatora */
.made-in-pl {
    width: 112px; height: 44px;
    flex-shrink: 0;
    filter: drop-shadow(0 3px 8px rgba(220, 20, 60, 0.45));
    transition: transform .15s ease;
}
.made-in-pl:hover { transform: scale(1.08); }
@media (max-width: 760px) {
    .made-in-pl { width: 84px; height: 34px; }
}

/* Hero logo — square aspect (no stretch) */
.hero-art img.hero-logo-main {
    width: 100%; max-width: 420px; height: auto;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    filter: drop-shadow(0 20px 60px rgba(255,59,48,0.45));
    animation: pulse-glow 4s ease-in-out infinite;
}
.hero-variant img {
    width: 140px; height: auto; max-height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.5));
}

/* BMC QR */
.bmc-qr-block {
    margin-top: 28px;
    display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 16px;
    background: #ffffff;
    border: 3px solid #FFDD00;
    border-radius: 6px;
}
.bmc-qr-block img {
    width: 160px; height: 160px;
    image-rendering: -webkit-optimize-contrast;
}
.bmc-qr-block span {
    font-size: 11px; font-weight: 900; letter-spacing: 0.15em;
    color: #1a1a1a; text-transform: uppercase;
}

/* Contact form */
.contact-form-wrap {
    max-width: 760px; margin: 70px auto 0;
    padding: 36px; background: var(--bg-card);
    border: 1px solid var(--border-strong);
}
.contact-form-wrap h3 {
    font-size: 22px; font-weight: 900; margin: 0 0 8px;
    letter-spacing: -0.005em; color: var(--text);
}
.contact-form-wrap > p { margin: 0 0 24px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.cf-row {
    display: grid; gap: 14px; grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) { .cf-row { grid-template-columns: 1fr; } }
.contact-form label {
    display: flex; flex-direction: column; gap: 6px;
    font-size: 11px; letter-spacing: 0.15em; font-weight: 900;
    color: var(--text-muted); text-transform: uppercase;
}
.contact-form input, .contact-form select, .contact-form textarea {
    background: var(--bg-alt); color: var(--text);
    border: 1px solid var(--border-strong);
    padding: 12px 14px;
    font-size: 14px; font-family: inherit;
    transition: border-color .15s ease;
    text-transform: none; letter-spacing: 0;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--red);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.cf-honeypot { display: none !important; }
.cf-actions {
    display: flex; align-items: center; gap: 16px; margin-top: 10px;
}
.cf-status {
    font-size: 12px; font-weight: 700;
}
.cf-status.success { color: var(--green); }
.cf-status.error { color: var(--red); }
.cf-privacy { font-size: 11px !important; margin: 0; }

