/* ==========================================================================
   Forgemark — Brandscaling für lokale Handwerksbetriebe
   Modern skeuomorphic design system — dark palette
   ========================================================================== */

:root {
  /* Core palette — warm dark, muted copper accent */
  --bg: #14100c;
  --bg-alt: #1b150f;
  --surface: #201810;
  --surface-hover: #2a2016;
  --well: #0d0a07;

  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.13);

  --text-1: #f2e8d9;
  --text-2: #b6a99a;
  --text-3: #877a6c;

  --copper-200: #eec594;
  --copper-300: #e0a86c;
  --copper-400: #cd8e4e;
  --copper-500: #b1712f;
  --copper-600: #8f5820;
  --copper-700: #6d4315;

  --sage-300: #a3bd9f;
  --sage-500: #6b8c6e;
  --sage-700: #47603f;

  --graphite-300: #a89c8b;
  --graphite-600: #4c4032;

  --success: #7fae82;
  --danger: #d68b7c;

  --font-display: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
  --font-body: "Manrope", ui-sans-serif, "Segoe UI", Roboto, system-ui, sans-serif;

  --shadow-emboss:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 -2px 4px rgba(0, 0, 0, 0.5) inset,
    0 2px 6px rgba(0, 0, 0, 0.35);

  --shadow-card:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 3px 8px rgba(0, 0, 0, 0.3),
    0 16px 32px -14px rgba(0, 0, 0, 0.6);

  --shadow-card-hover:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 6px 14px rgba(0, 0, 0, 0.32),
    0 26px 48px -16px rgba(0, 0, 0, 0.65);

  --shadow-panel:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 30px 70px -22px rgba(0, 0, 0, 0.7);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* background texture: faint grain via layered gradient */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.028) 1px, transparent 0);
  background-size: 22px 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-300);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--copper-400), var(--copper-300));
  border-radius: 2px;
}

.section-head {
  max-width: 620px;
  margin: 0 0 48px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  margin-top: 14px;
  color: var(--text-1);
}
.section-head p {
  margin-top: 14px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text-2);
}

.placeholder-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--copper-300);
  background: var(--surface-hover);
  border: 1px dashed rgba(224, 168, 108, 0.4);
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
}
.placeholder-tag svg { width: 12px; height: 12px; }

/* ==========================================================================
   Buttons — skeuomorphic
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 14px;
  border: none;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  color: #2b1708;
  background: linear-gradient(180deg, var(--copper-300) 0%, var(--copper-600) 100%);
  box-shadow:
    0 1px 0 rgba(255, 226, 190, 0.4) inset,
    0 -3px 6px rgba(60, 32, 8, 0.4) inset,
    0 10px 20px -8px rgba(0, 0, 0, 0.55),
    0 2px 4px rgba(0, 0, 0, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow:
    0 1px 0 rgba(255, 226, 190, 0.45) inset,
    0 -3px 6px rgba(60, 32, 8, 0.4) inset,
    0 16px 28px -8px rgba(0, 0, 0, 0.6),
    0 3px 6px rgba(0, 0, 0, 0.35); }
.btn-primary:active { transform: translateY(0); filter: brightness(0.97); }

.btn-ghost {
  color: var(--text-1);
  background: var(--surface-hover);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 6px 14px -8px rgba(0,0,0,0.5);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(224,168,108,0.35); }

.btn-dark {
  color: var(--copper-300);
  background: transparent;
  border: 1.5px solid rgba(224, 168, 108, 0.35);
  box-shadow: none;
}
.btn-dark:hover { transform: translateY(-2px); background: rgba(224, 168, 108, 0.08); border-color: rgba(224,168,108,0.55); }

.btn-sm { padding: 10px 16px; font-size: 13.5px; border-radius: 11px; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header / Navigation with flyouts
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: padding 0.25s ease;
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 10px 8px 16px;
  border-radius: 20px;
  background: rgba(20, 16, 12, 0.68);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 8px 30px -14px rgba(0,0,0,0.7);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.scrolled .nav-shell {
  background: rgba(16, 13, 10, 0.92);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 14px 30px -12px rgba(0,0,0,0.75);
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 40px; height: 40px; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text-1);
}
.brand-word span { color: var(--copper-300); }

.nav-main { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-2);
  background: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-link svg { width: 14px; height: 14px; transition: transform 0.2s ease; opacity: 0.7; }
.nav-link:hover, .nav-item.open .nav-link {
  background: rgba(224, 168, 108, 0.1);
  color: var(--copper-300);
}
.nav-item.open .nav-link svg { transform: rotate(180deg); }

.nav-actions { display: flex; align-items: center; gap: 8px; }

/* Flyout panels */
.flyout {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 560px;
  background: linear-gradient(180deg, var(--surface-hover), var(--surface));
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-panel);
  border: 1px solid var(--line-strong);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 50;
}
.nav-item.open .flyout {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.flyout::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: var(--surface-hover);
  border-left: 1px solid var(--line-strong);
  border-top: 1px solid var(--line-strong);
  border-radius: 3px 0 0 0;
}

.flyout-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 6px 18px; }
.flyout-list { display: grid; gap: 2px; }
.flyout-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px;
  border-radius: 14px;
  transition: background 0.15s ease;
}
.flyout-row:hover { background: rgba(224, 168, 108, 0.08); }
.flyout-icon {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
}
.flyout-row strong { display: block; font-size: 13.8px; color: var(--text-1); font-weight: 700; }
.flyout-row span { display: block; font-size: 12.3px; color: var(--text-3); margin-top: 2px; line-height: 1.4; }

.flyout-side {
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(160deg, #2a1c10, #140c06);
  color: var(--text-2);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset;
  border: 1px solid rgba(224,168,108,0.12);
}
.flyout-side strong { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--text-1); }
.flyout-side p { font-size: 12.5px; color: var(--text-3); line-height: 1.5; }

.branchen-flyout .flyout { min-width: 620px; }
.branchen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }

/* Mobile nav */
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: none;
  background: var(--surface-hover);
  box-shadow: var(--shadow-emboss);
  align-items: center;
  justify-content: center;
  color: var(--text-1);
}
.nav-toggle svg { width: 20px; height: 20px; }

.mobile-panel {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 110;
  background: var(--well);
  padding: 100px 24px 40px;
  overflow-y: auto;
}
.mobile-panel.open { display: block; }
.mobile-panel a, .mobile-panel .mobile-group-label {
  color: var(--text-1);
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-display);
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-sub { padding-left: 12px; }
.mobile-sub a { font-size: 15px; font-family: var(--font-body); color: var(--text-2); font-weight: 600; padding: 10px 4px; border-bottom: none; }
.mobile-panel .btn { margin-top: 24px; }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: none;
  display: grid;
  place-items: center;
}
.mobile-close svg { width: 20px; height: 20px; stroke: var(--text-1); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 168px 0 100px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -220px; right: -160px;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205,142,78,0.16), rgba(205,142,78,0) 68%);
  z-index: 0;
  filter: blur(4px);
}
.hero-glow.two {
  top: 260px; left: -220px; right: auto;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(107,140,110,0.1), rgba(107,140,110,0) 70%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-1);
  margin-top: 18px;
}
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(180deg, var(--copper-300), var(--copper-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy p {
  margin: 22px auto 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 560px;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta div { text-align: left; }
.hero-meta div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-1);
}
.hero-meta div span { font-size: 12.8px; color: var(--text-3); }

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trustbar { padding: 30px 0 70px; }
.trustbar-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 28px;
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(224,168,108,0.28);
}
.trustbar-label { font-size: 12.5px; font-weight: 700; color: var(--text-3); white-space: nowrap; }
.logo-slot {
  width: 118px; height: 40px;
  border-radius: 10px;
  background: repeating-linear-gradient(135deg, var(--surface), var(--surface) 6px, var(--surface-hover) 6px, var(--surface-hover) 12px);
  opacity: 0.85;
  display: grid;
  place-items: center;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-3);
}

/* ==========================================================================
   Sections generic
   ========================================================================== */
section { position: relative; padding: 90px 0; z-index: 1; }
.section-alt { background: var(--bg-alt); }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); border-color: var(--line-strong); }
.icon-badge {
  width: 52px; height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.3) inset,
    0 -3px 5px rgba(0,0,0,0.3) inset,
    0 6px 14px -4px rgba(0,0,0,0.5);
}
.icon-badge svg { width: 24px; height: 24px; stroke: #fbf3e6; }
.badge-copper { background: linear-gradient(160deg, var(--copper-300), var(--copper-600)); }
.badge-charcoal { background: linear-gradient(160deg, var(--graphite-300), var(--graphite-600)); }
.badge-sage { background: linear-gradient(160deg, var(--sage-300), var(--sage-700)); }

.service-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--text-1); }
.service-card p { margin-top: 8px; font-size: 14px; line-height: 1.6; color: var(--text-2); }
.service-card .tag-row { display: flex; gap: 6px; margin-top: 16px; flex-wrap: wrap; }
.mini-tag {
  font-size: 11px; font-weight: 700; color: var(--copper-300);
  background: rgba(224,168,108,0.1); padding: 4px 9px; border-radius: 999px;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 30px; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--copper-500) 0 10px, transparent 10px 18px);
  opacity: 0.5;
  z-index: 0;
}
.process-step { position: relative; z-index: 1; padding: 0 16px; text-align: left; }
.process-num {
  width: 60px; height: 60px;
  border-radius: 18px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: #2b1708;
  background: linear-gradient(160deg, var(--copper-300), var(--copper-600));
  box-shadow: var(--shadow-emboss), 0 10px 20px -10px rgba(0,0,0,0.6);
  margin-bottom: 18px;
}
.process-step h3 { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--text-1); }
.process-step p { margin-top: 8px; font-size: 13.6px; line-height: 1.6; color: var(--text-2); }

/* Branchen (industries) */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--line-strong); }
.industry-card .icon-badge { width: 44px; height: 44px; border-radius: 13px; margin: 0; flex: none; }
.industry-card .icon-badge svg { width: 20px; height: 20px; }
.industry-card strong { font-size: 14px; color: var(--text-1); font-weight: 700; }
.industry-card span { display: block; font-size: 11.5px; color: var(--text-3); margin-top: 2px; }

/* Case studies placeholder */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.result-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1.5px dashed rgba(224,168,108,0.3);
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.015), rgba(255,255,255,0.015) 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.result-card .placeholder-tag { align-self: flex-start; }
.result-card .result-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--surface-hover);
  box-shadow: var(--shadow-emboss);
  display: grid; place-items: center;
  margin: 14px 0;
}
.result-card .result-icon svg { width: 22px; height: 22px; stroke: var(--copper-300); }
.result-card h4 { font-family: var(--font-display); font-size: 16px; color: var(--text-1); font-weight: 600; }
.result-card p { font-size: 13px; color: var(--text-2); margin-top: 6px; line-height: 1.55; }

/* Reviews placeholder */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1.5px dashed rgba(224,168,108,0.3);
  background: rgba(255,255,255,0.015);
}
.review-stars { display: flex; gap: 4px; margin-bottom: 14px; }
.review-stars svg { width: 17px; height: 17px; stroke: var(--text-3); fill: none; }
.review-card p.quote {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
  min-height: 66px;
}
.review-who { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line-strong); }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface-hover);
  box-shadow: var(--shadow-emboss);
  display: grid; place-items: center;
  color: var(--text-3);
}
.review-avatar svg { width: 18px; height: 18px; }
.review-who strong { display: block; font-size: 13px; color: var(--text-1); }
.review-who span { font-size: 11.5px; color: var(--text-3); }

/* CTA banner */
.cta-banner {
  border-radius: 32px;
  padding: 64px 56px;
  background: linear-gradient(160deg, #241a10, var(--well));
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr auto;
  align-items: center;
  gap: 32px;
  box-shadow: var(--shadow-panel);
  border: 1px solid var(--line);
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -140px; right: -100px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205,142,78,0.16), transparent 70%);
}
.cta-banner h2 {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  color: var(--text-1);
  font-weight: 600;
  line-height: 1.2;
}
.cta-banner p { position: relative; z-index: 1; margin-top: 12px; color: var(--text-2); font-size: 15px; max-width: 460px; }
.cta-banner .cta-actions { position: relative; z-index: 1; display: flex; gap: 12px; flex-wrap: wrap; }

/* ==========================================================================
   Contact form
   ========================================================================== */
.contact-panel {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-panel);
  border: 1px solid var(--line);
}
.contact-info {
  padding: 44px 40px;
  background: linear-gradient(160deg, #291c10, #130c06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow-light { color: var(--copper-300); }
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  color: var(--text-1);
  margin-top: 12px;
  line-height: 1.25;
}
.contact-info > p { margin-top: 14px; font-size: 14.3px; line-height: 1.65; color: var(--text-2); }

.contact-points { margin-top: 30px; display: grid; gap: 16px; }
.contact-points li { display: flex; align-items: center; gap: 12px; font-size: 13.3px; color: var(--text-2); }
.contact-point-icon {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(224,168,108,0.1);
  display: grid;
  place-items: center;
  color: var(--copper-300);
}
.contact-point-icon svg { width: 16px; height: 16px; }
.tiny-placeholder {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  color: var(--copper-300);
  background: rgba(224,168,108,0.12);
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 4px;
  display: inline-block;
}

.contact-form {
  padding: 40px 40px;
  background: var(--surface);
  display: grid;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field label { font-size: 12.5px; font-weight: 700; color: var(--text-2); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-1);
  background: var(--well);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.4) inset;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-3); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--copper-400);
  box-shadow: 0 2px 5px rgba(0,0,0,0.4) inset, 0 0 0 3px rgba(224,168,108,0.16);
}
.botcheck { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-note { font-size: 11.5px; color: var(--text-3); line-height: 1.5; margin-top: -4px; }
.form-status { font-size: 13px; font-weight: 600; min-height: 18px; margin: 0; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }
.form-status.info { color: var(--text-2); }
#cfSubmit[disabled] { opacity: 0.65; cursor: progress; transform: none; }

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: var(--well);
  color: var(--text-2);
  padding: 70px 0 30px;
  z-index: 1;
  position: relative;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-word { color: var(--text-1); }
.footer-brand p { margin-top: 14px; font-size: 13.6px; line-height: 1.65; max-width: 280px; color: var(--text-2); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.05);
  display: grid; place-items: center;
  transition: background 0.15s ease;
}
.footer-social a:hover { background: rgba(224,168,108,0.2); }
.footer-social svg { width: 16px; height: 16px; stroke: var(--text-1); }

.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-1); margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-2); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--copper-300); }
.footer-col li { font-size: 14px; color: var(--text-2); }
.footer-col .placeholder-tag { margin-top: 4px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  font-size: 12.5px;
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--text-2); }
.footer-bottom a:hover { color: var(--copper-300); }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .process-grid::before { display: none; }
  .results-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { grid-template-columns: 1fr; text-align: left; }
}

@media (max-width: 900px) {
  .contact-panel { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-main, .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 140px 0 70px; }
}

@media (max-width: 640px) {
  .services-grid, .industries-grid, .results-grid, .reviews-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-wrap: wrap; gap: 20px; justify-content: flex-start; }
  .cta-banner { padding: 40px 26px; }
  .contact-info, .contact-form { padding: 32px 24px; }
}
