:root {
  --bg: #061019;
  --bg-deep: #040b11;
  --surface: #101b24;
  --surface-2: #131f28;
  --surface-3: #17232c;
  --text: #f3f1ed;
  --muted: #a9b0b5;
  --line: rgba(215, 226, 232, 0.14);
  --line-strong: rgba(215, 226, 232, 0.24);
  --accent: #e87516;
  --accent-bright: #f28a22;
  --accent-dark: #c85e0b;
  --success: #6dca9a;
  --warning: #e7b461;
  --header-height: 4.5rem;
  --mobile-bar-height: 4rem;
  --container: 75rem;
  --radius-sm: 0.75rem;
  --radius: 1.25rem;
  --radius-lg: 2rem;
  --shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.28);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: clip;
  padding-bottom: calc(var(--mobile-bar-height) + env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 88% 4%, rgba(232, 117, 22, 0.12), transparent 24rem),
    radial-gradient(circle at 8% 30%, rgba(76, 119, 142, 0.08), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 4rem 4rem;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  pointer-events: none;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 0.2rem solid #ffb15d;
  outline-offset: 0.2rem;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-weight: 850;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 16, 25, 0.78);
  backdrop-filter: blur(1rem) saturate(125%);
  transition: background-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-compact {
  background: rgba(4, 11, 17, 0.94);
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.22);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 0.8rem;
}

.brand {
  display: inline-flex;
  min-width: 7.25rem;
  min-height: 2.75rem;
  align-items: center;
  color: var(--text);
  font-size: clamp(1.15rem, 4vw, 1.42rem);
  font-weight: 950;
  letter-spacing: 0.16em;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  width: 0.45rem;
  height: 0.45rem;
  margin-left: 0.28rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 1rem rgba(232, 117, 22, 0.55);
}

.menu-toggle {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: auto;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  width: 1.15rem;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 200ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before { transform: translateY(-0.34rem); }
.menu-toggle-lines::after { transform: translateY(0.34rem); }

.menu-toggle[aria-expanded="true"] .menu-toggle-lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after { transform: rotate(-45deg); }

.primary-nav {
  position: fixed;
  inset: var(--header-height) 0 auto;
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(4, 11, 17, 0.98);
  box-shadow: var(--shadow);
}

.primary-nav a {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  padding-inline: 0.85rem;
  border-radius: 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: rgba(232, 117, 22, 0.08);
  color: var(--text);
}

.primary-nav a[aria-current="page"] {
  box-shadow: inset 0.18rem 0 var(--accent);
}

.header-call {
  display: none;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.5rem;
  padding-inline: 1rem;
  border: 1px solid rgba(242, 138, 34, 0.5);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(232, 117, 22, 0.18), rgba(232, 117, 22, 0.04));
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.header-call::before {
  color: var(--accent-bright);
  content: "●";
  font-size: 0.65rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.95rem;
  color: var(--accent-bright);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  padding-block: clamp(3.5rem, 9vw, 8rem);
}

.hero::after {
  position: absolute;
  right: -10rem;
  bottom: -14rem;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(232, 117, 22, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 5rem rgba(232, 117, 22, 0.05);
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.7rem, 12vw, 6.5rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--accent-bright);
}

.hero-lead,
.page-lead {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2.5vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.72rem 1rem;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 200ms var(--ease), border-color 200ms ease, background-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.button:hover {
  border-color: rgba(232, 117, 22, 0.55);
  transform: translateY(-0.16rem);
}

.button--primary {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-dark));
  box-shadow: 0 0.8rem 2rem rgba(200, 94, 11, 0.2);
  color: #100a05;
}

.button--primary:hover {
  box-shadow: 0 0.9rem 2.4rem rgba(232, 117, 22, 0.3);
}

.button--whatsapp {
  border-color: rgba(109, 202, 154, 0.55);
  color: #bce8ce;
}

.button--whatsapp:hover {
  background: rgba(109, 202, 154, 0.1);
}

.button--whatsapp[aria-disabled="true"],
[data-whatsapp-cta][aria-disabled="true"] {
  border-color: var(--line-strong);
  border-style: dashed;
  background: rgba(255, 255, 255, 0.025);
  color: #838b90;
  cursor: not-allowed;
  filter: saturate(0.2);
  opacity: 0.68;
}

.button--whatsapp[aria-disabled="true"]:hover {
  transform: none;
}

.hero-visual {
  position: relative;
  width: min(100%, 34rem);
  margin-inline: auto;
}

.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: clamp(1.5rem, 5vw, 3rem);
  background: var(--surface);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), transparent 28%),
    linear-gradient(to top, rgba(4, 11, 17, 0.9), transparent 45%);
  content: "";
  pointer-events: none;
}

.hero-media::after {
  position: absolute;
  inset: auto 8% 8% auto;
  z-index: 2;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(242, 138, 34, 0.45);
  border-radius: 50%;
  box-shadow: 0 0 0 0.6rem rgba(232, 117, 22, 0.05);
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: contrast(1.08) saturate(0.82);
}

.hero-tech-label {
  position: absolute;
  right: -0.35rem;
  bottom: 12%;
  z-index: 3;
  display: grid;
  gap: 0.1rem;
  min-width: 9.5rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  background: rgba(9, 20, 29, 0.78);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(0.8rem);
}

.hero-tech-label small {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-tech-label strong {
  font-size: 0.9rem;
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -1.25rem;
}

.trust-grid {
  display: grid;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(16, 27, 36, 0.8);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(0.9rem);
}

.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.8rem;
  min-height: 5.6rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.trust-item:last-child { border-bottom: 0; }

.trust-icon {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid rgba(232, 117, 22, 0.38);
  border-radius: 0.7rem;
  background: rgba(232, 117, 22, 0.07);
  color: var(--accent-bright);
  font-size: 0.8rem;
  font-weight: 950;
}

.trust-item strong,
.trust-item span { display: block; }
.trust-item strong { font-size: 0.95rem; }
.trust-item span { color: var(--muted); font-size: 0.76rem; }

.section {
  position: relative;
  padding-block: clamp(4.5rem, 10vw, 8rem);
}

.section--surface {
  border-block: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(180deg, rgba(16, 27, 36, 0.58), rgba(6, 16, 25, 0.2));
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading h2 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(2rem, 7vw, 4rem);
  font-weight: 930;
  letter-spacing: -0.045em;
  line-height: 1;
  text-wrap: balance;
}

.section-heading > p,
.section-heading div > p:last-child {
  max-width: 39rem;
  margin: 0;
  color: var(--muted);
}

.section-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-bright);
  font-weight: 850;
  text-decoration: none;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.info-card,
.code-card,
.review-card,
.content-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(19, 31, 40, 0.98), rgba(12, 24, 33, 0.94));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.service-card {
  display: grid;
  min-height: 27rem;
  grid-template-rows: 12rem 1fr;
  transition: transform 260ms var(--ease), border-color 260ms ease, box-shadow 260ms ease;
}

.service-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 0.18rem;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}

.service-card:hover {
  border-color: rgba(232, 117, 22, 0.34);
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.22);
  transform: translateY(-0.25rem);
}

.service-card:hover::after { transform: scaleX(1); }

.service-card-media {
  position: relative;
  overflow: hidden;
  background: #09121a;
}

.service-card-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 20, 28, 0.8), transparent 70%);
  content: "";
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.08);
  transition: transform 360ms var(--ease);
}

.service-card:hover img { transform: scale(1.04); }

.service-card-body {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
}

.card-index {
  color: var(--accent-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card h3,
.info-card h3,
.code-card h3,
.content-card h2,
.content-card h3 {
  margin: 0.55rem 0 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.service-card p,
.info-card p,
.code-card p,
.content-card p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.card-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
}

.card-link span { color: var(--accent-bright); transition: transform 180ms ease; }
.card-link:hover span { transform: translateX(0.22rem); }

.home-page #hizmetler .service-card--linked {
  color: inherit;
  text-decoration: none;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.brand-chip {
  position: relative;
  display: grid;
  min-height: 7.25rem;
  place-items: center;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 60%),
    var(--surface);
  color: var(--text);
  font-size: clamp(0.88rem, 3.5vw, 1.15rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  transition: transform 220ms var(--ease), border-color 220ms ease, color 220ms ease;
}

.brand-chip::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.15rem;
  background: var(--accent);
  content: "";
  transform: scaleY(0);
  transition: transform 220ms var(--ease);
}

.brand-chip:hover {
  border-color: rgba(232, 117, 22, 0.45);
  color: var(--accent-bright);
  transform: translateY(-0.2rem);
}

.brand-chip:hover::before { transform: scaleY(1); }

.affiliation-note {
  margin: 1.25rem 0 0;
  color: #8f989e;
  font-size: 0.76rem;
}

.code-grid {
  display: grid;
  gap: 0.75rem;
}

.code-card {
  display: grid;
  min-height: 13rem;
  padding: 1.25rem;
  transition: transform 220ms var(--ease), border-color 220ms ease;
}

.code-card:hover {
  border-color: rgba(232, 117, 22, 0.4);
  transform: translateY(-0.2rem);
}

.code-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.3rem 0.5rem;
  border: 1px solid rgba(232, 117, 22, 0.35);
  border-radius: 0.45rem;
  background: rgba(232, 117, 22, 0.08);
  color: var(--accent-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.workshop-grid {
  display: grid;
  gap: 0.75rem;
}

.workshop-shot {
  position: relative;
  min-height: 17rem;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.workshop-shot--wide { min-height: 22rem; }

.workshop-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
  transition: transform 360ms var(--ease);
}

.workshop-shot:hover img { transform: scale(1.035); }

.workshop-shot figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 3rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(3, 9, 14, 0.9));
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
}

.review-grid {
  display: grid;
  gap: 1rem;
}

.review-card {
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  padding: 1.5rem;
}

.review-stars {
  color: var(--accent-bright);
  letter-spacing: 0.08em;
}

.review-card blockquote {
  margin: 1.2rem 0 1.5rem;
  color: #d8d6d1;
  font-size: 0.98rem;
  line-height: 1.75;
}

.review-card footer {
  display: grid;
  margin-top: auto;
}

.review-card footer span {
  color: var(--muted);
  font-size: 0.78rem;
}

.source-note {
  margin: 1.15rem 0 0;
  color: #899198;
  font-size: 0.74rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 5vw, 2.5rem);
  border: 1px solid rgba(232, 117, 22, 0.32);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(232, 117, 22, 0.11), transparent 42%),
    rgba(16, 27, 36, 0.8);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(0.8rem);
}

.cta-band::after {
  position: absolute;
  top: -6rem;
  right: -4rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(232, 117, 22, 0.11);
  filter: blur(2rem);
  content: "";
  pointer-events: none;
}

.cta-band h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.85rem, 6vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.cta-band p {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.25rem, 8vw, 6rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-hero::after {
  position: absolute;
  inset: -25% -10% auto auto;
  z-index: -1;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: rgba(232, 117, 22, 0.09);
  filter: blur(4rem);
  content: "";
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 2.5rem;
}

.page-hero-grid > *,
.page-hero-media,
.page-hero-media img {
  min-width: 0;
  max-width: 100%;
}

.page-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.45rem, 10vw, 5.4rem);
}

.page-hero-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.page-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(232, 117, 22, 0.1));
  content: "";
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.08);
}

.breadcrumb {
  margin-bottom: 1.5rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin: 0;
  padding: 0;
  color: #899198;
  font-size: 0.75rem;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 0.4rem;
  color: #5f676d;
  content: "/";
}

.breadcrumb a { min-height: 2rem; color: var(--muted); }

.content-layout {
  display: grid;
  gap: 1.5rem;
}

.prose {
  min-width: 0;
}

.prose > *:first-child { margin-top: 0; }

.prose h2 {
  margin: 3rem 0 1rem;
  font-size: clamp(1.75rem, 5vw, 2.7rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.prose h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
}

.prose p,
.prose li {
  color: #bbc0c4;
}

.prose a { color: var(--accent-bright); }

.prose ul,
.prose ol {
  display: grid;
  gap: 0.65rem;
  padding-left: 1.25rem;
}

.content-card {
  margin-block: 1.5rem;
  padding: clamp(1.25rem, 4vw, 2rem);
}

.notice {
  margin-block: 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 0.2rem solid var(--warning);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(231, 180, 97, 0.07);
  color: #d6d0c5;
  font-size: 0.88rem;
}

.process-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  counter-increment: process;
}

.process-list li::before {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 0.55rem;
  background: rgba(232, 117, 22, 0.12);
  color: var(--accent-bright);
  content: counter(process, decimal-leading-zero);
  font-family: ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 900;
}

.sidebar {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.sidebar-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 27, 36, 0.75);
}

.sidebar-card h2,
.sidebar-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.sidebar-card ul {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.sidebar-card a {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-block: 0.4rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  text-decoration: none;
}

.sidebar-card li:last-child a { border-bottom: 0; }
.sidebar-card a:hover { color: var(--accent-bright); }

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
}

.faq-list summary {
  min-height: 3.4rem;
  padding: 0.9rem 1rem;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.faq-list details p {
  margin: 0;
  padding: 0 1rem 1rem;
}

.related-grid,
.mini-grid {
  display: grid;
  gap: 0.75rem;
}

.info-card {
  padding: 1.25rem;
}

.info-card a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  margin-top: 0.9rem;
  color: var(--accent-bright);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}

.filter-bar {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.filter-field {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  gap: 0.7rem;
  padding-inline: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(16, 27, 36, 0.75);
}

.filter-field span { color: var(--accent-bright); }

.filter-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.filter-field input::placeholder { color: #778087; }

.no-results {
  padding: 1.5rem;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

.contact-panel,
.hours-panel,
.map-panel {
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 27, 36, 0.82);
}

.contact-panel address { font-style: normal; }

.contact-row {
  display: grid;
  gap: 0.2rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child { border-bottom: 0; }
.contact-row small { color: #7f898f; text-transform: uppercase; letter-spacing: 0.12em; }
.contact-row a { width: fit-content; color: var(--text); font-weight: 850; }

.hours-list {
  display: grid;
  gap: 0;
  margin: 1rem 0 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.hours-list dt,
.hours-list dd { margin: 0; }
.hours-list dd { font-weight: 850; white-space: nowrap; }

.map-panel {
  position: relative;
  display: grid;
  min-height: 19rem;
  place-items: center;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
}

.map-panel::before,
.map-panel::after {
  position: absolute;
  inset: 0;
  content: "";
}

.map-panel::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 2rem 2rem;
  transform: rotate(-8deg) scale(1.2);
}

.map-panel::after {
  background: radial-gradient(circle, rgba(232, 117, 22, 0.18), transparent 45%);
}

.map-copy { position: relative; z-index: 2; display: grid; gap: 0.45rem; }
.map-pin { color: var(--accent-bright); font-size: 2rem; }
.map-copy small { color: var(--muted); }

.privacy-crop {
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.privacy-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.65) contrast(1.08) brightness(0.72);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}

.footer-main {
  display: grid;
  gap: 2rem;
  padding-block: 3rem;
}

.footer-brand p {
  max-width: 28rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-column h2 {
  margin: 0 0 0.75rem;
  color: #7f898f;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: flex;
  min-height: 2.25rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-column a:hover { color: var(--accent-bright); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-block: 1rem;
  border-top: 1px solid var(--line);
  color: #717a80;
  font-size: 0.72rem;
}

.mobile-action-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: calc(var(--mobile-bar-height) + env(safe-area-inset-bottom));
  padding: 0.35rem 0.45rem calc(0.35rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line-strong);
  background: rgba(4, 11, 17, 0.96);
  box-shadow: 0 -0.75rem 2rem rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(0.9rem);
}

.mobile-action-bar a {
  display: inline-flex;
  min-width: 0;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  padding-inline: 0.2rem;
  border-right: 1px solid var(--line);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-action-bar a:last-child { border-right: 0; }

.mobile-action-bar [data-whatsapp-cta][aria-disabled="true"] {
  color: #7f898f;
}

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

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 36rem) {
  .container { width: min(calc(100% - 3rem), var(--container)); }
  .button { padding-inline: 1.2rem; font-size: 0.9rem; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .trust-item:nth-last-child(-n + 2) { border-bottom: 0; }
  .brand-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .code-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .related-grid,
  .mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filter-bar { grid-template-columns: minmax(0, 28rem) auto; align-items: center; }
}

@media (min-width: 48rem) {
  body { padding-bottom: 0; }
  .hero-grid,
  .page-hero-grid { grid-template-columns: minmax(0, 1.06fr) minmax(19rem, 0.94fr); }
  .hero h1 { font-size: clamp(4.4rem, 8vw, 6.5rem); }
  .section-heading { grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.65fr); align-items: end; }
  .card-grid--services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .code-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .workshop-grid { grid-template-columns: 1.2fr 0.8fr; grid-template-rows: repeat(2, 15rem); }
  .workshop-shot--wide { min-height: 0; grid-row: 1 / 3; }
  .review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .map-panel { grid-column: 1 / -1; }
  .footer-main { grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr); }
  .footer-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mobile-action-bar { display: none; }
}

@media (min-width: 64rem) {
  .menu-toggle { display: none; }
  .primary-nav {
    position: static;
    display: flex !important;
    align-items: center;
    gap: 0.15rem;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .primary-nav a {
    position: relative;
    padding-inline: 0.62rem;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 0.78rem;
  }
  .primary-nav a::after {
    position: absolute;
    inset: auto 0.65rem 0.35rem;
    height: 0.1rem;
    background: var(--accent);
    content: "";
    transform: scaleX(0);
    transition: transform 180ms ease;
  }
  .primary-nav a:hover::after,
  .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
  .header-call { display: inline-flex; margin-left: 0.45rem; }
  .hero-visual { width: 100%; }
  .hero-media { max-height: 43rem; }
  .trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .trust-item { border-right: 1px solid var(--line); border-bottom: 0; }
  .trust-item:last-child { border-right: 0; }
  .card-grid--services { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-card { grid-template-rows: 13.5rem 1fr; }
  .code-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .code-card { min-height: 15rem; }
  .content-layout { grid-template-columns: minmax(0, 1fr) 18.5rem; gap: 4rem; }
  .sidebar { position: sticky; top: calc(var(--header-height) + 1.5rem); }
  .related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr 0.8fr 1.1fr; }
  .map-panel { grid-column: auto; }
}

@media (min-width: 80rem) {
  .primary-nav { gap: 0.35rem; }
  .primary-nav a { padding-inline: 0.75rem; font-size: 0.8rem; }
  .header-call { margin-left: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Home visual reconstruction — scoped to the approved homepage only. */
.home-page {
  --home-bg: #03090e;
  --home-panel: #08131c;
  --home-panel-2: #0b1720;
  --home-line: rgba(163, 186, 199, 0.18);
  --home-line-hot: rgba(232, 117, 22, 0.58);
  --home-orange: #ef7f16;
  --home-orange-bright: #ff941f;
  background:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    var(--home-bg);
  background-size: 3rem 3rem;
  font-size: 0.94rem;
}

.home-page .container {
  width: min(calc(100% - 1.5rem), 90rem);
}

.home-page .site-header {
  min-height: 4.25rem;
  border-bottom-color: rgba(164, 187, 199, 0.16);
  background: rgba(3, 9, 14, 0.92);
  box-shadow: 0 0.5rem 1.8rem rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(0.75rem);
}

.home-page .header-inner { min-height: 4.25rem; }

.home-page .brand {
  font-size: 1.45rem;
  font-style: italic;
  letter-spacing: -0.055em;
}

.home-page .brand::first-letter { color: #fff; }
.home-page .brand-mark { width: 1.55rem; height: 0.18rem; }

.home-page .primary-nav a {
  min-height: 2.75rem;
  padding: 0.55rem 0.7rem;
  font-size: 0.71rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.home-page .header-call {
  min-height: 2.65rem;
  padding-inline: 1rem;
  border: 1px solid rgba(232, 117, 22, 0.46);
  border-radius: 0.45rem;
  background: linear-gradient(180deg, rgba(232, 117, 22, 0.2), rgba(232, 117, 22, 0.08));
  color: #ffd5ae;
  font-size: 0.79rem;
}

.home-page .home-hero {
  position: relative;
  min-height: 36.5rem;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--home-line);
  background: #02070b;
}

.home-page .home-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(1, 6, 10, 0.98) 0%, rgba(1, 7, 11, 0.88) 28%, rgba(2, 8, 13, 0.26) 61%, rgba(2, 8, 13, 0.05) 100%),
    linear-gradient(0deg, rgba(2, 8, 13, 0.82), transparent 34%);
  content: "";
  pointer-events: none;
}

.home-page .hero-grid {
  position: relative;
  display: grid;
  min-height: 36.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}

.home-page .hero-copy {
  position: relative;
  z-index: 3;
  width: min(42rem, 52%);
  padding: 4.8rem 0 7.4rem;
}

.home-page .hero-copy .eyebrow {
  margin-bottom: 0.8rem;
  color: #d8e1e6;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.home-page .hero h1 {
  max-width: 11ch;
  margin: 0;
  color: #f4f5f3;
  font-size: clamp(3.25rem, 5.4vw, 4.35rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  text-wrap: balance;
}

.home-page .hero h1 span {
  display: inline;
  color: var(--home-orange-bright);
}

.home-page .hero-lead {
  max-width: 35rem;
  margin: 1.2rem 0 0;
  color: #b5c1c8;
  font-size: 0.98rem;
  line-height: 1.65;
}

.home-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.55rem;
}

.home-page .button {
  min-height: 2.75rem;
  padding: 0.68rem 1rem;
  border-radius: 0.45rem;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}

.home-page .button--primary {
  border-color: #ff9d37;
  background: linear-gradient(180deg, #f58a20, #ce5a07);
  box-shadow: 0 0.65rem 1.5rem rgba(232, 117, 22, 0.18), inset 0 1px rgba(255, 255, 255, 0.28);
}

.home-page .hero-visual {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: 0;
  width: auto;
  max-width: none;
  margin: 0;
}

.home-page .hero-media {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #02070b;
  box-shadow: none;
}

.home-page .hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 52%, rgba(0, 0, 0, 0.36));
  content: "";
}

.home-page .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.05);
}

.home-page .hero-tech-label {
  right: 1rem;
  bottom: 1rem;
  z-index: 4;
  padding: 0.48rem 0.7rem;
  border: 1px solid rgba(200, 215, 223, 0.18);
  border-radius: 0.35rem;
  background: rgba(3, 10, 15, 0.76);
  color: #bac5ca;
  backdrop-filter: blur(0.45rem);
}

.home-page .hero-tech-label strong { color: #e7ecee; font-size: 0.7rem; }
.home-page .hero-tech-label small { font-size: 0.58rem; }

.home-page .trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -5.8rem;
  border: 0;
  background: transparent;
}

.home-page .trust-grid {
  overflow: hidden;
  border: 1px solid rgba(163, 186, 199, 0.22);
  border-radius: 0.65rem;
  background: linear-gradient(180deg, rgba(10, 24, 34, 0.96), rgba(5, 15, 23, 0.96));
  box-shadow: 0 1.1rem 2.6rem rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.035);
}

.home-page .trust-item {
  min-height: 5.25rem;
  padding: 0.9rem 1.1rem;
  border-color: rgba(163, 186, 199, 0.14);
}

.home-page .trust-icon {
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(232, 117, 22, 0.5);
  border-radius: 0.42rem;
  background: rgba(232, 117, 22, 0.08);
  color: var(--home-orange-bright);
  font-size: 0.64rem;
}

.home-page .trust-item strong { font-size: 0.84rem; }
.home-page .trust-item span:not(.trust-icon) { margin-top: 0.1rem; font-size: 0.67rem; }

.home-page .section {
  padding-block: 3.25rem;
}

.home-page .section--surface {
  border-block: 1px solid rgba(163, 186, 199, 0.09);
  background:
    linear-gradient(120deg, rgba(17, 35, 46, 0.42), rgba(5, 14, 21, 0.74)),
    #061019;
}

.home-page .section-heading {
  gap: 1rem 2rem;
  margin-bottom: 1.35rem;
}

.home-page .section-heading .eyebrow {
  margin-bottom: 0.32rem;
  color: var(--home-orange-bright);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}

.home-page .section-heading h2 {
  max-width: none;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.home-page .section-heading > p {
  max-width: 38rem;
  color: #96a5ad;
  font-size: 0.82rem;
  line-height: 1.55;
}

.home-page .card-grid--services {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-page #hizmetler .service-card:nth-child(n + 5) { display: none; }

.home-page .service-card {
  min-width: 0;
  min-height: 0;
  grid-template-rows: 9.7rem auto;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 0.65rem;
  background: linear-gradient(155deg, rgba(13, 29, 40, 0.96), rgba(5, 15, 22, 0.98));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025), 0 0.65rem 1.6rem rgba(0, 0, 0, 0.14);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-page .service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.12rem;
  background: var(--home-orange);
  content: "";
  transform: scaleX(0.24);
  transform-origin: left;
  transition: transform 180ms ease;
}

.home-page .service-card:hover {
  border-color: rgba(232, 117, 22, 0.48);
  box-shadow: 0 0.9rem 2rem rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.05);
  transform: translateY(-0.18rem);
}

.home-page .service-card:hover::after { transform: scaleX(1); }

.home-page .service-card-media {
  height: 9.7rem;
  overflow: hidden;
  border-bottom: 1px solid var(--home-line);
  background: #040b10;
}

.home-page .service-card-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(2, 8, 12, 0.68));
  content: "";
}

.home-page .service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(0.78) contrast(1.08);
  transition: transform 220ms ease;
}

.home-page .service-card:hover .service-card-media img { transform: scale(1.03); }

.home-page .service-card-body {
  min-height: 10.5rem;
  padding: 0.95rem 1rem 1rem;
}

.home-page .service-card-body .card-index {
  position: static;
  display: inline-block;
  margin-bottom: 0.3rem;
  color: var(--home-orange);
  font-size: 0.61rem;
  letter-spacing: 0.14em;
}

.home-page .service-card h3 { font-size: 1rem; line-height: 1.2; }

.home-page .service-card p {
  display: -webkit-box;
  margin: 0.5rem 0 0.65rem;
  overflow: hidden;
  color: #9aa8af;
  font-size: 0.74rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-page .card-link {
  color: #f29a4b;
  font-size: 0.72rem;
}

.home-page .source-note,
.home-page .affiliation-note {
  margin-top: 1rem;
  padding: 0.65rem 0.8rem;
  border-left: 2px solid rgba(232, 117, 22, 0.52);
  border-radius: 0 0.35rem 0.35rem 0;
  background: rgba(232, 117, 22, 0.035);
  color: #7f8d94;
  font-size: 0.67rem;
}

.home-page .brand-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-page .brand-chip {
  position: relative;
  display: flex;
  min-height: 7.8rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  overflow: hidden;
  padding: 0.85rem 0.5rem;
  border: 1px solid var(--home-line);
  border-radius: 0.55rem;
  background:
    radial-gradient(circle at 50% 20%, rgba(99, 137, 157, 0.13), transparent 46%),
    linear-gradient(155deg, #0b1821, #050e15);
  color: #dce4e7;
  font-size: 0.7rem;
  font-weight: 750;
  text-transform: uppercase;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.home-page .brand-chip::after {
  position: absolute;
  right: 0.7rem;
  bottom: 0;
  left: 0.7rem;
  height: 0.12rem;
  background: var(--home-orange);
  content: "";
  transform: scaleX(0.35);
  transition: transform 180ms ease;
}

.home-page .brand-chip::before { display: none; }

.home-page .brand-chip:hover {
  border-color: rgba(232, 117, 22, 0.46);
  color: #fff;
  transform: translateY(-0.14rem);
}

.home-page .brand-chip:hover::after { transform: scaleX(1); }

.home-page .brand-emblem {
  display: inline-flex;
  width: 3.15rem;
  height: 3.15rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 227, 233, 0.55);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #283a45, #071018 68%);
  color: #e8eef0;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: -0.04em;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.32), inset 0 1px rgba(255, 255, 255, 0.16);
}

.home-page .brand-emblem--wide {
  width: 4.2rem;
  border-radius: 2rem;
  letter-spacing: -0.18em;
}

.home-page .brand-emblem--star { font-size: 1.55rem; }
.home-page .brand-emblem--oval { width: 4rem; height: 2.55rem; border-radius: 50%; font-style: italic; }

.home-page .brand-emblem--diamond {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0;
  clip-path: polygon(50% 0, 95% 50%, 50% 100%, 5% 50%);
}

.home-page .code-grid {
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-page .code-card {
  min-height: 12rem;
  padding: 1rem;
  border: 1px solid var(--home-line);
  border-radius: 0.55rem;
  background:
    linear-gradient(145deg, rgba(13, 29, 39, 0.94), rgba(5, 14, 21, 0.98));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.home-page .code-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--home-orange), transparent 60%);
  content: "";
}

.home-page .code-label { color: var(--home-orange-bright); font-size: 1.25rem; }
.home-page .code-card h3 { margin-top: 0.35rem; font-size: 0.86rem; }

.home-page .code-card p {
  display: -webkit-box;
  margin: 0.55rem 0 0.65rem;
  overflow: hidden;
  color: #8f9da4;
  font-size: 0.69rem;
  line-height: 1.48;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-page .section-link {
  margin-top: 1rem;
  color: var(--home-orange-bright);
  font-size: 0.74rem;
}

.home-page .workshop-grid {
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 11rem 11rem;
}

.home-page .workshop-shot {
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 0.55rem;
  background: #071018;
}

.home-page .workshop-shot--wide { grid-row: 1 / 3; }

.home-page .workshop-shot::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(2, 8, 12, 0.8));
  content: "";
}

.home-page .workshop-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
}

.home-page .workshop-shot figcaption {
  z-index: 2;
  right: auto;
  bottom: 0.65rem;
  left: 0.75rem;
  padding: 0;
  background: transparent;
  color: #e2e8ea;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-page .review-grid { gap: 0.75rem; }

.home-page .review-card {
  min-height: 12.5rem;
  padding: 1.1rem;
  border: 1px solid var(--home-line);
  border-radius: 0.55rem;
  background: linear-gradient(150deg, rgba(13, 29, 39, 0.92), rgba(5, 14, 21, 0.98));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.home-page .review-stars { color: var(--home-orange-bright); font-size: 0.78rem; letter-spacing: 0.12em; }

.home-page .review-card blockquote {
  margin: 0.75rem 0 1rem;
  color: #bac4c9;
  font-size: 0.75rem;
  line-height: 1.55;
}

.home-page .review-card footer strong { font-size: 0.74rem; }
.home-page .review-card footer span { font-size: 0.62rem; }

.home-page .cta-band {
  display: grid;
  gap: 1rem 2rem;
  align-items: center;
  padding: 1.55rem 1.7rem;
  overflow: hidden;
  border: 1px solid rgba(232, 117, 22, 0.34);
  border-radius: 0.65rem;
  background:
    radial-gradient(circle at 15% 50%, rgba(232, 117, 22, 0.12), transparent 28rem),
    linear-gradient(140deg, rgba(13, 29, 39, 0.98), rgba(5, 14, 21, 0.98));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04), 0 1rem 2.3rem rgba(0, 0, 0, 0.2);
}

.home-page .cta-band::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.18rem;
  background: var(--home-orange);
  content: "";
}

.home-page .cta-band h2 {
  max-width: 30rem;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.home-page .cta-band p { margin-top: 0.45rem; color: #95a3aa; font-size: 0.75rem; }
.home-page .cta-actions { gap: 0.5rem; }

.home-page .site-footer {
  padding-top: 2.4rem;
  background: #02070b;
}

.home-page .footer-main { gap: 2rem; padding-bottom: 1.8rem; }
.home-page .footer-brand p { max-width: 30rem; font-size: 0.72rem; }
.home-page .footer-column h2 { font-size: 0.72rem; }
.home-page .footer-column a,
.home-page .footer-column span { font-size: 0.68rem; }
.home-page .footer-bottom { font-size: 0.63rem; }

@media (min-width: 36rem) {
  .home-page .brand-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 48rem) {
  .home-page .container { width: min(calc(100% - 2.5rem), 90rem); }
  .home-page .card-grid--services { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .home-page .code-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .home-page .cta-band { grid-template-columns: minmax(0, 1fr) auto; }
  .home-page .cta-actions { justify-content: flex-end; }
}

@media (min-width: 64rem) {
  .home-page .brand-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .home-page .service-card { grid-template-rows: 9.7rem 1fr; }
  .home-page .section-heading { grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.48fr); }
}

@media (max-width: 47.99rem) {
  .home-page .home-hero {
    min-height: auto;
    padding-top: 0;
  }

  .home-page .home-hero::after {
    background: linear-gradient(180deg, rgba(2, 8, 13, 0.18), rgba(2, 8, 13, 0.92) 61%, #02080d 100%);
  }

  .home-page .hero-grid {
    min-height: auto;
    padding-top: 0;
  }

  .home-page .hero-copy {
    width: 100%;
    padding: 20.5rem 0 6.8rem;
  }

  .home-page .hero h1 {
    max-width: 9.5ch;
    font-size: clamp(2.65rem, 13vw, 3.65rem);
  }

  .home-page .hero-lead { max-width: 31rem; font-size: 0.88rem; }
  .home-page .hero-visual { height: 31rem; }
  .home-page .hero-media img { object-position: 70% center; }
  .home-page .hero-tech-label { display: none; }
  .home-page .trust-strip { margin-top: -5.2rem; }
  .home-page .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-page .trust-item { min-height: 4.6rem; padding: 0.65rem; }
  .home-page .trust-icon { width: 1.85rem; height: 1.85rem; }
  .home-page .trust-item strong { font-size: 0.72rem; }
  .home-page .trust-item span:not(.trust-icon) { font-size: 0.6rem; }
  .home-page .section { padding-block: 2.6rem; }
  .home-page .section-heading { margin-bottom: 1rem; }
  .home-page .section-heading h2 { font-size: 1.65rem; }
  .home-page .service-card-media { height: 8.5rem; }
  .home-page .service-card { grid-template-rows: 8.5rem auto; }
  .home-page .service-card-body { min-height: 10.2rem; padding: 0.8rem; }
  .home-page .workshop-grid { grid-template-rows: 10rem 10rem; }
}

@media (max-width: 35.99rem) {
  .page-hero-grid { width: 100%; min-width: 0; grid-template-columns: minmax(0, 1fr); }
  .page-hero-grid > div:first-child { min-width: 0; }
  .page-hero .page-lead { max-width: 100%; overflow-wrap: anywhere; }
  .home-page .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .home-page .trust-item { grid-template-columns: 2.55rem minmax(0, 1fr); gap: 0.5rem; padding-inline: 0.55rem; }
  .home-page .trust-item > div { min-width: 0; }
  .home-page .trust-item strong,
  .home-page .trust-item span { overflow-wrap: anywhere; white-space: normal; }
}

@media (max-width: 25rem) {
  .home-page .hero-actions .button { flex: 1 1 calc(50% - 0.55rem); padding-inline: 0.55rem; }
  .home-page .card-grid--services { grid-template-columns: 1fr; }
  .home-page .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-page .code-grid { grid-template-columns: 1fr; }
  .home-page .workshop-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 12rem); }
  .home-page .workshop-shot--wide { grid-row: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .service-card,
  .home-page .service-card::after,
  .home-page .service-card-media img,
  .home-page .brand-chip,
  .home-page .brand-chip::after {
    transition: none;
  }
}

/* Final cascade lock for the approved homepage polish. */
.home-page .site-header {
  background: linear-gradient(180deg, rgba(6, 14, 20, 0.97), rgba(2, 8, 13, 0.92));
  box-shadow: 0 0.45rem 1.6rem rgba(0, 0, 0, 0.26), inset 0 -1px rgba(255, 255, 255, 0.025);
}

.home-page .brand { min-width: 8rem; color: #f3f5f4; font-size: 1.62rem; font-weight: 1000; }
.home-page .brand-accent { color: var(--home-orange-bright); }
.home-page .brand-mark { width: 1.25rem; height: 0.12rem; margin-left: 0.35rem; border-radius: 0; background: linear-gradient(90deg, var(--home-orange-bright), transparent); box-shadow: none; }

.home-page .hero h1 { max-width: 10.5ch; font-size: clamp(3.2rem, 4.6vw, 4rem); line-height: 0.96; }
.home-page .hero-copy { width: min(39rem, 47%); }
.home-page .hero-lead { max-width: 31rem; font-size: 0.92rem; }
.home-page .hero-actions { gap: 0.45rem; margin-top: 1.35rem; }

.home-page .hero-actions .button {
  min-height: 2.6rem;
  padding: 0.62rem 0.9rem;
  border-color: rgba(181, 199, 208, 0.25);
  background: linear-gradient(180deg, rgba(16, 31, 41, 0.94), rgba(6, 16, 23, 0.96));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.055), 0 0.4rem 0.9rem rgba(0, 0, 0, 0.18);
}

.home-page .hero-actions .button--primary { border-color: #ff9d37; background: linear-gradient(180deg, #f58a20, #ca5707); color: #100a05; }
.home-page .hero-actions .button--whatsapp[aria-disabled="true"] { border-color: rgba(151, 165, 173, 0.22); background: rgba(9, 20, 28, 0.76); }

.home-page .hero-google-rating {
  display: flex;
  width: min(100%, 34rem);
  min-height: 3.15rem;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.75rem;
  padding: 0.52rem 0.62rem;
  border: 1px solid rgba(172, 193, 203, 0.24);
  border-radius: 0.55rem;
  background:
    linear-gradient(180deg, rgba(18, 34, 44, 0.9), rgba(6, 16, 23, 0.94));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.055), 0 0.55rem 1.25rem rgba(0, 0, 0, 0.2);
  color: #eef2f3;
  backdrop-filter: blur(0.45rem);
}

.home-page .google-mark {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 1.75rem;
  place-items: center;
  border: 1px solid rgba(194, 208, 215, 0.24);
  border-radius: 50%;
  background: rgba(3, 11, 17, 0.72);
}

.home-page .google-mark svg {
  display: block;
  width: 1rem;
  height: 1rem;
}

.home-page .google-rating-stars {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  color: rgba(234, 243, 247, 0.2);
  font-size: 0.74rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.home-page .google-rating-stars::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 96%;
  overflow: hidden;
  color: var(--home-orange-bright);
  content: "★★★★★";
  white-space: nowrap;
}

.home-page .google-rating-score {
  color: #f6f7f6;
  font-size: 0.82rem;
  white-space: nowrap;
}

.home-page .google-rating-score span {
  color: #9aa8af;
  font-size: 0.68rem;
  font-weight: 600;
}

.home-page .google-rating-count {
  color: #9daab0;
  font-size: 0.68rem;
  white-space: nowrap;
}

.home-page .google-rating-link {
  min-height: 2rem;
  margin-left: auto;
  padding: 0.42rem 0.58rem;
  border: 1px solid rgba(232, 117, 22, 0.32);
  border-radius: 0.42rem;
  color: #ffc077;
  font-size: 0.68rem;
  font-weight: 750;
  white-space: nowrap;
}

.home-page .google-rating-link:hover {
  border-color: rgba(255, 157, 55, 0.58);
  background: rgba(232, 117, 22, 0.08);
  color: #ffd19d;
}

.home-page .google-rating-link:focus-visible {
  outline: 2px solid var(--home-orange-bright);
  outline-offset: 2px;
}

.home-page .hero-google-rating + .hero-actions {
  margin-top: 0.65rem;
}

@media (max-width: 63.99rem) {
  .home-page .hero-google-rating {
    display: grid;
    width: min(100%, 22rem);
    min-height: 4rem;
    grid-template-columns: 1.75rem minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 0.28rem 0.55rem;
    padding: 0.55rem 0.6rem;
  }

  .home-page .google-mark {
    grid-row: 1 / 3;
  }

  .home-page .google-rating-stars {
    grid-column: 2;
    grid-row: 1;
    font-size: 0.72rem;
  }

  .home-page .google-rating-score {
    grid-column: 3;
    grid-row: 1;
    font-size: 0.78rem;
  }

  .home-page .google-rating-count {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.64rem;
  }

  .home-page .google-rating-link {
    min-height: 2.75rem;
    grid-column: 3;
    grid-row: 2;
    padding: 0.3rem 0.44rem;
    font-size: 0.62rem;
  }
}

.home-page .hero-media img { object-position: center 54%; filter: saturate(0.9) contrast(1.08) brightness(0.94); transform: scale(1.015); }

.home-page .home-hero::after {
  background:
    linear-gradient(90deg, rgba(1, 6, 10, 0.99) 0%, rgba(1, 7, 11, 0.91) 24%, rgba(2, 8, 13, 0.35) 48%, rgba(2, 8, 13, 0.04) 72%),
    linear-gradient(0deg, rgba(2, 8, 13, 0.86), transparent 31%);
}

.home-page .trust-grid {
  border-color: rgba(170, 195, 207, 0.24);
  background: linear-gradient(110deg, rgba(12, 28, 39, 0.97), rgba(5, 15, 23, 0.98));
  box-shadow: 0 0.9rem 2rem rgba(0, 0, 0, 0.3), inset 0 1px rgba(255, 255, 255, 0.05);
}

.home-page .section { padding-block: 2.75rem; }
.home-page .section-heading { margin-bottom: 1.1rem; }
.home-page .section-heading h2 { font-size: clamp(1.7rem, 2.5vw, 2.08rem); letter-spacing: -0.025em; }
.home-page .card-grid--services { grid-auto-rows: 1fr; gap: 0.68rem; }

.home-page .service-card {
  height: 100%;
  min-height: 0;
  grid-template-rows: 10.2rem minmax(0, 1fr);
  border-color: rgba(176, 197, 208, 0.2);
  background: radial-gradient(circle at 85% 8%, rgba(94, 130, 148, 0.1), transparent 38%), linear-gradient(155deg, rgba(12, 28, 38, 0.98), rgba(4, 13, 20, 0.99));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.045), inset 1px 0 rgba(255, 255, 255, 0.012), 0 0.55rem 1.35rem rgba(0, 0, 0, 0.18);
}

.home-page .service-card::after { right: 0.75rem; left: 0.75rem; height: 0.11rem; background: linear-gradient(90deg, var(--home-orange-bright), #c34f05); transform: scaleX(0.32); }
.home-page .service-card:hover { border-color: rgba(244, 137, 37, 0.6); box-shadow: inset 0 1px rgba(255, 255, 255, 0.07), 0 0.9rem 2rem rgba(0, 0, 0, 0.3); transform: translateY(-0.15rem); }
.home-page .service-card:hover::after { transform: scaleX(1); }
.home-page .service-card-media { height: 10.2rem; border-bottom-color: rgba(176, 197, 208, 0.16); }
.home-page .service-card-media img { object-position: center 50%; filter: saturate(0.86) contrast(1.12) brightness(0.9); }
.home-page .service-card-body { display: grid; min-height: 8.7rem; grid-template-rows: auto auto 1fr auto; align-content: start; padding: 0.78rem 0.85rem 0.82rem; }
.home-page .service-card-body .card-index { margin-bottom: 0.2rem; }
.home-page .service-card h3 { font-size: 0.98rem; }
.home-page .service-card p { margin: 0.38rem 0 0.52rem; font-size: 0.7rem; line-height: 1.42; }

.home-page .brand-grid { gap: 0.55rem; }
.home-page .brand-chip {
  min-height: 7.45rem;
  gap: 0.55rem;
  border-color: rgba(176, 197, 208, 0.2);
  background: linear-gradient(rgba(255, 255, 255, 0.025), transparent 1px), radial-gradient(circle at 50% 16%, rgba(119, 153, 170, 0.15), transparent 45%), linear-gradient(155deg, #0c1a24, #040d14);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.055), inset 0 -1px rgba(0, 0, 0, 0.45), 0 0.5rem 1.1rem rgba(0, 0, 0, 0.16);
}
.home-page .brand-chip::after { right: 0.55rem; left: 0.55rem; height: 0.1rem; background: linear-gradient(90deg, transparent, var(--home-orange-bright) 18%, var(--home-orange-bright) 82%, transparent); }
.home-page .brand-emblem { border-color: rgba(223, 233, 238, 0.62); background: radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.2), transparent 18%), radial-gradient(circle at 50% 45%, #263a46, #071018 70%); box-shadow: 0 0.45rem 1rem rgba(0, 0, 0, 0.4), inset 0 1px rgba(255, 255, 255, 0.2), 0 0 0 0.18rem rgba(255, 255, 255, 0.018); }

.home-page .code-grid { gap: 0.58rem; }
.home-page .code-card { min-height: 10.6rem; padding: 0.88rem; border-color: rgba(176, 197, 208, 0.19); background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 2.2rem), linear-gradient(145deg, rgba(12, 27, 37, 0.97), rgba(4, 13, 20, 0.99)); box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px rgba(0, 0, 0, 0.34); }
.home-page .code-card:hover { border-color: rgba(240, 129, 26, 0.52); box-shadow: inset 0 1px rgba(255, 255, 255, 0.075), 0 0.6rem 1.3rem rgba(0, 0, 0, 0.22); transform: translateY(-0.12rem); }
.home-page .code-label { padding: 0; border: 0; background: transparent; font-size: 1.3rem; font-weight: 900; letter-spacing: 0.035em; text-shadow: 0 0 0.8rem rgba(232, 117, 22, 0.2); }
.home-page .code-card h3 { font-size: 0.8rem; }
.home-page .code-card p { margin: 0.42rem 0 0.5rem; font-size: 0.65rem; line-height: 1.4; }

.home-page .workshop-grid { gap: 0.58rem; grid-template-rows: 10.4rem 10.4rem; }
.home-page .workshop-shot { border-color: rgba(176, 197, 208, 0.2); background: #050d13; box-shadow: inset 0 1px rgba(255, 255, 255, 0.045), 0 0.55rem 1.25rem rgba(0, 0, 0, 0.17); }
.home-page .workshop-shot img { object-position: center 48%; filter: saturate(0.84) contrast(1.12) brightness(0.9); transition: transform 220ms ease, filter 220ms ease; }
.home-page .workshop-shot:hover img { filter: saturate(0.9) contrast(1.12) brightness(0.96); transform: scale(1.025); }

.home-page .review-grid { gap: 0.58rem; }
.home-page .review-card { min-height: 10.8rem; padding: 0.9rem; border-color: rgba(176, 197, 208, 0.19); background: radial-gradient(circle at 100% 0, rgba(232, 117, 22, 0.055), transparent 38%), linear-gradient(150deg, rgba(12, 27, 37, 0.96), rgba(4, 13, 20, 0.99)); }
.home-page .review-stars { color: var(--home-orange-bright); font-size: 0.72rem; }
.home-page .review-card blockquote { margin: 0.58rem 0 0.72rem; font-size: 0.69rem; line-height: 1.48; }
.home-page .review-card footer { padding-top: 0.55rem; border-top: 1px solid rgba(176, 197, 208, 0.11); }
.home-page .review-card footer strong { color: #f0f3f2; }
.home-page .review-card footer span { color: #7f9099; }

.home-page .cta-band { padding: 1.35rem 1.5rem; border-color: rgba(232, 117, 22, 0.4); background: linear-gradient(115deg, rgba(232, 117, 22, 0.08), transparent 32%), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 2.5rem), linear-gradient(140deg, rgba(13, 29, 39, 0.99), rgba(4, 13, 20, 0.99)); box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), inset 0 -1px rgba(0, 0, 0, 0.34), 0 0.85rem 1.8rem rgba(0, 0, 0, 0.22); }
.home-page .cta-actions .button { min-width: 6.4rem; justify-content: center; }

@media (min-width: 23.5rem) and (max-width: 47.99rem) {
  .home-page .card-grid--services,
  .home-page .code-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-page .service-card { grid-template-rows: 7.8rem minmax(0, 1fr); }
  .home-page .service-card-media { height: 7.8rem; }
  .home-page .service-card-body { min-height: 8.35rem; padding: 0.68rem; }
  .home-page .service-card h3 { font-size: 0.86rem; }
  .home-page .service-card p { font-size: 0.64rem; -webkit-line-clamp: 2; }
  .home-page .brand-chip { min-height: 6.85rem; }
  .home-page .brand-emblem { width: 2.75rem; height: 2.75rem; }
  .home-page .code-card { min-height: 10.2rem; padding: 0.75rem; }
  .home-page .code-card p { -webkit-line-clamp: 3; }
  .home-page .workshop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 9.5rem 9.5rem; }
  .home-page .workshop-shot--wide { grid-row: 1 / 3; }
}

@media (max-width: 47.99rem) {
  .home-page .hero-copy { width: 100%; padding: 17.8rem 0 6.25rem; }
  .home-page .hero-visual { height: 28.5rem; }
  .home-page .hero-media img { object-position: 69% 52%; transform: scale(1.02); }
  .home-page .hero h1 { font-size: clamp(2.55rem, 12.5vw, 3.35rem); }
  .home-page .hero-lead { margin-top: 0.85rem; font-size: 0.82rem; line-height: 1.52; }
  .home-page .hero-actions { margin-top: 1rem; }
  .home-page .section { padding-block: 2.25rem; }
  .home-page .section-heading h2 { font-size: 1.5rem; }
  .home-page .section-heading > p { font-size: 0.74rem; }
  .home-page .review-card { min-height: 0; }
  .home-page .cta-band { padding: 1.1rem; }
  .home-page .cta-actions .button { min-width: 0; flex: 1 1 calc(33.333% - 0.5rem); padding-inline: 0.45rem; }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .workshop-shot img { transition: none; }
}

/* Final mobile refinement and local brand marks. */
.home-page .brand-logo {
  display: block;
  width: 4rem;
  height: 4rem;
  overflow: visible;
  color: #dce5e9;
  fill: currentColor;
  object-fit: contain;
  filter: drop-shadow(0 0.45rem 0.55rem rgba(0, 0, 0, 0.48));
  transition: color 180ms ease, filter 180ms ease, transform 180ms ease;
}

.home-page .brand-logo--wide {
  width: 5.2rem;
  height: 3.4rem;
}

.home-page .brand-name { line-height: 1.2; }

.home-page .brand-chip:hover .brand-logo {
  color: #fff;
  filter: drop-shadow(0 0.45rem 0.65rem rgba(0, 0, 0, 0.55)) drop-shadow(0 0 0.5rem rgba(232, 117, 22, 0.13));
  transform: translateY(-0.08rem) scale(1.025);
}

@media (max-width: 47.99rem) {
  .home-page .hero-copy {
    padding: 12.8rem 0 5.2rem;
  }

  .home-page .hero-visual {
    height: 24rem;
  }

  .home-page .hero-media img {
    object-position: 68% 51%;
    transform: scale(1.02);
  }

  .home-page .hero h1 {
    max-width: 9.4ch;
    font-size: clamp(2.75rem, 11.5vw, 3.125rem);
    line-height: 0.95;
  }

  .home-page .hero-lead {
    max-width: 28rem;
    margin-top: 0.72rem;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .home-page .hero-actions {
    display: grid;
    width: min(100%, 22rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
    margin-top: 0.85rem;
  }

  .home-page .hero-actions .button {
    width: 100%;
    min-height: 2.75rem;
    justify-content: center;
    padding: 0.55rem 0.5rem;
    font-size: 0.72rem;
  }

  .home-page .section {
    padding-block: 2rem;
  }

  .home-page .section-heading {
    margin-bottom: 0.9rem;
  }

  .home-page .section-heading h2 {
    font-size: clamp(1.625rem, 7.2vw, 2rem);
  }

  .home-page .section-heading > p {
    font-size: 0.94rem;
    line-height: 1.48;
  }

  /* Hata Kodları cards stay in native document flow on mobile so a vertical
     gesture that starts anywhere on a card scrolls the page without slider
     interception, matching the review and service card decks below. */
  .home-page .code-grid {
    display: grid;
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 0.72rem;
    padding: 0.12rem 0 0.6rem;
    overflow-x: visible;
    overflow-y: visible;
    scroll-behavior: auto;
    scroll-padding: 0;
    scroll-snap-type: none;
    scrollbar-width: auto;
    overscroll-behavior: auto;
    overscroll-behavior-inline: auto;
    touch-action: auto !important;
  }

  .home-page .code-grid > *,
  .home-page .code-card,
  .home-page .code-card * {
    touch-action: auto !important;
  }

  /* Reviews stay in native document flow on mobile so a vertical gesture that
     starts anywhere on a card scrolls the page without slider interception. */
  .home-page .review-grid {
    display: grid;
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 0.72rem;
    padding: 0.12rem 0 0.6rem;
    overflow-x: visible;
    overflow-y: visible;
    scroll-behavior: auto;
    scroll-padding: 0;
    scroll-snap-type: none;
    scrollbar-width: auto;
    overscroll-behavior: auto;
    overscroll-behavior-y: auto;
    touch-action: auto !important;
  }

  .home-page .review-grid > *,
  .home-page .review-card,
  .home-page .review-card * {
    touch-action: auto !important;
  }

  /* Mobile services use normal document flow. Keeping this area out of an
     overflow scroller guarantees that a drag starting on any card scrolls the
     page natively, including in mobile WebKit. */
  .home-page #hizmetler .card-grid--services {
    display: grid;
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0.72rem;
    padding: 0.12rem 0 0.6rem;
    overflow-x: visible;
    overflow-y: visible;
    scroll-behavior: auto;
    scroll-padding: 0;
    scroll-snap-type: none;
    scrollbar-width: auto;
    overscroll-behavior: auto;
    overscroll-behavior-y: auto;
    touch-action: auto !important;
  }

  .home-page #hizmetler .card-grid--services > * {
    touch-action: auto !important;
  }

  .home-page #hizmetler .service-card {
    width: 100%;
    max-width: none;
    min-height: 0;
    grid-template-rows: 10rem auto;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .home-page #hizmetler .service-card-media {
    height: 10rem;
  }

  .home-page #hizmetler .service-card-body {
    min-height: 10.75rem;
    padding: 0.85rem 0.9rem 0.9rem;
  }

  .home-page #hizmetler .service-card h3 {
    font-size: 1rem;
  }

  .home-page #hizmetler .service-card p {
    display: block;
    margin: 0.5rem 0 0.65rem;
    overflow: visible;
    font-size: 0.9rem;
    line-height: 1.48;
    -webkit-line-clamp: unset;
  }

  .home-page #hizmetler .service-card .card-link,
  .home-page .code-card .card-link {
    font-size: 0.86rem;
  }

  /* Enjektör Testi is the only card cropped tight enough on mobile that the
     nozzle tips fall into service-card-media::after's dark band; lighten and
     reframe just this card without touching the rest of the deck. */
  .home-page #hizmetler .service-card:first-child .service-card-media::after {
    background: linear-gradient(180deg, transparent 60%, rgba(2, 8, 12, 0.28) 100%);
  }

  .home-page #hizmetler .service-card:first-child .service-card-media img {
    object-position: center 72%;
    filter: saturate(0.92) contrast(1.04) brightness(1.16);
  }

  .home-page .code-card {
    width: 100%;
    max-width: none;
    min-height: 13.5rem;
    padding: 1rem;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .home-page .code-label {
    font-size: 1.45rem;
  }

  .home-page .code-card h3 {
    margin-top: 0.45rem;
    font-size: 1rem;
  }

  .home-page .code-card p {
    display: block;
    margin: 0.6rem 0 0.7rem;
    overflow: visible;
    font-size: 0.9rem;
    line-height: 1.48;
    -webkit-line-clamp: unset;
  }

  .home-page .review-card {
    width: 100%;
    max-width: none;
    min-height: 12.5rem;
    padding: 1rem;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .home-page .review-stars {
    font-size: 0.86rem;
  }

  .home-page .review-card blockquote {
    margin: 0.65rem 0 0.8rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .home-page .review-card footer strong {
    font-size: 0.88rem;
  }

  .home-page .review-card footer span {
    font-size: 0.78rem;
  }

  .home-page .brand-chip {
    min-height: 7.1rem;
  }

  .home-page .brand-logo {
    width: 3.35rem;
    height: 3.35rem;
  }

  .home-page .brand-logo--wide {
    width: 4.7rem;
    height: 3rem;
  }

  .home-page .site-footer {
    padding-top: 0.5rem;
  }

  .home-page .footer-main {
    gap: 1.15rem;
    padding: 1.35rem 0 0.95rem;
  }

  .home-page .footer-brand p {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .home-page .footer-columns {
    gap: 0.8rem 1rem;
  }

  .home-page .footer-column h2 {
    margin-bottom: 0.3rem;
  }

  .home-page .footer-column a,
  .home-page .footer-column span {
    min-height: 1.85rem;
    font-size: 0.76rem;
  }

  .home-page .footer-bottom {
    gap: 0.35rem;
    padding-block: 0.65rem;
    font-size: 0.64rem;
    line-height: 1.4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .brand-logo,
  .home-page #hizmetler .card-grid--services,
  .home-page .code-grid,
  .home-page .review-grid {
    scroll-behavior: auto;
    transition: none;
  }
}

/* User-supplied injector foreground and nozzle-anchored common-rail spray. */
.home-page .home-hero {
  --hero-object-x: 50%;
  --hero-object-y: 54%;
  --spray-direction: 132.5deg;
}

.home-page .hero-media img {
  object-position: var(--hero-object-x) var(--hero-object-y);
  transform: none;
}

.home-page .hero-injector-layer {
  position: absolute;
  top: 2.75rem;
  right: clamp(1.5rem, 4.5vw, 5rem);
  z-index: 2;
  width: min(40vw, 36.5rem);
  aspect-ratio: 1204 / 854;
  isolation: isolate;
  pointer-events: none;
}

.home-page .hero-injector-layer::before {
  position: absolute;
  inset: 12% 3% 8% 10%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at 54% 58%, rgba(0, 4, 8, 0.28), rgba(0, 7, 12, 0.08) 50%, transparent 76%);
  filter: blur(0.85rem);
  content: "";
  transform: translate(0.35rem, 0.45rem);
}

.home-page .hero-injector {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    brightness(0.82)
    contrast(1.1)
    saturate(0.72)
    drop-shadow(0 0.45rem 0.7rem rgba(0, 4, 8, 0.24))
    drop-shadow(0 0 0.16rem rgba(205, 226, 235, 0.07));
}

.home-page .injector-tip-anchor {
  position: absolute;
  top: 96.96%;
  left: 1.99%;
  z-index: 2;
  width: 0;
  height: 0;
  visibility: hidden;
  pointer-events: none;
}

.home-page .hero-spray-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  contain: strict;
  opacity: 0.96;
  pointer-events: none;
}

@media (min-width: 48rem) and (max-width: 63.99rem) {
  .home-page .hero-spray-canvas {
    opacity: 0.96;
  }
}

@media (min-width: 100rem) {
  .home-page .home-hero {
    --hero-object-x: 50%;
    --hero-object-y: 25%;
  }

  .home-page .hero-media img {
    object-fit: cover;
    object-position: center 25%;
  }
}

@media (max-width: 47.99rem) {
  .home-page .home-hero {
    --hero-object-x: 68%;
    --hero-object-y: 51%;
  }

  .home-page .hero-copy {
    padding-top: 8.75rem;
  }

  .home-page .hero-injector-layer {
    top: -0.25rem;
    right: 2.25rem;
    width: min(52vw, 12.5rem);
  }

  .home-page .hero-injector {
    filter:
      brightness(0.78)
      contrast(1.08)
      saturate(0.68)
      drop-shadow(0 0.34rem 0.52rem rgba(0, 4, 8, 0.2))
      drop-shadow(0 0 0.12rem rgba(205, 226, 235, 0.06));
  }

  .home-page .hero-spray-canvas {
    display: block;
    opacity: 1;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero-spray-canvas {
    display: none;
  }
}

/* Service showcase and complete real-work gallery. */
.home-page .hero-location {
  max-width: 42rem;
  line-height: 1.45;
  text-wrap: balance;
}

.home-page .service-card,
.home-page #hizmetler .service-card {
  grid-template-rows: auto minmax(0, 1fr);
}

.home-page .service-card-media,
.home-page #hizmetler .service-card-media {
  height: auto;
  aspect-ratio: 4 / 3;
}

.home-page .service-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-page .workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: none;
  gap: 0.72rem;
}

.home-page .workshop-shot,
.home-page .workshop-shot--wide {
  grid-row: auto;
  aspect-ratio: 1 / 1;
  border-radius: 0.6rem;
}

.home-page .workshop-shot[hidden] {
  display: none;
}

.home-page .workshop-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-page .workshop-shot figcaption {
  right: 0.7rem;
  bottom: 0.65rem;
  left: 0.7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-page .workshop-gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.home-page .workshop-gallery-toggle {
  min-width: 10.5rem;
  border-color: rgba(244, 137, 37, 0.45);
  background: linear-gradient(180deg, rgba(15, 32, 42, 0.98), rgba(6, 17, 24, 0.98));
}

.home-page .workshop-gallery-toggle:hover {
  border-color: rgba(244, 137, 37, 0.78);
}

@media (min-width: 48rem) {
  .home-page .workshop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 64rem) {
  .home-page .workshop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 47.99rem) {
  .home-page .hero-location {
    max-width: 22rem;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .home-page #hizmetler .service-card {
    grid-template-rows: auto minmax(0, 1fr);
  }

  .home-page #hizmetler .service-card-media {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .home-page .workshop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 0.58rem;
  }
}

@media (max-width: 25rem) {
  .home-page .workshop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .home-page .workshop-shot figcaption {
    right: 0.5rem;
    bottom: 0.48rem;
    left: 0.5rem;
    font-size: 0.58rem;
    letter-spacing: 0.055em;
  }
}

/* Keep service numbering legible across the compact homepage layouts. */
.home-page .trust-item > .trust-icon {
  display: flex !important;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 2.75rem;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 !important;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.home-page .service-card-body > .card-index {
  display: inline-flex !important;
  width: 2.35rem;
  min-width: 2.35rem;
  height: 1.8rem;
  align-items: center;
  justify-content: center;
  justify-self: start;
  box-sizing: border-box;
  margin: 0 0 0.45rem;
  padding: 0 !important;
  border: 1px solid rgba(244, 137, 37, 0.55);
  border-radius: 0.35rem;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
}

@media (max-width: 47.99rem) {
  .home-page .trust-item > .trust-icon {
    width: 2.55rem;
    height: 2.55rem;
    flex-basis: 2.55rem;
    font-size: 0.95rem;
  }

  .home-page .service-card-body > .card-index {
    width: 2.25rem;
    min-width: 2.25rem;
    height: 1.75rem;
    font-size: 0.86rem;
  }
}

/* Premium subpage system — visually aligned with the approved homepage. */
.subpage {
  --sub-orange: #f0811a;
  --sub-orange-bright: #ff9d37;
  --sub-line: rgba(176, 197, 208, 0.18);
  --sub-surface: rgba(9, 22, 31, 0.94);
  background:
    radial-gradient(circle at 87% 3%, rgba(240, 129, 26, 0.12), transparent 23rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.011) 0 1px, transparent 1px 3rem),
    #030b11;
  color: #eef2f2;
}

.subpage .container { width: min(calc(100% - 2rem), 82rem); }

.subpage .site-header {
  min-height: 4.35rem;
  border-bottom-color: rgba(164, 187, 199, 0.16);
  background: linear-gradient(180deg, rgba(6, 14, 20, 0.98), rgba(2, 8, 13, 0.94));
  box-shadow: 0 0.45rem 1.6rem rgba(0, 0, 0, 0.24), inset 0 -1px rgba(255, 255, 255, 0.025);
}

.subpage .brand {
  min-width: 8rem;
  color: #f3f5f4;
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 1000;
  letter-spacing: -0.045em;
}

.subpage .brand-mark {
  width: 1.25rem;
  height: 0.12rem;
  margin-left: 0.35rem;
  border-radius: 0;
  background: linear-gradient(90deg, var(--sub-orange-bright), transparent);
  box-shadow: none;
}

.subpage .primary-nav a {
  color: #9eaaaf;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.subpage .header-call {
  min-height: 2.55rem;
  border-color: rgba(240, 129, 26, 0.45);
  border-radius: 0.48rem;
  background: linear-gradient(180deg, rgba(240, 129, 26, 0.13), rgba(240, 129, 26, 0.04));
  color: #f7e2ce;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07);
}

.subpage .page-hero {
  padding-block: clamp(1.75rem, 4vw, 3rem);
  border-bottom-color: var(--sub-line);
  background:
    linear-gradient(90deg, rgba(3, 11, 17, 0.98), rgba(3, 11, 17, 0.76) 58%, rgba(240, 129, 26, 0.06)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 3rem);
}

.subpage .page-hero::after {
  width: 24rem;
  height: 24rem;
  background: rgba(240, 129, 26, 0.1);
}

.subpage .breadcrumb { margin-bottom: 1.2rem; }
.subpage .breadcrumb ol { color: #77878f; font-size: 0.7rem; }
.subpage .breadcrumb a { color: #a9b4b9; }
.subpage .page-hero-grid { gap: clamp(1.5rem, 4vw, 3.5rem); }
.subpage .page-hero-copy { min-width: 0; }

.subpage .eyebrow {
  color: var(--sub-orange-bright);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.subpage .page-hero h1 {
  max-width: 15ch;
  margin-top: 0.65rem;
  font-size: clamp(2.25rem, 5vw, 4.15rem);
  line-height: 0.98;
}

.subpage .page-lead {
  max-width: 36rem;
  margin-top: 1rem;
  color: #a9b5ba;
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  line-height: 1.58;
}

.subpage .page-hero-media {
  aspect-ratio: 16 / 9;
  max-height: 22rem;
  border-color: rgba(176, 197, 208, 0.22);
  border-radius: 0.8rem;
  background: #07131b;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 1.1rem 2.5rem rgba(0, 0, 0, 0.32);
}

.subpage .page-hero-media::after {
  background: linear-gradient(145deg, transparent 54%, rgba(240, 129, 26, 0.12));
}

.subpage .page-hero-media img { filter: saturate(0.82) contrast(1.1) brightness(0.92); }
.subpage .hero-actions { gap: 0.5rem; margin-top: 1.35rem; }

.subpage--services .page-hero-media {
  aspect-ratio: 4 / 3;
  max-height: none;
}

.subpage .button {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border-radius: 0.48rem;
  border-color: rgba(176, 197, 208, 0.24);
  background: linear-gradient(180deg, rgba(15, 31, 41, 0.98), rgba(5, 15, 22, 0.98));
  font-size: 0.78rem;
}

.subpage .button--primary {
  border-color: var(--sub-orange-bright);
  background: linear-gradient(180deg, #f58a20, #ca5707);
  color: #100a05;
}

.subpage .section { padding-block: clamp(2.75rem, 6vw, 4.5rem); }
.subpage .section--compact { padding-block: clamp(2.4rem, 5vw, 3.75rem); }

.subpage .section--surface {
  border-color: rgba(176, 197, 208, 0.11);
  background: linear-gradient(180deg, rgba(10, 24, 34, 0.6), rgba(4, 13, 20, 0.35));
}

.subpage .section-heading {
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.subpage .section-heading h2,
.subpage .block-title {
  max-width: 22ch;
  margin: 0;
  color: #f0f3f2;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 930;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.subpage .section-heading > p { color: #91a0a7; font-size: 0.86rem; line-height: 1.55; }
.subpage .section-block { margin-top: clamp(2.5rem, 6vw, 4rem); }

.subpage .card-grid,
.subpage .related-grid,
.subpage .mini-grid { gap: 0.8rem; }

.subpage .service-card {
  min-height: 0;
  grid-template-rows: 11rem minmax(11.5rem, 1fr);
  border-color: var(--sub-line);
  border-radius: 0.65rem;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 2.5rem), linear-gradient(145deg, rgba(12, 27, 37, 0.98), rgba(4, 13, 20, 0.99));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.055), inset 0 -1px rgba(0, 0, 0, 0.35);
}

.subpage .service-card::after { height: 0.12rem; background: linear-gradient(90deg, var(--sub-orange-bright), #b84303); }
.subpage .service-card-media { aspect-ratio: 4 / 3; border-bottom: 1px solid var(--sub-line); }
.subpage .service-card-media img { object-position: center; filter: saturate(0.86) contrast(1.1) brightness(0.9); }
.subpage .service-card-body { padding: 1rem; }
.subpage .service-card h3 { font-size: 1.05rem; }
.subpage .service-card p { margin-top: 0.55rem; font-size: 0.76rem; line-height: 1.5; }
.subpage .card-link { min-height: 2.75rem; padding-top: 0.7rem; font-size: 0.75rem; }

.subpage .brand-grid { gap: 0.72rem; }

.subpage .brand-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 9.2rem;
  grid-template-rows: 1fr auto auto;
  gap: 0.2rem;
  place-items: center;
  overflow: hidden;
  padding: 0.85rem;
  border: 1px solid var(--sub-line);
  border-radius: 0.62rem;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.048), transparent 45%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.011) 0 1px, transparent 1px 2rem),
    linear-gradient(145deg, rgba(12, 27, 37, 0.98), rgba(4, 13, 20, 0.99));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), inset 0 -1px rgba(0, 0, 0, 0.35);
  color: #edf1f1;
  text-align: center;
  text-decoration: none;
  transition: transform 220ms var(--ease), border-color 220ms ease, box-shadow 220ms ease;
}

.subpage .brand-card::after {
  position: absolute;
  right: 0.65rem;
  bottom: 0;
  left: 0.65rem;
  height: 0.11rem;
  background: linear-gradient(90deg, transparent, var(--sub-orange-bright), transparent);
  content: "";
  transform: scaleX(0.35);
  transition: transform 220ms var(--ease);
}

.subpage .brand-card:hover {
  border-color: rgba(255, 157, 55, 0.58);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 0.8rem 1.8rem rgba(0, 0, 0, 0.28);
  transform: translateY(-0.16rem);
}

.subpage .brand-card:hover::after { transform: scaleX(1); }

.subpage .brand-card__mark {
  display: flex;
  width: 100%;
  min-height: 4.4rem;
  align-items: center;
  justify-content: center;
  color: #dce5e9;
  filter: drop-shadow(0 0.45rem 0.55rem rgba(0, 0, 0, 0.48));
}

.subpage .brand-card__mark .brand-logo {
  display: block;
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  transition: filter 180ms ease, transform 180ms ease;
}

.subpage .brand-card__mark .brand-logo--wide {
  width: 5.2rem;
  height: 3.4rem;
}

.subpage .brand-card:hover .brand-logo {
  filter: brightness(1.16);
  transform: translateY(-0.08rem) scale(1.025);
}

.subpage .brand-card .brand-name {
  max-width: 100%;
  overflow: hidden;
  font-size: clamp(0.76rem, 1vw, 0.9rem);
  font-weight: 950;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.subpage .brand-card small { color: #778890; font-size: 0.58rem; }
.subpage .brand-card__arrow { position: absolute; top: 0.55rem; right: 0.65rem; color: var(--sub-orange-bright); font-size: 0.75rem; }
.subpage .affiliation-note,
.subpage .legal-note { margin: 1rem 0 0; color: #7f8d94; font-size: 0.7rem; line-height: 1.5; }
.subpage .legal-note--top { margin: 0 0 1.2rem; }
.subpage .legal-note--warning { padding-left: 0.75rem; border-left: 0.12rem solid rgba(255, 157, 55, 0.7); }

.subpage .brand-hero-mark {
  display: inline-flex;
  min-width: 8rem;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(176, 197, 208, 0.2);
  border-radius: 0.5rem;
  background: rgba(10, 24, 34, 0.72);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.subpage .brand-hero-mark .brand-logo {
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0.35rem 0.45rem rgba(0, 0, 0, 0.42));
}

.subpage .brand-hero-mark .brand-logo--wide { width: 3.8rem; height: 2.5rem; }
.subpage .brand-hero-mark__copy { display: grid; gap: 0.12rem; }
.subpage .brand-hero-mark strong { font-size: 1rem; font-weight: 950; }
.subpage .brand-hero-mark small { color: #788990; font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.08em; }

.subpage .panel-grid { display: grid; gap: 0.85rem; }

.subpage .tech-panel,
.subpage .brand-link-panel,
.subpage .code-summary-panel,
.subpage .faq-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.1rem, 2.5vw, 1.55rem);
  border: 1px solid var(--sub-line);
  border-radius: 0.7rem;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.011) 0 1px, transparent 1px 2.4rem), linear-gradient(145deg, rgba(12, 27, 37, 0.97), rgba(4, 13, 20, 0.99));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.055), inset 0 -1px rgba(0, 0, 0, 0.34);
}

.subpage .tech-panel::after,
.subpage .brand-link-panel::after {
  position: absolute;
  top: 0;
  left: 1rem;
  width: 3.5rem;
  height: 0.12rem;
  background: var(--sub-orange-bright);
  content: "";
}

.subpage .tech-panel h2,
.subpage .brand-link-panel h2,
.subpage .code-summary-panel h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.1;
}

.subpage .tech-panel p,
.subpage .brand-link-panel p,
.subpage .code-summary-panel p { color: #aab5ba; font-size: 0.84rem; line-height: 1.62; }

.subpage .check-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.subpage .check-list li {
  position: relative;
  padding-left: 1.15rem;
  color: #b7c0c4;
  font-size: 0.82rem;
}

.subpage .check-list li::before { position: absolute; left: 0; color: var(--sub-orange-bright); content: "◆"; font-size: 0.45rem; }

.subpage .process-list { margin-block: 0; }
.subpage .process-list li { border-color: var(--sub-line); border-radius: 0.62rem; background: rgba(9, 22, 31, 0.82); font-size: 0.78rem; }
.subpage .process-list li::before { border: 1px solid rgba(240, 129, 26, 0.3); border-radius: 0.4rem; background: rgba(240, 129, 26, 0.08); }

.subpage .info-card,
.subpage .content-card,
.subpage .code-card {
  border-color: var(--sub-line);
  border-radius: 0.65rem;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.01) 0 1px, transparent 1px 2.2rem), linear-gradient(145deg, rgba(12, 27, 37, 0.97), rgba(4, 13, 20, 0.99));
}

.subpage .info-card { padding: 1rem; }
.subpage .info-card h3 { font-size: 1rem; }
.subpage .info-card p { font-size: 0.74rem; line-height: 1.48; }
.subpage .info-card a { min-height: 2.75rem; margin-top: 0.6rem; font-size: 0.72rem; }

.subpage .code-grid { gap: 0.72rem; }
.subpage .code-card { min-height: 11.6rem; padding: 1rem; }
.subpage .code-card h3 { font-size: 0.95rem; }
.subpage .code-card h2 { margin: 0.55rem 0 0; font-size: 0.95rem; line-height: 1.2; }
.subpage .code-card p { font-size: 0.72rem; line-height: 1.45; }
.subpage .code-label { border-radius: 0.36rem; background: rgba(240, 129, 26, 0.08); color: var(--sub-orange-bright); font-size: 0.82rem; }

.subpage .code-summary-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.subpage .code-summary-panel > .code-label { padding: 0.6rem 0.7rem; font-size: 1.15rem; }
.subpage .cluster-grid { display: grid; gap: 0.85rem; }
.subpage .service-focus-card { margin: 0; }

.subpage .link-chip-grid { display: grid; gap: 0.45rem; margin-top: 1rem; }
.subpage .link-chip-grid a {
  display: flex;
  min-width: 0;
  min-height: 2.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(176, 197, 208, 0.13);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.018);
  color: #b6c0c4;
  font-size: 0.74rem;
  text-decoration: none;
}

.subpage .link-chip-grid a:hover { border-color: rgba(240, 129, 26, 0.4); color: #f4f5f4; }
.subpage .link-chip-grid a span { flex: 0 0 auto; color: var(--sub-orange-bright); }

.subpage .subpage-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem; }
.subpage .gallery-card { position: relative; aspect-ratio: 4 / 3; overflow: hidden; margin: 0; border: 1px solid var(--sub-line); border-radius: 0.62rem; background: #07131b; }
.subpage .gallery-card:last-child { grid-column: 1 / -1; aspect-ratio: 16 / 7; }
.subpage .gallery-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.84) contrast(1.08) brightness(0.9); transition: transform 280ms var(--ease); }
.subpage .gallery-card:hover img { transform: scale(1.025); }

.subpage .faq-list { margin-top: 1rem; }
.subpage .faq-list details { border-color: var(--sub-line); border-radius: 0.55rem; background: rgba(255, 255, 255, 0.018); }
.subpage .faq-list summary { min-height: 3rem; padding: 0.75rem 0.85rem; font-size: 0.8rem; }
.subpage .faq-list details p { color: #a8b3b8; font-size: 0.78rem; }

.subpage .filter-bar { margin-bottom: 1rem; }
.subpage .filter-field { min-height: 3rem; border-radius: 0.5rem; background: rgba(9, 22, 31, 0.9); }

.subpage .contact-panel,
.subpage .hours-panel,
.subpage .map-panel {
  border-color: var(--sub-line);
  border-radius: 0.7rem;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.011) 0 1px, transparent 1px 2.5rem), linear-gradient(145deg, rgba(12, 27, 37, 0.97), rgba(4, 13, 20, 0.99));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.055), inset 0 -1px rgba(0, 0, 0, 0.34);
}

.subpage .hero-google-rating {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
  max-width: 42rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--sub-line);
  border-radius: 0.65rem;
  background: rgba(9, 22, 31, 0.92);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.055);
}

.subpage .google-mark { display: grid; width: 2.1rem; height: 2.1rem; place-items: center; border: 1px solid rgba(240, 129, 26, 0.5); border-radius: 0.45rem; color: var(--sub-orange-bright); font-weight: 950; }
.subpage .google-rating-stars { color: var(--sub-orange-bright); letter-spacing: 0.05em; }
.subpage .google-rating-score { color: #f3f5f4; font-size: 0.9rem; }
.subpage .google-rating-score span,
.subpage .google-rating-count { color: #87969d; font-size: 0.68rem; }
.subpage .google-rating-link { min-height: 2.1rem; padding: 0.4rem 0.55rem; border: 1px solid rgba(240, 129, 26, 0.42); border-radius: 0.4rem; color: #ffc077; font-size: 0.68rem; font-weight: 800; text-decoration: none; }

.subpage .cta-band {
  padding: clamp(1.3rem, 3vw, 2rem);
  border-color: rgba(240, 129, 26, 0.4);
  border-radius: 0.75rem;
  background: linear-gradient(115deg, rgba(240, 129, 26, 0.09), transparent 36%), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.011) 0 1px, transparent 1px 2.5rem), linear-gradient(145deg, rgba(12, 27, 37, 0.98), rgba(4, 13, 20, 0.99));
}

.subpage .cta-band h2 { max-width: 22ch; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.subpage .cta-band p { margin-top: 0.7rem; font-size: 0.82rem; }

.subpage .site-footer {
  border-top-color: rgba(176, 197, 208, 0.16);
  background: linear-gradient(180deg, rgba(5, 14, 21, 0.98), #02080d);
}

.subpage .footer-main { gap: 2rem; padding-block: 2.4rem 1.8rem; }
.subpage .footer-brand p { max-width: 28rem; color: #809097; font-size: 0.72rem; }
.subpage .footer-column h2 { color: var(--sub-orange-bright); font-size: 0.7rem; }
.subpage .footer-column a,
.subpage .footer-column span { color: #87969d; font-size: 0.68rem; }
.subpage .footer-bottom { color: #66777f; font-size: 0.62rem; }

@media (min-width: 48rem) {
  .subpage .brand-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .subpage .panel-grid--two,
  .subpage .cluster-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .subpage .process-list--grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .subpage .subpage-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .subpage .gallery-card:last-child { grid-column: auto; aspect-ratio: 4 / 3; }
}

@media (min-width: 64rem) {
  .subpage .card-grid--services { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .subpage .process-list--grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .subpage .related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 75rem) {
  .subpage--brands .brand-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
}

@media (max-width: 47.99rem) {
  .subpage .container { width: min(calc(100% - 1.5rem), 82rem); }
  .subpage .page-hero { padding-block: 1.5rem 2rem; }
  .subpage .page-hero-grid { gap: 1.3rem; }
  .subpage .page-hero h1 { font-size: clamp(2rem, 10.5vw, 2.75rem); }
  .subpage .page-lead { font-size: 0.82rem; }
  .subpage .page-hero-media { max-height: 12rem; }
  .subpage--services .page-hero-media { max-height: none; }
  .subpage .page-hero-media img { object-position: center 42%; }
  .subpage .section { padding-block: 2.3rem; }
  .subpage .section-heading h2,
  .subpage .block-title { font-size: 1.45rem; }
  .subpage .section-heading > p { font-size: 0.74rem; }
  .subpage .service-card { grid-template-rows: 8.2rem minmax(10.5rem, 1fr); }
  .subpage .service-card-body { padding: 0.75rem; }
  .subpage .service-card h3 { font-size: 0.88rem; }
  .subpage .service-card p { display: -webkit-box; overflow: hidden; font-size: 0.65rem; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .subpage .brand-card { min-height: 8rem; padding: 0.7rem; }
  .subpage .brand-card__mark { min-height: 3.6rem; }
  .subpage .brand-card__mark .brand-logo { width: 3.25rem; height: 3.25rem; }
  .subpage .brand-card__mark .brand-logo--wide { width: 4.4rem; height: 2.85rem; }
  .subpage .brand-card .brand-name { font-size: 0.78rem; }
  .subpage .code-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .subpage .code-card { min-height: 10.5rem; padding: 0.75rem; }
  .subpage .code-card p { display: -webkit-box; overflow: hidden; font-size: 0.64rem; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
  .subpage .code-summary-panel { grid-template-columns: 1fr; }
  .subpage .hero-google-rating { grid-template-columns: auto 1fr; }
  .subpage .google-rating-stars,
  .subpage .google-rating-link { justify-self: start; }
  .subpage .google-rating-link { min-height: 2.75rem; }
  .subpage .footer-main { padding-top: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .subpage .service-card,
  .subpage .service-card-media img,
  .subpage .brand-card,
  .subpage .gallery-card img { transition: none; }
}

/* Decorative layers must never become touch or click targets. */
.hero::after,
.hero-media::after,
.service-card::after,
.service-card-media::after,
.brand-chip::before,
.page-hero::after,
.page-hero-media::after,
.map-panel::before,
.map-panel::after,
.home-page .home-hero::after,
.home-page .brand-chip::after,
.home-page .code-card::before,
.home-page .workshop-shot::after,
.subpage .brand-card::after,
.subpage .tech-panel::after,
.subpage .brand-link-panel::after {
  pointer-events: none;
}

/* Global footer scale: shared by the homepage, every generated subpage and 404. */
:is(.home-page, .subpage) .site-footer {
  padding-top: 0;
  border-top: 1px solid rgba(176, 197, 208, 0.18);
  background:
    linear-gradient(180deg, rgba(7, 18, 26, 0.98), rgba(2, 8, 13, 1)),
    #02080d;
}

:is(.home-page, .subpage) .footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.75rem;
  padding-block: 4.25rem 3.25rem;
}

:is(.home-page, .subpage) .footer-brand .brand {
  display: inline-flex;
  width: fit-content;
  min-width: 0;
  align-items: center;
  color: #f4f6f5;
  font-size: clamp(2.1rem, 3vw, 2.45rem);
  font-style: italic;
  font-weight: 1000;
  letter-spacing: -0.05em;
  line-height: 1;
  text-decoration: none;
}

:is(.home-page, .subpage) .footer-brand .brand-mark {
  width: 1.65rem;
  height: 0.14rem;
  margin-left: 0.45rem;
  background: linear-gradient(90deg, #ff9d37, transparent);
}

:is(.home-page, .subpage) .footer-brand p {
  max-width: 29rem;
  margin: 1.2rem 0 0;
  color: #98a6ad;
  font-size: 0.93rem;
  line-height: 1.7;
}

:is(.home-page, .subpage) .footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 2.5rem;
}

:is(.home-page, .subpage) .footer-column h2 {
  margin: 0 0 0.95rem;
  color: #ff9d37;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

:is(.home-page, .subpage) .footer-column a,
:is(.home-page, .subpage) .footer-column span {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  color: #aeb9be;
  font-size: 0.91rem;
  line-height: 1.45;
  text-decoration: none;
}

:is(.home-page, .subpage) .footer-column a {
  width: fit-content;
  transition: color 160ms ease, transform 160ms ease;
}

:is(.home-page, .subpage) .footer-column a:hover {
  color: #ffc078;
  transform: translateX(0.15rem);
}

:is(.home-page, .subpage) .footer-bottom {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding-block: 1.35rem;
  border-top: 1px solid rgba(176, 197, 208, 0.15);
  color: #87969d;
  font-size: 0.84rem;
  line-height: 1.55;
}

:is(.home-page, .subpage) .footer-bottom > span:last-child {
  justify-self: end;
  max-width: 51rem;
  text-align: right;
}

@media (min-width: 48rem) {
  :is(.home-page, .subpage) .footer-main {
    grid-template-columns: minmax(20rem, 0.76fr) minmax(0, 1.24fr);
    gap: clamp(3rem, 7vw, 6.5rem);
  }

  :is(.home-page, .subpage) .footer-columns {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.1fr);
    gap: clamp(1.75rem, 3vw, 3.25rem);
  }
}

@media (max-width: 47.99rem) {
  :is(.home-page, .subpage) .footer-main {
    gap: 2.1rem;
    padding-block: 3rem 2.35rem;
  }

  :is(.home-page, .subpage) .footer-brand .brand {
    font-size: 2.15rem;
  }

  :is(.home-page, .subpage) .footer-brand p {
    max-width: 100%;
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  :is(.home-page, .subpage) .footer-columns {
    gap: 1.75rem 1.25rem;
  }

  :is(.home-page, .subpage) .footer-column:last-child {
    grid-column: 1 / -1;
    padding-top: 0.4rem;
    border-top: 1px solid rgba(176, 197, 208, 0.12);
  }

  :is(.home-page, .subpage) .footer-column h2 {
    margin-bottom: 0.7rem;
    font-size: 0.88rem;
  }

  :is(.home-page, .subpage) .footer-column a,
  :is(.home-page, .subpage) .footer-column span {
    min-height: 2.75rem;
    font-size: 0.88rem;
  }

  :is(.home-page, .subpage) .footer-bottom {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding-block: 1.25rem;
    font-size: 0.82rem;
  }

  :is(.home-page, .subpage) .footer-bottom > span:last-child {
    justify-self: start;
    max-width: 100%;
    text-align: left;
  }
}

/* BORCAR Consent Mode v2 */
.borcar-consent[hidden] {
  display: none !important;
}

.borcar-consent {
  position: fixed;
  z-index: 10050;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  max-width: 72rem;
  margin-inline: auto;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 1rem;
  background: rgba(5, 13, 19, .98);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.42);
  color: #f4f6f7;
}

.borcar-consent__inner {
  display: grid;
  gap: 1rem;
}

.borcar-consent__copy strong {
  display: block;
  margin-bottom: .4rem;
  font-size: 1.02rem;
}

.borcar-consent__copy p {
  max-width: 60rem;
  margin: 0;
  color: rgba(244,246,247,.78);
  font-size: .9rem;
  line-height: 1.55;
}

.borcar-consent__settings {
  display: grid;
  gap: .55rem;
}

.borcar-consent__settings[hidden] {
  display: none !important;
}

.borcar-consent__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem .85rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .7rem;
  background: rgba(255,255,255,.035);
}

.borcar-consent__option span {
  display: grid;
  gap: .15rem;
}

.borcar-consent__option small {
  color: rgba(244,246,247,.65);
}

.borcar-consent__option input {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: #e87516;
}

.borcar-consent__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
}

.borcar-consent__actions button,
.borcar-consent-open {
  min-height: 3rem;
  padding: .65rem .9rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: .65rem;
  background: rgba(255,255,255,.06);
  color: #f4f6f7;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.borcar-consent__actions button {
  width: 100%;
  white-space: nowrap;
}

.borcar-consent__accept {
  grid-column: 1 / -1;
}

.borcar-consent__accept,
.borcar-consent__save {
  border-color: rgba(232,117,22,.7) !important;
  background: #e87516 !important;
  color: #071017 !important;
}

.borcar-consent-open {
  position: fixed;
  z-index: 10040;
  left: .75rem;
  bottom: .75rem;
  min-height: 2.25rem;
  padding: .45rem .65rem;
  font-size: .72rem;
  opacity: .82;
}

@media (max-width: 767px) {
  .borcar-consent {
    right: .65rem;
    bottom: 4.9rem;
    left: .65rem;
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
    padding: .85rem;
  }

  .borcar-consent__actions {
    grid-template-columns: 1fr 1fr;
  }

  .borcar-consent__actions button {
    padding-inline: .35rem;
    font-size: .75rem;
  }

  .borcar-consent__accept {
    grid-column: 1 / -1;
    width: 100%;
  }

  .borcar-consent-open {
    bottom: 4.9rem;
  }
}

/* BORCAR consent desktop compact override */
.borcar-consent {
  background: rgba(0, 0, 0, 0.34) !important;
  backdrop-filter: blur(3px);
}

.borcar-consent__panel {
  background: rgba(4, 14, 22, 0.82) !important;
}

@media (min-width: 992px) {
  .borcar-consent {
    justify-content: flex-start !important;
    align-items: flex-end !important;
    padding: 1.25rem 1.25rem 1.5rem !important;
  }

  .borcar-consent__panel {
    width: min(560px, calc(100vw - 2.5rem)) !important;
    max-width: 560px !important;
    margin: 0 !important;
    border-radius: 1rem !important;
  }

  .borcar-consent__actions {
    gap: 0.75rem !important;
  }
}

/* BORCAR consent desktop final compact lock */
@media (min-width: 992px) {
  .borcar-consent {
    right: auto !important;
    left: 1.4rem !important;
    bottom: 1.4rem !important;

    width: min(520px, calc(100vw - 2.8rem)) !important;
    max-width: 520px !important;
    margin: 0 !important;

    padding: 0.9rem !important;

    background: rgba(5, 13, 19, 0.76) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }

  .borcar-consent__inner {
    gap: 0.75rem !important;
  }

  .borcar-consent__copy strong {
    margin-bottom: 0.3rem !important;
    font-size: 0.95rem !important;
  }

  .borcar-consent__copy p {
    font-size: 0.82rem !important;
    line-height: 1.45 !important;
  }

  .borcar-consent__actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.5rem !important;
  }

  .borcar-consent__actions button {
    width: 100% !important;
    min-height: 2.8rem !important;
    padding: 0.55rem 0.5rem !important;
    font-size: 0.8rem !important;
    white-space: nowrap !important;
  }

  .borcar-consent__accept,
  .borcar-consent__save {
    grid-column: 1 / -1 !important;
  }
}
