/* ============================================================
   MWO — Mobilne Wytaczanie Otworów
   Design tokens + component styles
   ============================================================ */

:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.5rem);

  /* 4px spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.875rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --content-narrow: 640px;
  --content-default: 980px;
  --content-wide: 1220px;
  --content-full: 100%;

  --font-display: 'Clash Grotesk', 'Satoshi', 'Segoe UI', sans-serif;
  --font-body: 'Satoshi', 'Segoe UI', Arial, sans-serif;

  /* --- Industrial steel + amber palette --- */
  /* Surfaces */
  --color-bg: #f2f3f5;
  --color-surface: #ffffff;
  --color-surface-2: #f8f9fa;
  --color-surface-offset: #e9ebee;
  --color-surface-offset-2: #dfe2e6;
  --color-divider: #dcdfe3;
  --color-border: #cdd2d8;

  /* Text */
  --color-text: #131720;
  --color-text-muted: #565f6a;
  --color-text-faint: #9aa2ab;
  --color-text-inverse: #f5f6f7;

  /* Primary accent — safety amber/orange */
  --color-primary: #d9600a;
  --color-primary-hover: #b34e07;
  --color-primary-active: #8f3f06;
  --color-primary-highlight: #f6dcc2;

  /* Ink — deep navy used for hero / dark banners on any theme */
  --color-ink: #0e1520;
  --color-ink-2: #141d2b;
  --color-ink-border: #26313f;
  --color-ink-text: #f4f6f8;
  --color-ink-text-muted: #a9b3bd;

  /* Semantic */
  --color-success: #3f7d3a;
  --color-success-highlight: #d9e9d6;
  --color-error: #b3382c;
  --color-error-highlight: #f2d8d4;

  --shadow-sm: 0 1px 2px oklch(0.15 0.02 250 / 0.08);
  --shadow-md: 0 6px 16px oklch(0.15 0.02 250 / 0.12);
  --shadow-lg: 0 16px 40px oklch(0.15 0.02 250 / 0.18);
}

[data-theme='dark'] {
  --color-bg: #0f1318;
  --color-surface: #151a21;
  --color-surface-2: #1a2029;
  --color-surface-offset: #1d242e;
  --color-surface-offset-2: #242c37;
  --color-divider: #232a33;
  --color-border: #2c3540;

  --color-text: #e7e9ec;
  --color-text-muted: #a1a9b1;
  --color-text-faint: #6b7480;
  --color-text-inverse: #14181d;

  --color-primary: #ff8f45;
  --color-primary-hover: #ffa668;
  --color-primary-active: #ffbd8f;
  --color-primary-highlight: #3a2a1c;

  --color-ink: #090d13;
  --color-ink-2: #10161f;
  --color-ink-border: #232c38;
  --color-ink-text: #f4f6f8;
  --color-ink-text-muted: #9aa4ae;

  --color-success: #7cb377;
  --color-success-highlight: #223224;
  --color-error: #e07666;
  --color-error-highlight: #382522;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.35);
  --shadow-md: 0 6px 16px oklch(0 0 0 / 0.4);
  --shadow-lg: 0 16px 40px oklch(0 0 0 / 0.5);
}

/* ============================= LAYOUT ============================= */

.container {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container--wide {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.section-head {
  max-width: 62ch;
  margin-bottom: var(--space-10);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-text);
}
.ink h1, .ink h2, .ink h3, .ink p, .ink span, .ink li {
  color: var(--color-ink-text);
}

h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-3);
}
h3 {
  font-size: var(--text-lg);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
}

/* ============================= BUTTONS ============================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  min-height: 44px;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--color-primary-hover); box-shadow: var(--shadow-md); }
.btn--primary:active { background: var(--color-primary-active); }

.btn--whatsapp {
  background: #23a55a;
  color: #fff;
}
.btn--whatsapp:hover { background: #1c8a49; }

.btn--ghost {
  background: transparent;
  border-color: oklch(from var(--color-text) l c h / 0.2);
  color: var(--color-text);
}
.btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }

.btn--ghost-ink {
  background: transparent;
  border-color: oklch(from var(--color-ink-text) l c h / 0.35);
  color: var(--color-ink-text);
}
.btn--ghost-ink:hover { border-color: var(--color-primary); color: var(--color-primary); }

.btn--block { width: 100%; }
.btn--lg { padding: var(--space-4) var(--space-8); font-size: var(--text-base); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ============================= HEADER ============================= */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.header--hidden { transform: translateY(-100%); }
.header--scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-3);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-text);
}
.logo svg { width: 34px; height: 34px; color: var(--color-primary); flex-shrink: 0; }
.logo small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: nowrap;
}
.nav a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.nav a:hover { color: var(--color-text); }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.theme-toggle:hover { color: var(--color-primary); border-color: var(--color-primary); }
.theme-toggle svg { width: 18px; height: 18px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text);
}

@media (max-width: 1080px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn-text { display: none; }
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--color-divider);
  background: var(--color-bg);
}
.mobile-nav.is-open { display: block; }
.mobile-nav .container { display: flex; flex-direction: column; padding-block: var(--space-4); gap: var(--space-1); }
.mobile-nav a {
  padding: var(--space-3) var(--space-2);
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-md);
}
.mobile-nav a:hover { background: var(--color-surface-offset); }

/* ============================= HERO ============================= */

.hero {
  position: relative;
  background: var(--color-ink);
  overflow: hidden;
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, oklch(0.09 0.02 250 / 0.75) 0%, oklch(0.06 0.02 250 / 0.94) 60%, oklch(0.05 0.02 250 / 0.98) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero h1 {
  font-size: clamp(2rem, 1.35rem + 3vw, 3.4rem);
  color: var(--color-ink-text);
  margin-top: var(--space-4);
  letter-spacing: -0.01em;
  line-height: 1.08;
}
.hero h1 em {
  font-style: normal;
  color: var(--color-primary);
}
.hero-sub {
  font-size: var(--text-lg);
  color: var(--color-ink-text-muted);
  margin-top: var(--space-5);
  max-width: 56ch;
}
.hero-sub strong { color: var(--color-ink-text); font-weight: 700; }
.hero-actions {
  margin-top: var(--space-8);
}
.hero-scroll-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-ink-text-muted);
}
.hero-scroll-link:hover { color: var(--color-primary); }
.hero-scroll-link svg { width: 16px; height: 16px; }

/* Trust badges strip */
.trustbar {
  position: relative;
  z-index: 1;
  background: var(--color-ink-2);
  border-top: 1px solid var(--color-ink-border);
  border-bottom: 1px solid var(--color-ink-border);
}
.trustbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  padding-block: var(--space-6);
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-item strong {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-ink-text);
}
.trust-item span {
  font-size: var(--text-xs);
  color: var(--color-ink-text-muted);
}

@media (max-width: 860px) {
  .trustbar-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================= PROBLEMS ============================= */

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.problem-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.problem-card .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.problem-card .icon-wrap svg { width: 22px; height: 22px; }
.problem-card h3 { font-size: var(--text-base); font-weight: 700; margin-bottom: var(--space-2); }
.problem-card p { font-size: var(--text-sm); }

@media (max-width: 860px) {
  .problems-grid { grid-template-columns: 1fr; }
}

.machines-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-5);
}
.machines-grid .problem-card {
  flex: 1 1 300px;
  max-width: 340px;
}
@media (max-width: 860px) {
  .machines-grid .problem-card { flex: 1 1 100%; max-width: 100%; }
}

.callout {
  margin-top: var(--space-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  background: var(--color-surface-offset);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
}
.callout p { color: var(--color-text); font-weight: 600; margin: 0; max-width: 40ch; }

/* ============================= SERVICES ============================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  box-shadow: var(--shadow-sm);
}
.service-card .num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary-highlight);
  -webkit-text-stroke: 1.5px var(--color-primary);
  color: transparent;
}
.service-card h3 { font-size: var(--text-base); font-weight: 700; }
.service-card p { font-size: var(--text-sm); flex-grow: 1; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================= PROCESS ============================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}
.process-step {
  position: relative;
  padding-top: var(--space-4);
}
.process-step .step-index {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.process-step h3 { font-size: var(--text-base); font-weight: 700; margin-bottom: var(--space-2); }
.process-step p { font-size: var(--text-sm); }

@media (max-width: 860px) {
  .process-grid { grid-template-columns: 1fr; gap: var(--space-8); }
}

/* ============================= WHY US ============================= */

.whyus {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-12);
  align-items: center;
}
.whyus-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.whyus-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.why-item {
  display: flex;
  gap: var(--space-4);
}
.why-item .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  flex-shrink: 0;
}
.why-item .icon-wrap svg { width: 20px; height: 20px; }
.why-item h3 { font-size: var(--text-base); font-weight: 700; margin-bottom: var(--space-1); }
.why-item p { font-size: var(--text-sm); margin: 0; }

@media (max-width: 860px) {
  .whyus { grid-template-columns: 1fr; gap: var(--space-8); }
}

/* ============================= QUOTE / PRICING ============================= */

.quote-section {
  background: var(--color-surface-2);
}
.quote-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-12);
  align-items: start;
}
.quote-factors {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.quote-factors li {
  display: flex;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
  align-items: flex-start;
}
.quote-factors svg { width: 16px; height: 16px; color: var(--color-primary); flex-shrink: 0; margin-top: 4px; }

.tech-note {
  margin-top: var(--space-8);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-primary);
}
.tech-note p { font-size: var(--text-sm); margin: 0; color: var(--color-text); }

.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.field label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-text);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  font-size: var(--text-sm);
  min-height: 44px;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-highlight);
}

.radio-group {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
}
.radio-option input { width: 16px; height: 16px; accent-color: var(--color-primary); }

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.checkbox-field input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--color-primary); flex-shrink: 0; }
.checkbox-field label { font-size: var(--text-xs); color: var(--color-text-muted); }

.form-note {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-8) var(--space-4);
}
.form-success.is-visible { display: block; }
.form-success svg { width: 48px; height: 48px; color: var(--color-success); margin-inline: auto; margin-bottom: var(--space-4); }
.form-success h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }

@media (max-width: 860px) {
  .quote-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: var(--space-6); }
}

/* ============================= SERVICE AREA ============================= */

.area-section { background: var(--color-ink); overflow: hidden; }
.area-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: var(--space-12);
  align-items: center;
}
.area-media img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.area-stats {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}
.area-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
}
.area-stat span { font-size: var(--text-xs); color: var(--color-ink-text-muted); }

@media (max-width: 860px) {
  .area-grid { grid-template-columns: 1fr; }
  .area-media { order: -1; }
}

/* ============================= FAQ ============================= */

.faq-list {
  border-top: 1px solid var(--color-divider);
}
.faq-item {
  border-bottom: 1px solid var(--color-divider);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-5);
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-text);
}
.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition-interactive);
}
.faq-item.is-open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer p { padding-bottom: var(--space-5); font-size: var(--text-sm); max-width: 68ch; }

/* ============================= FINAL CTA ============================= */

.final-cta {
  background: linear-gradient(135deg, var(--color-ink) 0%, var(--color-ink-2) 100%);
  text-align: center;
}
.final-cta h2 { color: var(--color-ink-text); }
.final-cta p { color: var(--color-ink-text-muted); max-width: 52ch; margin-inline: auto; margin-top: var(--space-3); }
.final-cta .btn-row { justify-content: center; margin-top: var(--space-8); }

/* ============================= FOOTER ============================= */

.footer {
  background: var(--color-ink);
  color: var(--color-ink-text-muted);
  padding-block: var(--space-16) var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--color-ink-border);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-ink-text);
  margin-bottom: var(--space-4);
}
.footer-logo svg { width: 30px; height: 30px; color: var(--color-primary); }
.footer p { font-size: var(--text-sm); color: var(--color-ink-text-muted); max-width: 38ch; }
.footer h4 { color: var(--color-ink-text); font-size: var(--text-sm); font-weight: 700; margin-bottom: var(--space-4); }
.footer ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer a { font-size: var(--text-sm); color: var(--color-ink-text-muted); display: inline-flex; align-items: center; gap: var(--space-2); }
.footer a:hover { color: var(--color-primary); }
.footer a svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-top: var(--space-6);
  font-size: var(--text-xs);
}
.footer-bottom a { color: var(--color-ink-text-muted); }
.footer-legal {
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-ink-text-muted);
  opacity: 0.7;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
}

/* ============================= FLOATING MOBILE BAR ============================= */

.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-divider);
  border-top: 1px solid var(--color-divider);
  box-shadow: 0 -4px 20px oklch(0.1 0.02 250 / 0.15);
}
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding-block: var(--space-4);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  background: var(--color-surface);
  color: var(--color-text);
}
.mobile-bar a.call { background: var(--color-primary); color: #fff; }
.mobile-bar a.wa { background: #23a55a; color: #fff; }
.mobile-bar svg { width: 18px; height: 18px; }

@media (max-width: 700px) {
  .mobile-bar { display: grid; }
  body { padding-bottom: 62px; }
}

/* ============================= COOKIE / RODO BANNER ============================= */

.cookie-banner {
  position: fixed;
  left: var(--space-4);
  right: var(--space-4);
  bottom: var(--space-4);
  z-index: 200;
  max-width: 640px;
  margin-inline: auto;
  display: none;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-surface-raised, var(--color-surface));
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg, 0 12px 32px oklch(0.1 0.02 250 / 0.25));
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { font-size: var(--text-sm); color: var(--color-text-muted); margin: 0; }
.cookie-banner p a { color: var(--color-primary); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: var(--space-3); justify-content: flex-end; flex-wrap: wrap; }

@media (max-width: 700px) {
  .cookie-banner { bottom: 74px; }
}

/* Floating desktop WhatsApp bubble */
.wa-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: #23a55a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.wa-float:hover { background: #1c8a49; transform: translateY(-2px); }
.wa-float svg { width: 28px; height: 28px; }

@media (max-width: 700px) {
  .wa-float { display: none; }
}

/* ============================= REVEAL ANIMATION ============================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
