/* ═══════════════════════════════════════════════════════
   TransferFleet — Shared Stylesheet for Legal + Blog Pages
   Matches dark theme from index.html
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #0a0a0f;
  --bg-soft: #0d0d15;
  --card: #111118;
  --card-border: #1a1a25;
  --card-border-soft: rgba(255,255,255,0.06);
  --cyan: #06b6d4;
  --blue: #3b82f6;
  --green: #22c55e;
  --amber: #f59e0b;
  --red: #ef4444;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --gradient: linear-gradient(135deg, #06b6d4, #3b82f6);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Subtle gradient aura in background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(6,182,212,0.08), transparent 50%),
    radial-gradient(ellipse at 85% 100%, rgba(59,130,246,0.06), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ─────────────  TOP BAR / NAV  ───────────── */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--card-border);
  padding: 14px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.top-bar .brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.top-bar .doc-title {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.top-bar a { color: inherit; text-decoration: none; }

/* ─────────────  CONTAINER  ───────────── */
.container {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px 80px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 32px 0 0 0;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  transition: all 0.25s ease;
}
.back-link:hover {
  color: var(--cyan);
  border-color: rgba(6,182,212,0.4);
  background: rgba(6,182,212,0.05);
  transform: translateX(-2px);
}

/* ─────────────  TYPOGRAPHY  ───────────── */
h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 32px 0 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--card-border);
  color: var(--text);
  line-height: 1.2;
}
h1 .accent,
h1 .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 40px;
  letter-spacing: 0.3px;
}

h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--card-border);
  letter-spacing: -0.2px;
}

h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-top: 28px;
  margin-bottom: 10px;
}

p, li {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 12px;
}
p strong, li strong { color: var(--text); font-weight: 600; }

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--blue); text-decoration: underline; }

ul, ol { padding-left: 22px; margin-bottom: 16px; }
ul li, ol li { margin-bottom: 6px; }

/* ─────────────  CONTACT CARD  ───────────── */
.contact-card {
  background: linear-gradient(180deg, rgba(6,182,212,0.04), rgba(59,130,246,0.02));
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 28px 32px;
  margin: 28px 0;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient);
  opacity: 0.5;
}
.contact-card .name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-card .brand-name {
  font-size: 13px;
  color: var(--cyan);
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-grid .label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-dim);
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-grid .value {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}
.contact-grid a { color: var(--cyan); }
.contact-grid a:hover { color: var(--blue); }

/* ─────────────  INFO BOXES  ───────────── */
.info-box {
  border-radius: 10px;
  padding: 18px 22px;
  margin: 20px 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-muted);
  border-left: 3px solid var(--card-border);
  background: rgba(255,255,255,0.02);
}
.info-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--text);
}
.info-box.gray   { background: rgba(148,163,184,0.05); border-left-color: var(--text-dim); }
.info-box.blue   { background: rgba(59,130,246,0.06);  border-left-color: var(--blue); }
.info-box.green  { background: rgba(34,197,94,0.06);   border-left-color: var(--green); }
.info-box.yellow { background: rgba(245,158,11,0.06);  border-left-color: var(--amber); }
.info-box.red    { background: rgba(239,68,68,0.06);   border-left-color: var(--red); }

/* ─────────────  TABLES  ───────────── */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 13.5px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  overflow: hidden;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--card-border);
  vertical-align: top;
}
th {
  background: rgba(6,182,212,0.08);
  color: var(--text);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  width: 32%;
}
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: rgba(255,255,255,0.015); }
td { color: var(--text-muted); }
td strong { color: var(--text); }

/* ─────────────  TOC  ───────────── */
.toc {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 28px 0 36px;
}
.toc strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cyan);
  margin-bottom: 14px;
}
.toc ol, .toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 28px;
}
.toc li {
  font-size: 13px;
  padding: 4px 0;
  break-inside: avoid;
}
.toc a { color: var(--text-muted); }
.toc a:hover { color: var(--cyan); }

/* ─────────────  LISTS (checks / crosses / dashes)  ───────────── */
.check-list, .cross-list, .dash-list {
  list-style: none;
  padding-left: 0;
}
.check-list li,
.cross-list li,
.dash-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  font-size: 14px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.cross-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.dash-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--cyan);
}

/* ─────────────  SIGNATURE (AGB / AVV)  ───────────── */
.anlage-header {
  margin-top: 56px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(6,182,212,0.08), rgba(59,130,246,0.04));
  border: 1px solid var(--card-border);
  border-radius: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.signature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--card-border);
}
.signature-box { display: flex; flex-direction: column; }
.signature-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 30px;
  font-weight: 600;
}
.signature-line {
  border-top: 1px solid var(--card-border);
  padding-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ─────────────  FOOTER  ───────────── */
.footer {
  border-top: 1px solid var(--card-border);
  margin-top: 64px;
  padding-top: 32px;
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.9;
}
.footer strong { color: var(--text-muted); }
.footer a { color: var(--text-muted); }
.footer a:hover { color: var(--cyan); }

/* ═══════════════════════════════════════════════════════
   BLOG STYLES
   ═══════════════════════════════════════════════════════ */

.blog-hero {
  padding: 120px 28px 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.blog-hero .badge {
  display: inline-block;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.25);
  color: var(--cyan);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.blog-hero h1 {
  font-size: 52px;
  border: none;
  padding: 0;
  margin: 0 0 20px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -1px;
  line-height: 1.1;
}
.blog-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1160px;
  margin: 60px auto 0;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}
.blog-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6,182,212,0.4);
  box-shadow: 0 20px 40px -20px rgba(6,182,212,0.2);
}
.blog-card:hover::before { transform: scaleX(1); }

.blog-card-image {
  height: 180px;
  background:
    linear-gradient(135deg, rgba(6,182,212,0.15), rgba(59,130,246,0.1)),
    var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--card-border);
}
.blog-card-image .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(10,10,15,0.6);
  border: 1px solid rgba(6,182,212,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.blog-card-image .icon-wrap svg {
  width: 28px;
  height: 28px;
  color: var(--cyan);
}
.blog-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(6,182,212,0.12), transparent 60%);
  pointer-events: none;
}

.blog-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}
.blog-card-meta .category {
  color: var(--cyan);
  padding: 4px 10px;
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: 20px;
  letter-spacing: 0.6px;
}
.blog-card-meta .dot { opacity: 0.4; }

.blog-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin: 0 0 12px;
  padding: 0;
  border: none;
  letter-spacing: -0.2px;
}
.blog-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
  font-size: 12px;
  color: var(--text-dim);
}
.blog-card-footer .read-more {
  color: var(--cyan);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-card-footer .read-more::after {
  content: "→";
  transition: transform 0.25s ease;
}
.blog-card:hover .read-more::after { transform: translateX(4px); }

/* Blog article page */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 28px 80px;
  position: relative;
  z-index: 1;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin-bottom: 20px;
}
.article-meta .category {
  color: var(--cyan);
  padding: 4px 12px;
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: 20px;
}
.article h1 {
  font-size: 44px;
  letter-spacing: -1px;
  line-height: 1.15;
  border: none;
  padding: 0;
  margin-bottom: 18px;
}
.article-lead {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--card-border);
}
.article h2 { font-size: 26px; margin-top: 44px; }
.article h3 { font-size: 19px; margin-top: 32px; }
.article p  { font-size: 16px; line-height: 1.8; margin-bottom: 18px; }
.article ul, .article ol { margin: 0 0 20px 4px; }
.article blockquote {
  margin: 28px 0;
  padding: 20px 26px;
  border-left: 3px solid var(--cyan);
  background: rgba(6,182,212,0.05);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: var(--text);
}

.article-cta {
  margin: 60px 0 0;
  padding: 36px;
  background: linear-gradient(135deg, rgba(6,182,212,0.08), rgba(59,130,246,0.04));
  border: 1px solid var(--card-border);
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
}
.article-cta h3 {
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--text);
}
.article-cta p {
  color: var(--text-muted);
  margin: 0 0 22px;
}
.article-cta a.btn {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  padding: 13px 32px;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.article-cta a.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(6,182,212,0.4);
  text-decoration: none;
}

/* ─────────────  PAGE FOOTER (site-wide)  ───────────── */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--card-border);
  background: var(--bg-soft);
  padding: 40px 28px 30px;
  margin-top: 80px;
  text-align: center;
}
.site-footer .links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 16px;
}
.site-footer .links a {
  font-size: 13px;
  color: var(--text-muted);
}
.site-footer .links a:hover { color: var(--cyan); text-decoration: none; }
.site-footer .copy {
  font-size: 12px;
  color: var(--text-dim);
}

/* ─────────────  RESPONSIVE  ───────────── */
@media (max-width: 720px) {
  .container { padding: 0 20px 60px; }
  h1 { font-size: 28px; }
  .blog-hero { padding: 100px 20px 40px; }
  .blog-hero h1 { font-size: 34px; }
  .blog-hero p { font-size: 15px; }
  .article { padding: 100px 20px 60px; }
  .article h1 { font-size: 30px; }
  .article-lead { font-size: 16px; }
  .article p { font-size: 15px; }
  .contact-grid { grid-template-columns: 1fr; gap: 18px; }
  .contact-card { padding: 22px 20px; }
  .signature-block { grid-template-columns: 1fr; gap: 28px; }
  .toc ol, .toc ul { columns: 1; }
  .top-bar { padding: 12px 18px; }
  .top-bar .brand { font-size: 13px; }
  .top-bar .doc-title { font-size: 11px; }
  table { font-size: 12.5px; }
  th, td { padding: 10px 12px; }
  th { width: 38%; }
}

/* ═══════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════ */
.contact-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 28px 80px;
  position: relative;
  z-index: 1;
}
.contact-page .intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.contact-page .intro .badge {
  display: inline-block;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.25);
  color: var(--cyan);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.contact-page .intro h1 {
  font-size: 48px;
  border: none;
  padding: 0;
  margin: 0 0 18px;
  letter-spacing: -1px;
  line-height: 1.1;
}
.contact-page .intro p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px;
  position: sticky;
  top: 100px;
  overflow: hidden;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
}
.contact-info-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
}
.contact-info-card > p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,0.015);
  transition: all 0.25s ease;
}
.contact-method:hover {
  border-color: rgba(6,182,212,0.4);
  background: rgba(6,182,212,0.05);
  transform: translateX(2px);
  text-decoration: none;
}
.contact-method .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method .icon svg { width: 18px; height: 18px; color: var(--cyan); }
.contact-method .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-method .value {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.contact-form-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0.6;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-field label .req { color: var(--cyan); margin-left: 3px; }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-soft);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
  min-height: 48px;
}
.form-field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-dim); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(6,182,212,0.03);
}
.form-field input:invalid:not(:placeholder-shown) {
  border-color: var(--red);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0 24px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--card-border);
  border-radius: 10px;
}
.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--cyan);
  cursor: pointer;
}
.form-consent label {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  cursor: pointer;
}
.form-consent a { color: var(--cyan); }

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.form-submit .btn-primary {
  background: var(--gradient);
  color: #fff;
  padding: 14px 34px;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 48px;
}
.form-submit .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(6,182,212,0.4);
}
.form-submit .btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.form-hint {
  font-size: 12px;
  color: var(--text-dim);
}

/* honeypot */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.active { display: block; }
.form-success .check-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 32px;
  font-weight: 700;
}
.form-success h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 10px;
}
.form-success p { color: var(--text-muted); font-size: 14px; }

/* ═══════════════════════════════════════════════════════
   FLOATING SUPPORT WIDGET (FAB)
   ═══════════════════════════════════════════════════════ */
.support-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient);
  border: none;
  cursor: pointer;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 30px -6px rgba(6,182,212,0.5), 0 0 0 6px rgba(6,182,212,0.08);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.support-fab:hover { transform: scale(1.08); }
.support-fab.appearing { opacity: 0; transform: translateY(20px) scale(0.8); }
.support-fab { transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
.fab-status-dot {
  position: absolute;
  top: 8px; right: 8px;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--card);
  z-index: 2;
  box-shadow: 0 0 0 2px rgba(10,10,15,0.4);
}
.support-panel-header .status-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin-bottom: 10px;
}
.support-panel-header .status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
  animation: statusPulse 2s ease-in-out infinite;
}
.support-panel-header .status-label { color: var(--text); }
.support-panel-header .status-note { color: var(--text-muted); text-transform: none; letter-spacing: 0; font-weight: 500; }
@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.support-fab svg { width: 26px; height: 26px; }
.support-fab .icon-close { display: none; }
.support-fab.open .icon-chat { display: none; }
.support-fab.open .icon-close { display: block; }
.support-fab::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.3;
  z-index: -1;
  animation: fab-pulse 2.4s ease-in-out infinite;
}
@keyframes fab-pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.15); opacity: 0; }
}

.support-panel {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 340px;
  max-width: calc(100vw - 48px);
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  z-index: 9997;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), 0 0 40px -10px rgba(6,182,212,0.2);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.support-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.support-panel-header {
  padding: 22px 24px 18px;
  background: linear-gradient(135deg, rgba(6,182,212,0.12), rgba(59,130,246,0.06));
  border-bottom: 1px solid var(--card-border);
  position: relative;
}
.support-panel-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
}
.support-panel-header .greeting {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.support-panel-header .sub {
  font-size: 13px;
  color: var(--text-muted);
}
.support-panel-body { padding: 16px; }
.support-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
  margin-bottom: 4px;
}
.support-option:hover {
  background: rgba(6,182,212,0.06);
  text-decoration: none;
}
.support-option .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.support-option .icon svg { width: 18px; height: 18px; color: var(--cyan); }
.support-option .text .title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.support-option .text .desc {
  font-size: 12px;
  color: var(--text-muted);
}
.support-option .chev {
  margin-left: auto;
  color: var(--text-dim);
  font-size: 16px;
  transition: transform 0.2s ease;
}
.support-option:hover .chev { transform: translateX(3px); color: var(--cyan); }

.support-panel-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--card-border);
  background: var(--bg-soft);
  font-size: 11px;
  color: var(--text-dim);
  text-align: center;
  letter-spacing: 0.3px;
}

/* ─────────────  CONTACT PAGE RESPONSIVE  ───────────── */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}
@media (max-width: 720px) {
  .contact-page { padding: 100px 20px 60px; }
  .contact-page .intro h1 { font-size: 34px; }
  .contact-form-card { padding: 28px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .support-fab { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .support-fab svg { width: 22px; height: 22px; }
  .support-panel { bottom: 86px; right: 18px; width: calc(100vw - 36px); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .support-fab::after { animation: none; }
}
