:root {
  --bg-dark: #0b0f1a;
  --bg-deep: #020617;
  --bg-soft: #111827;
  --primary: #1e90ff;
  --primary-soft: #0ea5e9;
  --primary-deep: #1d4ed8;
  --accent: #f97316;
  --accent-soft: #fb923c;
  --accent-deep: #ea580c;
  --text: #ffffff;
  --text-soft: #cbd5f5;
  --text-muted: #94a3b8;
  --white: #ffffff;
  --line: rgba(148, 163, 184, 0.25);
  --container: 1140px;
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #111827 0%, #020617 58%, #020617 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.topbar {
  background: #0b0f1a;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.35rem 0;
}

.topbar-wrap {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-left {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
}

.topbar-address {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 100%;
  text-decoration: none;
  color: #e2e8f0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.topbar-address:hover {
  color: #fff;
}

.topbar-address-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font-size: 0.92rem;
  color: #7dd3fc;
  background: linear-gradient(145deg, rgba(30, 144, 255, 0.28), rgba(14, 165, 233, 0.14));
  border: 1px solid rgba(14, 165, 233, 0.42);
  box-shadow: 0 0 0 1px rgba(2, 6, 23, 0.25);
}

.topbar-address:hover .topbar-address-icon {
  color: #bae6fd;
  border-color: rgba(56, 189, 248, 0.55);
  background: linear-gradient(145deg, rgba(30, 144, 255, 0.38), rgba(14, 165, 233, 0.22));
}

.topbar-address-text {
  flex: 1;
  min-width: 0;
}

.topbar-address-place {
  white-space: nowrap;
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.topbar-btn {
  min-height: 36px;
  padding: 0 0.9rem;
  border-radius: 10px;
  font-size: 0.83rem;
  color: #fff;
  border: 1px solid transparent;
  font-weight: 700;
}

.topbar-btn-call {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.35);
}

.topbar-btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.33);
}

.topbar-btn-route {
  display: none;
  background: linear-gradient(135deg, #1e90ff, #1d4ed8);
  box-shadow: 0 8px 20px rgba(29, 78, 216, 0.32);
}

.topbar-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.topbar-btn:active {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(12px);
  overflow-x: clip;
}

.nav-wrap {
  position: relative;
  padding: 0;
  width: min(calc(100% - 1rem), 1360px);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}

.brand-logo {
  width: 126px;
  height: 126px;
  display: block;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.header-menu-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: 0;
  padding: 0.62rem 0;
}

.header-menu-row::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  background: rgba(17, 24, 39, 0.9);
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  z-index: 0;
  pointer-events: none;
}

.menu-group {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--text-soft);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.menu-group-left {
  justify-content: flex-end;
  padding-right: 1.8rem;
}

.menu-group-right {
  justify-content: flex-start;
  padding-left: 1.8rem;
}

.menu-group > a,
.menu-link-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  opacity: 0.95;
  padding: 0.54rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(203, 213, 245, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 600;
  transition:
    background 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  text-decoration: none;
}

.menu-group > a::after,
.menu-link-dropdown::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-soft), var(--accent-soft));
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.menu-group > a:hover,
.menu-link-dropdown:hover {
  opacity: 1;
  color: #fff;
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(30, 144, 255, 0.2), rgba(14, 165, 233, 0.12));
  border-color: rgba(14, 165, 233, 0.46);
  box-shadow: 0 8px 22px rgba(14, 165, 233, 0.2);
}

.menu-group > a:hover::after,
.menu-link-dropdown:hover::after,
.menu-group > a.is-active::after,
.menu-link-dropdown.is-active::after {
  width: calc(100% - 1.1rem);
}

.menu-group > a:focus-visible,
.menu-link-dropdown:focus-visible {
  outline: 2px solid rgba(251, 146, 60, 0.78);
  outline-offset: 2px;
}

.menu-group > a.is-active,
.menu-link-dropdown.is-active {
  color: #fff;
  border-color: rgba(14, 165, 233, 0.42);
  background: linear-gradient(180deg, rgba(30, 144, 255, 0.18), rgba(14, 165, 233, 0.1));
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.16);
}

.menu-dropdown {
  position: relative;
  padding-bottom: 0.45rem;
  margin-bottom: -0.45rem;
}

.menu-link-dropdown i {
  font-size: 0.72rem;
  opacity: 0.8;
  transition: transform 180ms ease, opacity 180ms ease;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 0.05rem);
  left: 0;
  min-width: 240px;
  display: grid;
  gap: 0.28rem;
  padding: 0.5rem;
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 14px 35px rgba(2, 6, 23, 0.42);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 8;
}

.dropdown-menu a {
  padding: 0.54rem 0.7rem;
  border-radius: 10px;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.2px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.dropdown-menu a:hover {
  color: #fff;
  background: rgba(30, 144, 255, 0.15);
  border-color: rgba(14, 165, 233, 0.46);
}

.dropdown-menu a.is-active {
  color: #fff;
  background: rgba(30, 144, 255, 0.24);
  border-color: rgba(14, 165, 233, 0.52);
}

.menu-dropdown:hover .dropdown-menu,
.menu-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-dropdown:hover .menu-link-dropdown i,
.menu-dropdown:focus-within .menu-link-dropdown i {
  opacity: 1;
  transform: rotate(180deg);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  transition: background 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle:focus-visible {
  outline: 2px solid rgba(30, 144, 255, 0.65);
  outline-offset: 2px;
}

.nav {
  display: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 0;
  flex-shrink: 0;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  box-shadow: 0 0 0 1px rgba(2, 6, 23, 0.15);
  transition:
    transform 220ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  border-radius: 11px;
  padding: 0 1.2rem;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn i {
  font-size: 0.95em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #fff;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-deep));
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.45);
}

.btn-secondary {
  color: var(--text-soft);
  border-color: rgba(203, 213, 245, 0.35);
  background: rgba(30, 144, 255, 0.12);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.24);
  border-color: rgba(14, 165, 233, 0.5);
  color: #fff;
}

.btn-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.38);
}

.btn-whatsapp:hover {
  color: #fff;
  background: linear-gradient(135deg, #34e076, #1fa855);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.48);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-whatsapp i {
  font-size: 1.05em;
}

.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  margin-top: 0;
  border-top: 0;
}

.hero-slider {
  position: relative;
  min-height: 82vh;
  margin-top: 0;
}

.hero-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(148, 163, 184, 0.24);
  z-index: 4;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 480ms ease;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.96), rgba(11, 15, 26, 0.92));
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: stretch;
}

.hero-media {
  border-radius: 0;
  overflow: hidden;
  min-height: 100%;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-right: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-panel {
  border-radius: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.82), rgba(2, 6, 23, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-left: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 20px 46px rgba(2, 6, 23, 0.38);
  display: flex;
  align-items: center;
  min-height: 100%;
}

.hero-content {
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
  padding: 3.2rem 2.5rem;
  text-align: left;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.95rem;
  color: #93c5fd;
  font-size: 0.86rem;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-weight: 600;
}

.eyebrow.dark {
  color: var(--primary-soft);
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.16;
  max-width: 18ch;
  letter-spacing: -0.02em;
}

/* Alt sayfalarda ana H1 — tek ölçü (galeri sayfası referans) */
.subpage .about-intro h1,
.subpage .contact-intro h1,
.subpage .gallery-page-head h1 {
  max-width: none;
  margin-bottom: 0.65rem;
  font-size: clamp(1.55rem, 2.7vw, 2.3rem);
  line-height: 1.28;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.hero-text {
  margin-top: 1rem;
  max-width: 56ch;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-cards {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-cards article {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(2, 6, 23, 0.52);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

.hero-cards strong {
  display: block;
  font-size: 1.1rem;
}

.hero-cards span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero-controls {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: calc(100% - 2rem);
  z-index: 5;
  pointer-events: none;
}

.hero-steps {
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 0.52rem;
  pointer-events: auto;
}

.hero-steps button {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(203, 213, 245, 0.38);
  background: rgba(2, 6, 23, 0.72);
  color: #cbd5f5;
  font-family: "Montserrat", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.hero-steps button:hover {
  transform: translateX(2px);
  color: #fff;
  background: rgba(30, 144, 255, 0.32);
  border-color: rgba(14, 165, 233, 0.62);
}

.hero-steps button.is-active {
  color: #fff;
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.9), rgba(234, 88, 12, 0.9));
  border-color: rgba(251, 146, 60, 0.95);
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.28);
}

.section {
  padding: 4.8rem 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.55rem, 2.7vw, 2.3rem);
  line-height: 1.3;
}

h3 {
  font-family: "Montserrat", sans-serif;
}

.services {
  background: transparent;
  padding-bottom: 2.5rem;
}

.process {
  padding-top: 2.5rem;
}

.services .section-head,
.process .section-head,
.gallery .section-head,
.brands-section .section-head {
  max-width: 100%;
}

.services .section-head h2,
.process .section-head h2,
.gallery .section-head h2,
.brands-section .section-head h2 {
  font-size: clamp(1.05rem, 1.55vw, 1.48rem);
  line-height: 1.22;
  letter-spacing: -0.025em;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .services .section-head h2,
  .process .section-head h2,
  .gallery .section-head h2,
  .brands-section .section-head h2 {
    white-space: nowrap;
  }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.15rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 0;
  min-height: 420px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.service-card:hover {
  border-color: rgba(14, 165, 233, 0.45);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.45);
  transform: translateY(-3px);
}

.service-card-media {
  position: relative;
  flex: 1;
  min-height: 220px;
  max-height: 260px;
  overflow: hidden;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 520ms ease;
}

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

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0.08) 0%,
    rgba(2, 6, 23, 0.55) 55%,
    rgba(11, 15, 26, 0.92) 100%
  );
  pointer-events: none;
}

.service-card-body {
  position: relative;
  z-index: 1;
  padding: 1.35rem 1.4rem 1.5rem;
  margin-top: -3.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 15, 26, 0.98) 28%);
}

.service-card h2,
.service-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.55rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.service-card h2 {
  font-weight: 700;
}

.service-card p {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  color: var(--accent-soft);
  transition: color 180ms ease, gap 180ms ease;
}

.service-card-cta::after {
  content: "→";
  font-size: 0.95em;
  transition: transform 180ms ease;
}

.service-card-cta:hover {
  color: #fff;
}

.service-card-cta:hover::after {
  transform: translateX(3px);
}

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

.process-grid article {
  background: rgba(17, 24, 39, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.3rem;
}

.process-grid span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  align-items: center;
  justify-content: center;
  background: rgba(30, 144, 255, 0.18);
  color: #93c5fd;
  font-weight: 700;
}

.process-grid h3 {
  margin: 0.75rem 0 0.5rem;
}

.process-grid p {
  color: var(--text-soft);
}

.process-grid article a {
  color: #93c5fd;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.process-grid article a:hover {
  color: #bfdbfe;
}

/* Breadcrumb (yalnızca yönlendirme linkleri) */
.breadcrumb-bar {
  background: rgba(11, 15, 26, 0.92);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  padding: 0.55rem 0;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.breadcrumb-item a {
  color: var(--text-muted);
  transition: color 160ms ease;
}

.breadcrumb-item a:hover {
  color: var(--primary-soft);
}

.breadcrumb-current {
  color: var(--text-soft);
}

.breadcrumb-sep {
  display: flex;
  align-items: center;
  padding: 0 0.35rem;
  list-style: none;
  user-select: none;
}

.breadcrumb-sep-icon {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1;
  opacity: 0.75;
}

/* Hakkımızda & alt sayfa gövdesi */
.subpage-about .about-hero {
  padding-top: 2.25rem;
  padding-bottom: 2.75rem;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.about-visual {
  margin: 0;
}

.about-visual-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    0 24px 48px rgba(2, 6, 23, 0.55),
    0 0 0 1px rgba(30, 144, 255, 0.12);
  background: var(--bg-soft);
}

.about-visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(30, 144, 255, 0.08), transparent 42%, rgba(249, 115, 22, 0.06));
}

.about-visual-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.about-visual-caption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.about-visual-caption i {
  color: var(--primary-soft);
  font-size: 1rem;
}

.about-intro .eyebrow {
  margin-bottom: 0.5rem;
}

.about-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 1rem;
  max-width: 46ch;
}

.about-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  max-width: 52ch;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.about-pillars {
  padding-top: 0.5rem;
  padding-bottom: 3.25rem;
}

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

.about-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-pillar {
  background: rgba(17, 24, 39, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.35rem 1.25rem;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.about-pillar:hover {
  border-color: rgba(30, 144, 255, 0.35);
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.4);
}

.about-pillar-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(30, 144, 255, 0.18);
  color: #93c5fd;
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.about-pillar h3 {
  font-size: 1.05rem;
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
}

.about-pillar p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.about-closing {
  padding-top: 0;
  padding-bottom: 4rem;
}

.about-closing-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  border-radius: 16px;
  border: 1px solid rgba(30, 144, 255, 0.22);
  background: linear-gradient(125deg, rgba(17, 24, 39, 0.9), rgba(2, 6, 23, 0.75));
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.45);
}

.about-closing-text {
  flex: 1 1 16rem;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 40rem;
}

/* Hizmet detay — üst bölüm: Hakkımızda ile aynı about-split (görsel solda, metin sağda) */
.page-service-detail .service-detail-hero {
  padding-top: 2.25rem;
  padding-bottom: 2.5rem;
}

.page-service-detail .service-detail-intro-text .eyebrow {
  margin-bottom: 0.5rem;
}

.service-detail-title-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}

/* H1: genel h1 kuralından bağımsız — diğer alt sayfalarla aynı ölçü (split içinde bazen büyük kalıyordu) */
.page-service-detail .service-detail-title-row h1 {
  max-width: none;
  margin-bottom: 0.65rem;
  font-size: clamp(1.55rem, 2.7vw, 2.3rem);
  line-height: 1.28;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.service-detail-page-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.14);
  border: 1px solid rgba(14, 165, 233, 0.35);
  color: var(--accent-soft);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.service-detail-lead {
  max-width: 46ch;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 1rem 0 0;
}

.page-service-detail .service-detail-body {
  padding-top: 0.25rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

/* Gövde + CTA kartı: aynı max genişlik, ortada hizalı (CTA ile birebir) */
.page-service-detail .service-detail-body-inner,
.page-service-detail .service-detail-cta-inner {
  max-width: 72rem;
  margin-inline: auto;
  width: 100%;
  box-sizing: border-box;
}

.service-detail-body-inner {
  display: grid;
  gap: 2rem;
  padding-top: 1.75rem;
}

.service-detail-block {
  padding: 1.35rem 1.4rem 1.45rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(17, 24, 39, 0.55);
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.28);
}

.service-detail-block h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
  padding-bottom: 0.65rem;
  color: #e2e8f0;
  letter-spacing: -0.02em;
  border-bottom: 1px solid rgba(14, 165, 233, 0.22);
}

.service-detail-block p {
  color: var(--text-soft);
  line-height: 1.72;
  margin: 0 0 0.85rem;
  font-size: 0.96rem;
}

.service-detail-block p:last-child {
  margin-bottom: 0;
}

.page-service-detail .service-detail-cta {
  padding-top: 0.5rem;
  padding-bottom: 4rem;
}

.service-detail-cta-inner {
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(17, 24, 39, 0.75);
  border-radius: 12px;
  padding: 1.65rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.service-detail-cta-text {
  flex: 1 1 14rem;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 100%;
}

.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* İletişim sayfası */
.page-contact .contact-intro {
  padding-top: 2rem;
  padding-bottom: 1.25rem;
}

.contact-intro-lead {
  max-width: 42rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0;
}

.page-contact .contact-body {
  padding-top: 0.5rem;
  padding-bottom: 4rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.contact-quick {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.75rem, 1fr));
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}

.contact-quick-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 0.75rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(17, 24, 39, 0.75);
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-quick-btn:hover {
  border-color: rgba(30, 144, 255, 0.4);
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.45);
  transform: translateY(-1px);
}

.contact-quick-btn--wa:hover {
  border-color: rgba(34, 197, 94, 0.45);
}

.contact-quick-icon {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(30, 144, 255, 0.2);
  color: #93c5fd;
  font-size: 1.05rem;
}

.contact-quick-btn--wa .contact-quick-icon {
  background: rgba(34, 197, 94, 0.22);
  color: #86efac;
}

.contact-quick-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.contact-quick-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-quick-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  line-height: 1.35;
}

.contact-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-detail-card {
  display: flex;
  gap: 0.9rem;
  padding: 1.1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(17, 24, 39, 0.65);
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(30, 144, 255, 0.15);
  color: var(--primary-soft);
  font-size: 1rem;
}

.contact-detail-body h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.4rem;
}

.contact-detail-body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.contact-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #93c5fd;
  transition: color 160ms ease;
}

.contact-detail-link:hover {
  color: #bfdbfe;
}

.contact-detail-link i {
  font-size: 0.75rem;
  opacity: 0.85;
}

.contact-detail-link--inline {
  margin-top: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-back-home {
  margin: 1.35rem 0 0;
}

.contact-back-home a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 160ms ease;
}

.contact-back-home a:hover {
  color: var(--primary-soft);
}

.contact-map-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-map-shell {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    0 24px 48px rgba(2, 6, 23, 0.5),
    0 0 0 1px rgba(30, 144, 255, 0.1);
  background: var(--bg-soft);
  aspect-ratio: 4 / 3;
  min-height: 260px;
}

.contact-map-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map-cta {
  align-self: flex-start;
}

.gallery {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

.gallery .section-head {
  margin-bottom: 1.75rem;
}

.gallery-page-back {
  margin-top: 2rem;
  padding-top: 0.25rem;
  text-align: center;
}

.gallery-page-back a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 160ms ease;
}

.gallery-page-back a:hover {
  color: var(--primary-soft);
}

/* Hizmetler özet sayfası */
.page-services-overview {
  padding-top: 2.25rem;
  padding-bottom: 3.5rem;
}

.page-services-overview .section-head {
  margin-bottom: 1.85rem;
}

.page-services-lead {
  margin: 0.75rem 0 0;
  max-width: 48rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.page-services-grid {
  margin-top: 0.25rem;
}

.page-services-back {
  margin-top: 2.25rem;
  padding-top: 0.25rem;
  text-align: center;
}

.page-services-back a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 160ms ease;
}

.page-services-back a:hover {
  color: var(--primary-soft);
}

.gallery-empty {
  margin: 0;
  padding: 2.5rem 1.25rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  border: 1px dashed var(--line);
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.45);
}

/* Mamak SEO sayfası — tutarlı başlık hiyerarşisi */
.page-mamak-seo .section-head {
  max-width: min(38rem, 100%);
  margin-bottom: 1.55rem;
}

.page-mamak-seo .section-head .eyebrow {
  margin-bottom: 0.4rem;
}

.page-mamak-seo .section-head h2 {
  font-size: clamp(1.3rem, 2.15vw, 1.8rem);
  line-height: 1.24;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 100%;
  white-space: normal;
  text-wrap: balance;
}

.page-mamak-seo .about-pillar h3 {
  font-size: clamp(1.02rem, 1.25vw, 1.1rem);
  line-height: 1.3;
}

.seo-prose-kicker {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.seo-prose-card h3 {
  font-size: clamp(1.04rem, 1.4vw, 1.16rem);
  line-height: 1.32;
  font-weight: 700;
  margin: 1.05rem 0 0.45rem;
  letter-spacing: -0.02em;
  color: var(--text-soft);
}

.seo-prose-card h3:first-of-type {
  margin-top: 0;
}

.seo-faq-section {
  padding-top: 0.5rem;
  padding-bottom: 3.5rem;
}

.page-mamak-seo .seo-faq-section .section-head {
  max-width: none;
  width: 100%;
}

.seo-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.seo-faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.65);
  overflow: hidden;
}

.seo-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
  text-align: left;
  transition: background 0.18s ease, color 0.18s ease;
}

.seo-faq-item summary::-webkit-details-marker {
  display: none;
}

.seo-faq-item summary::after {
  content: "\002B";
  flex-shrink: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-soft);
  line-height: 1;
}

.seo-faq-item[open] summary::after {
  content: "\2212";
}

.seo-faq-item summary:hover {
  background: rgba(30, 144, 255, 0.08);
  color: #fff;
}

.seo-faq-answer {
  padding: 0 1.15rem 1.1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.seo-faq-answer p {
  margin: 0;
  padding-top: 0.85rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 72ch;
}

.brands-section {
  padding-top: 2.25rem;
  padding-bottom: 3.25rem;
  overflow-x: clip;
}

.brands-section .section-head {
  margin-bottom: 1.5rem;
}

.brands-tagline {
  margin-top: 0.65rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 38rem;
}

.brands-marquee {
  position: relative;
  margin-top: 0.35rem;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.42) 0%, rgba(2, 6, 23, 0.25) 100%);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.brands-marquee-track {
  display: flex;
  width: max-content;
  animation: brands-marquee-scroll 48s linear infinite;
}

.brands-marquee:hover .brands-marquee-track {
  animation-play-state: paused;
}

@keyframes brands-marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}

.brands-marquee-list {
  display: flex;
  align-items: center;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  list-style: none;
  margin: 0;
  padding: 0 1rem;
  flex-shrink: 0;
}

.brands-marquee-list img {
  display: block;
  height: clamp(48px, 10vw, 72px);
  width: auto;
  max-width: min(220px, 38vw);
  object-fit: contain;
  filter: grayscale(0.12) brightness(1.04);
  opacity: 0.9;
  transition:
    opacity 200ms ease,
    filter 200ms ease,
    transform 200ms ease;
}

.brands-marquee-list img:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1.1);
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .brands-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    transform: none;
    row-gap: 1rem;
    column-gap: 1.5rem;
  }

  .brands-marquee-list--duplicate {
    display: none;
  }

  .brands-marquee-list {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0 0.75rem;
  }
}

.gallery-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.gallery-thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  background: rgba(17, 24, 39, 0.85);
  aspect-ratio: 3 / 2;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible {
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 12px 36px rgba(2, 6, 23, 0.55);
  transform: translateY(-2px);
  outline: none;
}

.gallery-thumb:focus-visible {
  outline: 2px solid rgba(30, 144, 255, 0.75);
  outline-offset: 2px;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 450ms ease;
}

.gallery-grid--home .gallery-thumb img {
  transition: transform 450ms ease, opacity 0.35s ease;
}

.gallery-thumb:hover img,
.gallery-thumb:focus-visible img {
  transform: scale(1.06);
}

.gallery-thumb-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0) 40%,
    rgba(2, 6, 23, 0.55) 100%
  );
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 200ms ease;
}

.gallery-thumb:hover .gallery-thumb-shade,
.gallery-thumb:focus-visible .gallery-thumb-shade {
  opacity: 1;
}

.gallery-thumb-icon {
  position: absolute;
  right: 0.65rem;
  bottom: 0.55rem;
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(145deg, rgba(30, 144, 255, 0.55), rgba(14, 165, 233, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 16px rgba(2, 6, 23, 0.45);
  pointer-events: none;
  transition: transform 200ms ease, background 200ms ease;
}

.gallery-thumb:hover .gallery-thumb-icon,
.gallery-thumb:focus-visible .gallery-thumb-icon {
  transform: scale(1.05);
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.85), rgba(234, 88, 12, 0.75));
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 3vw, 1.5rem);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  cursor: zoom-out;
  background: rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(10px);
}

.gallery-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(100%, min(92vw, 1100px));
  max-height: min(88vh, 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.gallery-lightbox-figure {
  margin: 0;
  width: 100%;
  max-height: min(72vh, 760px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.gallery-lightbox-img {
  max-width: 100%;
  max-height: min(68vh, 720px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.gallery-lightbox-caption {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-soft);
  text-align: center;
  max-width: 36rem;
  padding: 0 0.5rem;
}

.gallery-lightbox-count {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.gallery-lightbox-close {
  position: absolute;
  top: -0.25rem;
  right: 0;
  z-index: 2;
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 12px;
  background: rgba(17, 24, 39, 0.95);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  background: rgba(30, 144, 255, 0.25);
  border-color: rgba(14, 165, 233, 0.55);
  color: #fff;
  outline: none;
}

.gallery-lightbox-close:focus-visible {
  outline: 2px solid rgba(30, 144, 255, 0.8);
  outline-offset: 2px;
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 12px;
  background: rgba(17, 24, 39, 0.92);
  color: #e2e8f0;
  font-size: 1rem;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
  background: rgba(30, 144, 255, 0.28);
  border-color: rgba(14, 165, 233, 0.5);
  color: #fff;
  outline: none;
}

.gallery-lightbox-nav:focus-visible {
  outline: 2px solid rgba(30, 144, 255, 0.75);
  outline-offset: 2px;
}

.gallery-lightbox-prev {
  left: 0;
}

.gallery-lightbox-next {
  right: 0;
}

@media (min-width: 900px) {
  .gallery-lightbox-prev {
    left: -3.25rem;
  }

  .gallery-lightbox-next {
    right: -3.25rem;
  }
}

@media (max-width: 899px) {
  .gallery-lightbox-prev {
    left: 0.25rem;
  }

  .gallery-lightbox-next {
    right: 0.25rem;
  }

  .gallery-lightbox-close {
    top: 0.25rem;
    right: 0.25rem;
  }
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.cta {
  background: #020617;
  color: #fff;
  padding: 1.75rem 0 0;
  overflow-x: clip;
}

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  border: none;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: none;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem clamp(0.85rem, 4vw, 2.25rem);
  min-height: 5.5rem;
  text-decoration: none;
  color: #fff;
  transition: filter 180ms ease, transform 180ms ease;
}

.cta-panel-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.85rem, 2.5vw, 1.35rem);
  max-width: 22rem;
  width: 100%;
}

.cta-panel-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.12rem;
  text-align: left;
  min-width: 0;
}

.cta-panel:hover {
  filter: brightness(1.07);
}

.cta-panel:active {
  transform: scale(0.99);
}

.cta-panel--phone {
  background: linear-gradient(145deg, #1e90ff 0%, #0ea5e9 45%, #1d4ed8 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-panel--whatsapp {
  background: linear-gradient(145deg, #22c55e 0%, #16a34a 55%, #15803d 100%);
}

.cta-panel-icon {
  flex-shrink: 0;
  width: clamp(3rem, 8vw, 3.65rem);
  height: clamp(3rem, 8vw, 3.65rem);
  display: grid;
  place-items: center;
  font-size: clamp(1.45rem, 3.8vw, 1.85rem);
  line-height: 1;
  opacity: 0.98;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cta-panel-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  opacity: 0.9;
}

.cta-panel-value {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.92rem, 2.2vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.cta-panel-phones {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  line-height: 1.28;
}

.cta-panel-hint {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  line-height: 1.35;
}

.site-footer {
  background: linear-gradient(180deg, #0b0f1a 0%, #020617 48%, #020617 100%);
  color: var(--text-muted);
  border-top: none;
}

.footer-main {
  padding: 1.25rem 0 2.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2rem 2.5rem;
  align-items: start;
}

.footer-brand-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(0.85rem, 2.2vw, 1.15rem);
  max-width: 26rem;
  margin-inline: auto;
}

.footer-brand-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: #fff;
  margin: 0;
}

.footer-brand-logo-link {
  display: flex;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
  color: inherit;
  transition: transform 180ms ease, filter 180ms ease;
}

.footer-brand-logo-link:hover {
  transform: scale(1.03);
  filter: brightness(1.08);
}

.footer-brand-logo-link:focus-visible {
  outline: 2px solid rgba(30, 144, 255, 0.75);
  outline-offset: 4px;
  border-radius: 18px;
}

.footer-logo {
  width: clamp(5.75rem, 16vw, 8rem);
  height: auto;
  aspect-ratio: 1;
  border-radius: clamp(14px, 3vw, 18px);
  object-fit: cover;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 10px 32px rgba(2, 6, 23, 0.55);
}

.footer-tagline {
  font-size: clamp(0.86rem, 1.9vw, 0.95rem);
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 22rem;
  margin: 0;
  text-align: center;
}

.footer-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid rgba(30, 144, 255, 0.45);
  display: inline-block;
  min-width: 5rem;
}

.footer-heading a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-heading a:hover {
  color: var(--primary-soft);
}

.footer-to-contact {
  margin: -0.35rem 0 0.85rem;
}

.footer-to-contact a {
  font-size: 0.88rem;
  font-weight: 600;
  color: #93c5fd;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 160ms ease;
}

.footer-to-contact a:hover {
  color: #bfdbfe;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 160ms ease, padding-left 160ms ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-contact-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  padding-top: 0.12rem;
}

.footer-contact-stack .footer-contact-text {
  padding-top: 0;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(30, 144, 255, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.28);
  color: var(--primary-soft);
  font-size: 0.88rem;
}

.footer-contact-list li:last-child .footer-contact-icon {
  background: rgba(34, 197, 94, 0.14);
  border-color: rgba(34, 197, 94, 0.35);
  color: #4ade80;
}

.footer-contact-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-soft);
  padding-top: 0.15rem;
  transition: color 160ms ease;
}

a.footer-contact-text:hover {
  color: #fff;
}

.footer-bar {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(2, 6, 23, 0.65);
  padding: 1rem 0;
}

.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.footer-credit-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-credit-colon {
  color: rgba(148, 163, 184, 0.45);
  font-weight: 500;
  margin-right: 0.05rem;
}

.footer-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-soft);
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  margin: -0.35rem -0.65rem;
  border-radius: 8px;
  border: 1px solid transparent;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.footer-credit-link i {
  font-size: 0.62rem;
  opacity: 0.55;
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-credit-link:hover {
  color: #fff;
  background: rgba(30, 144, 255, 0.12);
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.08);
}

.footer-credit-link:hover i {
  opacity: 1;
  transform: translate(1px, -1px);
}

.fab-rail {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  pointer-events: none;
}

.fab-rail .fab {
  pointer-events: auto;
}

.fab {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 4px 14px rgba(2, 6, 23, 0.35),
    0 12px 28px rgba(2, 6, 23, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    transform 220ms cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 220ms ease,
    filter 220ms ease;
}

.fab--phone {
  background: linear-gradient(145deg, #1e90ff 0%, #0ea5e9 50%, #1d4ed8 100%);
}

.fab--whatsapp {
  background: linear-gradient(145deg, #22c55e 0%, #16a34a 100%);
  font-size: 1.5rem;
}

.fab:hover,
.fab:focus-visible {
  transform: scale(1.06) translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 6px 20px rgba(2, 6, 23, 0.4),
    0 16px 36px rgba(2, 6, 23, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.fab:focus-visible {
  outline: 2px solid rgba(251, 146, 60, 0.9);
  outline-offset: 3px;
}

.fab::after {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35px;
  white-space: nowrap;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms cubic-bezier(0.34, 1.2, 0.64, 1);
}

.fab:hover::after,
.fab:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 480px) {
  .fab {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .fab--whatsapp {
    font-size: 1.35rem;
  }

  .fab::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fab,
  .fab::after {
    transition-duration: 0.01ms;
  }

  .fab:hover,
  .fab:focus-visible {
    transform: none;
  }
}

@media (max-width: 960px) {
  .site-header {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .topbar {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .topbar > .container.topbar-wrap {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: 0.5rem;
  }

  .topbar-wrap {
    flex-direction: row;
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
    min-height: 0;
  }

  .topbar-left {
    display: none;
  }

  .topbar-actions {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: stretch;
    flex-wrap: nowrap;
    gap: 0.4rem;
    width: 100%;
    flex: 1;
    min-width: 0;
    padding: 0;
  }

  .topbar-btn-route {
    display: flex;
  }

  .topbar-btn {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    height: auto;
    min-height: 52px;
    padding: 0.35rem 0.25rem;
    border-radius: 12px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    font-size: 1.05rem;
    box-shadow: 0 6px 16px rgba(2, 6, 23, 0.35);
    line-height: 1.15;
  }

  .topbar-btn i {
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .topbar-btn span {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    border: 0;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    max-width: 100%;
  }

  .nav-wrap {
    display: grid;
    grid-template-columns: minmax(44px, 1fr) auto minmax(44px, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    min-height: 0;
    padding: 0;
    position: relative;
    width: min(calc(100% - 2rem), var(--container));
    column-gap: 0.35rem;
  }

  .header-menu-row {
    grid-column: 1 / -1;
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 0;
    padding: 0.2rem 3rem 0 0.5rem;
    width: 100%;
    max-width: none;
    position: relative;
    z-index: 1;
  }

  .brand-logo {
    width: 88px;
    height: 88px;
  }

  .header-menu-row::before {
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    position: relative;
    justify-self: end;
    align-self: center;
    transform: none;
    top: auto;
    right: auto;
    z-index: 4;
    margin-right: -0.15rem;
  }

  .desktop-cta {
    display: none;
  }

  .menu-group {
    display: none;
  }

  .nav {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: linear-gradient(165deg, #0c1628 0%, #080f1c 48%, #060b14 100%);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-top: 1px solid rgba(30, 144, 255, 0.22);
    border-radius: 0 0 16px 16px;
    margin-top: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 340ms cubic-bezier(0.4, 0, 0.2, 1),
      padding 340ms ease,
      box-shadow 240ms ease;
    z-index: 25;
    box-shadow:
      0 4px 0 rgba(30, 144, 255, 0.08),
      0 18px 40px rgba(2, 6, 23, 0.55);
  }

  .nav > a {
    display: block;
    width: 100%;
    padding: 0.92rem 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    font-family: "Montserrat", sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #e2e8f0;
    transition: background 160ms ease, color 160ms ease, padding-left 160ms ease;
  }

  .nav > a:first-of-type {
    border-top: none;
  }

  .nav > a:hover,
  .nav > a:focus-visible {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding-left: 1.35rem;
  }

  .nav > a.is-active {
    color: #fff;
    background: linear-gradient(90deg, rgba(30, 144, 255, 0.28), rgba(14, 165, 233, 0.12));
    border-left: 3px solid rgba(56, 189, 248, 0.85);
    padding-left: calc(1.15rem - 3px);
  }

  .nav-accordion {
    border-top: 1px solid rgba(255, 255, 255, 0.055);
  }

  .nav-accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.92rem 1.15rem;
    border: none;
    background: transparent;
    color: #e2e8f0;
    font-family: "Montserrat", sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    text-align: left;
    transition: background 160ms ease, color 160ms ease;
  }

  .nav-accordion-toggle:hover,
  .nav-accordion-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    outline: none;
  }

  .nav-accordion-toggle:focus-visible {
    box-shadow: inset 0 0 0 2px rgba(30, 144, 255, 0.45);
  }

  .nav-accordion-chevron {
    flex-shrink: 0;
    font-size: 0.7rem;
    opacity: 0.8;
    color: #7dd3fc;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-accordion.is-open .nav-accordion-chevron {
    transform: rotate(180deg);
    color: #38bdf8;
  }

  .nav-accordion.is-open .nav-accordion-toggle {
    background: rgba(30, 144, 255, 0.08);
    color: #fff;
  }

  .nav-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-accordion.is-open .nav-accordion-panel {
    max-height: 18rem;
  }

  .nav-accordion-inner {
    padding: 0.2rem 0.75rem 0.75rem 1rem;
    margin: 0 0.65rem 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-left: 2px solid rgba(14, 165, 233, 0.5);
    background: rgba(2, 6, 23, 0.55);
    border-radius: 0 10px 10px 10px;
  }

  .nav-accordion-inner a {
    display: block;
    width: 100%;
    padding: 0.68rem 0.85rem;
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-size: 0.87rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--text-soft);
    border: none;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
  }

  .nav-accordion-inner a:hover,
  .nav-accordion-inner a:focus-visible {
    color: #fff;
    background: rgba(30, 144, 255, 0.18);
    transform: translateX(2px);
  }

  .nav-accordion-inner a.is-active {
    color: #fff;
    background: rgba(30, 144, 255, 0.22);
  }

  .nav-accordion-toggle.is-active {
    color: #fff;
    background: rgba(30, 144, 255, 0.08);
  }

  .nav.open {
    max-height: min(78vh, 600px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 0.2rem;
    padding-bottom: 0.5rem;
  }

  .hero {
    margin-top: 0;
    padding-top: 0;
  }

  .hero-shell,
  .hero-cards,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-visual {
    order: -1;
    max-width: 36rem;
    margin-inline: auto;
    width: 100%;
  }

  .about-intro {
    text-align: center;
  }

  .about-lead,
  .about-text {
    margin-inline: auto;
    max-width: 40rem;
  }

  .about-actions {
    justify-content: center;
  }

  .about-pillar-grid {
    grid-template-columns: 1fr;
  }

  .about-closing-card {
    flex-direction: column;
    text-align: center;
    padding: 1.35rem 1.2rem;
  }

  .about-closing-card .btn {
    width: 100%;
    max-width: 20rem;
    justify-content: center;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map-column {
    order: -1;
  }

  .contact-quick {
    grid-template-columns: 1fr;
  }

  .contact-intro-lead {
    text-align: center;
    margin-inline: auto;
  }

  .page-contact .contact-intro {
    text-align: center;
  }

  .page-contact .contact-intro .eyebrow {
    margin-inline: auto;
  }

  .contact-map-cta {
    align-self: stretch;
    justify-content: center;
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
  }

  .contact-back-home {
    text-align: center;
  }

  .gallery-page .section-head {
    text-align: center;
  }

  .gallery-page .eyebrow {
    margin-inline: auto;
  }

  .page-services-overview .section-head {
    text-align: center;
  }

  .page-services-overview .eyebrow {
    margin-inline: auto;
  }

  .page-services-lead {
    margin-inline: auto;
    text-align: center;
  }

  .service-detail-title-row {
    justify-content: center;
  }

  .service-detail-lead {
    margin-inline: auto;
    max-width: 40rem;
  }

  .service-detail-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 1.35rem 1.2rem;
  }

  .service-detail-actions {
    width: 100%;
    justify-content: center;
  }

  .service-detail-actions .btn {
    width: 100%;
    max-width: 20rem;
    justify-content: center;
  }

  .seo-faq-item summary {
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
  }

  .cta-split {
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .cta-panel {
    min-height: 0;
    padding: 1.2rem 1rem;
    justify-content: center;
  }

  .cta-panel-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
    text-align: center;
  }

  .cta-panel-text {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .cta-panel-phones {
    align-items: center;
    width: 100%;
  }

  .cta-panel-phones span {
    text-align: center;
  }

  .cta-panel-hint {
    text-align: center;
    max-width: 17rem;
    margin-inline: auto;
  }

  .cta-panel-icon {
    width: 3.1rem;
    height: 3.1rem;
    font-size: 1.45rem;
  }

  .cta-panel--phone {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .service-card {
    min-height: 0;
  }

  .service-card-media {
    min-height: 200px;
    max-height: 220px;
  }

  .service-card-body {
    margin-top: -2.5rem;
    padding: 1.15rem 1.1rem 1.35rem;
  }

  .hero-slider {
    margin-top: 0;
    min-height: 94vh;
  }

  .hero-media {
    min-height: 270px;
  }

  .hero-panel {
    border-radius: 0;
  }

  .hero-content {
    text-align: center;
    padding: 1.5rem 1.1rem 5.5rem;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
  }

  .hero-controls {
    left: 0;
    right: 0;
    top: auto;
    bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
    width: 100%;
    max-width: none;
    margin-inline: 0;
    height: auto;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 max(0.75rem, env(safe-area-inset-right, 0px)) 0
      max(0.75rem, env(safe-area-inset-left, 0px));
    box-sizing: border-box;
    pointer-events: none;
  }

  .hero-steps {
    position: static;
    transform: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    pointer-events: auto;
  }

  .hero-steps button {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 0.74rem;
  }

  .section {
    padding: 4rem 0;
  }

  .services {
    padding-bottom: 2rem;
  }

  .process {
    padding-top: 2rem;
  }

  .gallery {
    padding-top: 2rem;
    padding-bottom: 2.75rem;
  }

  .brands-section {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .brands-marquee {
    padding: 1.1rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.85rem;
  }

  .footer-main {
    padding: 1rem 0 1.75rem;
  }

  .footer-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
