:root {
  --bg: #ffffff;
  --bg2: #ffffff;
  --card: #ffffff;
  --card2: #ffffff;
  --text: #0f172a;
  --muted: rgba(15, 23, 42, 0.72);
  --line: rgba(15, 23, 42, 0.12);
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.08);

  --accent: #6d28d9;
  --accent2: #0891b2;
  --accent3: #7c3aed;

  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
  --header-h: 64px;

  --slider-duration: 1100ms;
  --slider-ease: cubic-bezier(0.42, 0, 0.16, 1);
  --slider-media-duration: 1600ms;
  --slider-content-duration: 1400ms;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(109, 40, 217, 0.08), transparent 60%),
    radial-gradient(760px 520px at 85% 12%, rgba(8, 145, 178, 0.06), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6,
.slide-title,
.section-title,
.page-title,
.hero-title,
.faq summary {
  font-weight: 800;
  text-transform: lowercase;
  text-shadow: none;
}

.is-case-preserve {
  text-transform: none;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: 10px;
  transform: translateY(-200%);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 999;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  width: 100%;
  margin: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  padding-left: 20px;
  padding-right: 20px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-logo {
  height: 30px;
  width: auto;
  display: block;
}

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

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px 6px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.03);
}

.lang-switch__btn {
  border: 0;
  background: transparent;
  color: rgba(15, 23, 42, 0.5);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 6px 7px;
  border-radius: 7px;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.lang-switch__btn:hover {
  color: rgba(15, 23, 42, 0.85);
}

.lang-switch__btn.is-active {
  color: rgba(15, 23, 42, 0.95);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
}

.lang-switch__sep {
  color: rgba(15, 23, 42, 0.28);
  font-size: 11px;
  font-weight: 600;
  user-select: none;
}

.nav-links {
  position: fixed;
  right: 16px;
  top: calc(var(--header-h) + 10px);
  width: min(340px, calc(100vw - 32px));
  max-height: calc(100svh - var(--header-h) - 24px);
  overflow-y: auto;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  z-index: 60;
}

.nav-links.is-open {
  display: flex;
}

.nav-links a {
  color: rgba(15, 23, 42, 0.82);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.03);
}

.nav-links a:hover {
  color: rgba(15, 23, 42, 1);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.03);
  cursor: pointer;
}

.burger {
  width: 18px;
  height: 2px;
  background: rgba(15, 23, 42, 0.85);
  position: relative;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(15, 23, 42, 0.85);
}

.burger::before {
  top: -6px;
}

.burger::after {
  top: 6px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.9) 0%, rgba(34, 211, 238, 0.75) 100%);
  color: rgba(255, 255, 255, 0.98);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
}

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

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

.btn-sm {
  padding: 10px 14px;
  border-radius: 13px;
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.03);
  box-shadow: none;
  font-weight: 600;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: rgba(15, 23, 42, 0.86);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.icon-btn:hover {
  background: rgba(15, 23, 42, 0.03);
}

.text-btn {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.03);
  color: rgba(15, 23, 42, 0.78);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

.text-btn:hover {
  background: rgba(15, 23, 42, 0.05);
}

/* Hero */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: calc(100svh - var(--header-h));
}

.hero-full {
  width: 100%;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(15, 23, 42, 0.65);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, rgba(8, 145, 178, 0.7), transparent);
}

.hero-title {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.grad {
  background: linear-gradient(90deg, rgba(167, 139, 250, 0.95), rgba(34, 211, 238, 0.92));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 62ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.badge {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 12px 12px;
}

.badge-title {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 4px;
}

.badge-sub {
  display: block;
  color: rgba(15, 23, 42, 0.6);
  font-size: 12px;
  line-height: 1.35;
}

.hero-slider {
  position: relative;
  width: 100%;
}

.slider {
  border-radius: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.slider-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: calc(100svh - var(--header-h));
  min-height: 520px;
  cursor: grab;
}

.slider-viewport.is-dragging {
  cursor: grabbing;
}

.slides {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--slider-duration) var(--slider-ease),
    visibility 0s linear var(--slider-duration);
  will-change: opacity;
}

.slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity var(--slider-duration) var(--slider-ease),
    visibility 0s;
}

.slide.is-leaving {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.slide-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 25% 15%, rgba(255, 255, 255, 0.7), transparent 60%),
    linear-gradient(135deg, rgba(109, 40, 217, 0.18), rgba(8, 145, 178, 0.12));
  filter: saturate(1.02);
}

.slide-media.is-photo {
  background: none;
  filter: none;
  overflow: hidden;
}

.slide-media.is-photo picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.slide-media.is-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.slide-media.is-photo::after {
  z-index: 1;
}

.slide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 520px at 80% 20%, rgba(8, 145, 178, 0.18), transparent 60%),
    radial-gradient(600px 460px at 40% 85%, rgba(109, 40, 217, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08));
}

.slide-media.is-photo::after {
  background:
    radial-gradient(900px 520px at 15% 30%, rgba(0, 0, 0, 0.28), transparent 65%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.12) 55%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.25));
}

.slide-media:not(.is-photo)[data-service="Grafik Tasarım"] {
  background:
    radial-gradient(900px 420px at 25% 15%, rgba(255, 255, 255, 0.75), transparent 60%),
    linear-gradient(135deg, rgba(109, 40, 217, 0.22), rgba(236, 72, 153, 0.12));
}

.slide-media:not(.is-photo)[data-service="Promosyon Baskı"] {
  background:
    radial-gradient(900px 420px at 25% 15%, rgba(255, 255, 255, 0.75), transparent 60%),
    linear-gradient(135deg, rgba(8, 145, 178, 0.22), rgba(16, 185, 129, 0.12));
}

.slide-media:not(.is-photo)[data-service="Web Tasarım"] {
  background:
    radial-gradient(900px 420px at 25% 15%, rgba(255, 255, 255, 0.75), transparent 60%),
    linear-gradient(135deg, rgba(59, 130, 246, 0.22), rgba(109, 40, 217, 0.14));
}

.slide-media:not(.is-photo)[data-service="Sosyal Medya"] {
  background:
    radial-gradient(900px 420px at 25% 15%, rgba(255, 255, 255, 0.75), transparent 60%),
    linear-gradient(135deg, rgba(236, 72, 153, 0.18), rgba(8, 145, 178, 0.12));
}

.slide-media:not(.is-photo)[data-service="Etiket Üretimi"] {
  background:
    radial-gradient(900px 420px at 25% 15%, rgba(255, 255, 255, 0.75), transparent 60%),
    linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(8, 145, 178, 0.1));
}

.slide-media:not(.is-photo)[data-service="Ambalaj Tasarımı"] {
  background:
    radial-gradient(900px 420px at 25% 15%, rgba(255, 255, 255, 0.75), transparent 60%),
    linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(109, 40, 217, 0.12));
}

.slide-overlay {
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  top: 50%;
  transform: translateY(-49%) translateX(-10px) scale(0.98);
  right: auto;
  bottom: auto;
  padding: 0;
  padding-left: 30px;
  border-radius: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  max-width: min(720px, calc(100% - 120px));
  color: rgba(255, 255, 255, 0.96);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform-origin: left center;
  transition:
    opacity var(--slider-content-duration) ease,
    transform var(--slider-content-duration) var(--slider-ease);
}

.slide:not(.is-active) .slide-overlay {
  opacity: 0;
  pointer-events: none;
  transition: none;
}

.slide:not(.is-active) .slide-title,
.slide:not(.is-active) .slide-text,
.slide:not(.is-active) .slide-actions {
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: none;
}

.slide--right .slide-overlay {
  left: auto;
  right: clamp(18px, 4vw, 56px);
  text-align: right;
  padding-left: 0;
  padding-right: 30px;
  transform-origin: right center;
  transform: translateY(-49%) translateX(10px) scale(0.98);
}

.slide--right .slide-text {
  margin-left: auto;
}

.slide-title {
  margin: 0 0 6px;
  font-size: clamp(34px, 4.2vw, 54px);
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transform-origin: left center;
  transition:
    opacity var(--slider-content-duration) ease,
    transform var(--slider-content-duration) var(--slider-ease);
  transition-delay: 220ms;
}

.slide-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.5;
  max-width: 58ch;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transform-origin: left center;
  transition:
    opacity var(--slider-content-duration) ease,
    transform var(--slider-content-duration) var(--slider-ease);
  transition-delay: 340ms;
}

.slide--right .slide-title {
  font-size: clamp(44px, 4.8vw, 64px);
}

.slide.is-active .slide-overlay {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0) scale(1);
}

.slide.is-active.slide--right .slide-overlay {
  transform: translateY(-50%) translateX(0) scale(1);
}

.slide.is-active .slide-title,
.slide.is-active .slide-text {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.slide--right .slide-title,
.slide--right .slide-text {
  transform-origin: right center;
}

.slide-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 10px;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transform-origin: left center;
  transition:
    opacity var(--slider-content-duration) ease,
    transform var(--slider-content-duration) var(--slider-ease);
  transition-delay: 280ms;
}

.slide.is-active .slide-actions {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  backdrop-filter: blur(8px);
}

.slide-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.slide-btn--ghost {
  background: rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.slide-btn--ghost:hover {
  background: rgba(0, 0, 0, 0.18);
}

.slide--right .slide-actions {
  justify-content: flex-end;
  transform-origin: right center;
}

.slider-controls {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(14px, 3vw, 28px);
  z-index: 2;
  pointer-events: none;
}

.slider-controls .icon-btn {
  pointer-events: auto;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: clamp(16px, 2.5vw, 28px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 3;
  pointer-events: auto;
}

.slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition:
    width 220ms ease,
    background-color 220ms ease;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.72);
}

.slider-dot.is-active {
  width: 24px;
  background: rgba(255, 255, 255, 0.96);
}

.slider-dot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 3px;
}

.hero-glow {
  position: absolute;
  inset: auto -40% -60% -40%;
  height: 420px;
  background:
    radial-gradient(closest-side at 50% 50%, rgba(109, 40, 217, 0.08), transparent 72%),
    radial-gradient(closest-side at 55% 40%, rgba(8, 145, 178, 0.06), transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}

/* Sections */
.section {
  padding: 62px 0;
}

.section-alt {
  background: rgba(15, 23, 42, 0.02);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.section-head--compact {
  margin-bottom: 18px;
}

.section-references {
  padding-top: 36px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(760px 280px at 12% 0%, rgba(109, 40, 217, 0.05), transparent 58%),
    radial-gradient(640px 260px at 88% 20%, rgba(8, 145, 178, 0.05), transparent 55%),
    rgba(255, 255, 255, 0.72);
}

.references-marquee {
  overflow: hidden;
  width: 100%;
  margin: 4px 0 22px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.references-marquee:not(.is-ready):not(.is-reduced-motion) {
  visibility: hidden;
  min-height: clamp(56px, 6vw, 72px);
}

.references-marquee.is-ready {
  visibility: visible;
}

.references-marquee.is-reduced-motion {
  overflow-x: auto;
  -webkit-mask-image: none;
  mask-image: none;
}

.references-marquee.is-reduced-motion .references-marquee__track {
  animation: none;
  flex-wrap: wrap;
  width: 100%;
  gap: 12px;
  justify-content: center;
  padding: 0 16px 8px;
}

.references-marquee__track {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: max-content;
  gap: clamp(28px, 4vw, 56px);
  padding: 10px clamp(16px, 3vw, 28px);
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.references-marquee.is-ready .references-marquee__track {
  animation: references-marquee var(--marquee-duration, 110s) linear infinite;
  will-change: transform;
}

.references-marquee.is-ready .references-marquee__track:hover {
  animation-play-state: paused;
}

.references-marquee__item {
  flex: 0 0 auto;
  flex-shrink: 0;
  height: clamp(36px, 4.5vw, 52px);
  width: clamp(72px, 10vw, 148px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.references-marquee__logo {
  display: block;
  height: 100%;
  width: 100%;
  max-width: 148px;
  object-fit: contain;
  object-position: center;
  transition: transform 180ms ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.references-marquee__item:hover .references-marquee__logo {
  transform: scale(1.04);
}

.references-action {
  display: flex;
  justify-content: center;
}

.references-action .btn-ghost {
  color: var(--text);
}

.references-action .btn-ghost:hover {
  color: var(--text);
}

@keyframes references-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--marquee-distance, 50%)), 0, 0);
  }
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.reference-card {
  aspect-ratio: 1;
  border: 0;
  border-radius: 16px;
  background: transparent;
  padding: clamp(12px, 2vw, 18px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: transform 180ms ease;
}

.reference-card:hover {
  transform: translateY(-2px);
}

.reference-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-hero--compact {
  padding-bottom: 12px;
}

.page-hero--compact .page-lead {
  max-width: 52ch;
  margin-top: 10px;
}

.page-hero--compact .crumbs {
  margin-top: 18px;
}

.section-references-page {
  padding-top: 8px;
  padding-bottom: 48px;
}

.section-title {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.section-subtitle {
  margin: 0;
  color: rgba(15, 23, 42, 0.7);
  line-height: 1.6;
  max-width: 75ch;
}

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

.card {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 16px 16px;
}

.card-link {
  display: block;
}

.card-link:hover h3 {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(15, 23, 42, 0.03);
  margin: 10px 0 10px;
}

.card p {
  margin: 0;
  color: rgba(15, 23, 42, 0.7);
  line-height: 1.55;
  font-size: 14px;
}

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

.ph {
  height: 160px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background:
    radial-gradient(900px 300px at 20% 30%, rgba(15, 23, 42, 0.06), transparent 60%),
    linear-gradient(135deg, rgba(109, 40, 217, 0.08), rgba(8, 145, 178, 0.06));
}

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: start;
}

.ticks {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(15, 23, 42, 0.78);
}

.ticks li {
  padding-left: 28px;
  position: relative;
}

.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(8, 145, 178, 0.9);
  font-weight: 800;
}

.about-panel {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 12px;
}

.stat {
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(15, 23, 42, 0.02);
  border-radius: 16px;
  padding: 14px;
}

.stat-num {
  display: block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.stat-label {
  display: block;
  color: rgba(15, 23, 42, 0.62);
  margin-top: 4px;
  font-weight: 600;
  font-size: 13px;
}

.section-contact {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(900px 380px at 15% 20%, rgba(8, 145, 178, 0.06), transparent 58%),
    radial-gradient(760px 360px at 85% 10%, rgba(109, 40, 217, 0.06), transparent 55%),
    rgba(255, 255, 255, 0.6);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.contact-item {
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  padding: 14px 16px;
}

.contact-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: lowercase;
  letter-spacing: 0.03em;
  color: rgba(15, 23, 42, 0.48);
  margin-bottom: 6px;
}

.contact-item a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.88);
  transition: color 160ms ease;
}

.contact-item a:hover {
  color: var(--accent);
}

.contact-address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.82);
}

.contact-map {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.03);
  box-shadow: var(--shadow);
  min-height: 320px;
}

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

.section-cta {
  background:
    radial-gradient(900px 400px at 20% 15%, rgba(109, 40, 217, 0.08), transparent 60%),
    radial-gradient(900px 400px at 80% 30%, rgba(8, 145, 178, 0.06), transparent 60%),
    rgba(15, 23, 42, 0.015);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.form {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.8);
}

.field-wide {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 1);
  color: rgba(15, 23, 42, 0.92);
  padding: 12px 12px;
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: rgba(15, 23, 42, 0.45);
}

input:focus,
textarea:focus,
button:focus,
a:focus {
  outline: 2px solid rgba(8, 145, 178, 0.5);
  outline-offset: 2px;
}

.field-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  min-height: 1.25em;
}

.form-status.is-success {
  color: #047857;
}

.form-status.is-error {
  color: #b91c1c;
}

.form.is-submitting [data-submit] {
  opacity: 0.72;
  pointer-events: none;
}

.fineprint {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(15, 23, 42, 0.6);
  font-size: 12px;
  line-height: 1.45;
}

.muted {
  color: rgba(15, 23, 42, 0.62);
}

/* Service pages */
.page {
  padding: 36px 0 64px;
}

.page-hero {
  padding: 34px 0 24px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: center;
}

.page-title {
  margin: 0 0 10px;
  font-size: clamp(30px, 3.2vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.page-lead {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 70ch;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-actions .btn-ghost {
  color: var(--text);
}

.page-actions .btn-ghost:hover {
  color: var(--text);
}

.page-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.03);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.page-section {
  padding: 28px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.panel {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 16px;
}

.panel h3 {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.panel p {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.65;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.75;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 12px 14px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

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

.faq details p {
  margin: 10px 0 0;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.65;
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(15, 23, 42, 0.62);
  font-weight: 600;
  font-size: 13px;
  margin: 14px 0 0;
}

.crumbs a {
  color: rgba(15, 23, 42, 0.72);
}

.crumbs a:hover {
  color: rgba(15, 23, 42, 1);
}

/* Footer */
.site-footer {
  margin-top: 8px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(760px 300px at 8% 0%, rgba(109, 40, 217, 0.07), transparent 58%),
    radial-gradient(640px 280px at 92% 0%, rgba(8, 145, 178, 0.06), transparent 52%),
    rgba(255, 255, 255, 0.94);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 32px 28px;
  padding-bottom: 36px;
}

.footer-col--brand {
  padding-right: 12px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-tagline {
  margin: 14px 0 0;
  max-width: 32ch;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.footer-heading {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  text-transform: lowercase;
  letter-spacing: 0.03em;
  color: rgba(15, 23, 42, 0.48);
}

.footer-list,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-list a,
.footer-contact a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.78);
  transition: color 160ms ease;
}

.footer-list a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-copy {
  margin: 0;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 980px) {
  .cards,
  .gallery,
  .references-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about,
  .cta,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    min-height: 300px;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    right: 20px;
    top: 66px;
    width: min(320px, calc(100vw - 40px));
    max-height: calc(100svh - var(--header-h) - 24px);
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 10px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.03);
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100svh - var(--header-h));
  }

  .hero-full,
  .hero-slider,
  .slider {
    height: calc(100svh - var(--header-h));
  }

  .slider-viewport {
    height: calc(100svh - var(--header-h));
    min-height: 0;
    width: 100%;
  }

  .slides {
    height: 100%;
    touch-action: pan-y pinch-zoom;
  }

  .slide {
    height: 100%;
  }

  .slider-controls {
    display: none;
  }

  .slider-dots {
    bottom: clamp(14px, 3.5vw, 22px);
    gap: 7px;
  }

  .slider-dot {
    width: 7px;
    height: 7px;
  }

  .slider-dot.is-active {
    width: 20px;
  }

  .slider-viewport {
    cursor: default;
  }

  .slide-title {
    font-size: clamp(22px, 6.2vw, 34px);
    line-height: 1.08;
  }

  .slide--right .slide-title {
    font-size: clamp(26px, 7vw, 38px);
  }

  .slide-text {
    font-size: clamp(13px, 3.8vw, 15px);
    line-height: 1.55;
  }

  .cards,
  .gallery {
    grid-template-columns: 1fr;
  }

  .form {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

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

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

  .references-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

/* Contact FAB */
.contact-fab {
  position: fixed;
  right: clamp(14px, 3vw, 22px);
  bottom: max(18px, env(safe-area-inset-bottom, 0px));
  z-index: 100;
  width: 56px;
}

.contact-fab__toggle {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.98);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.95) 0%, rgba(8, 145, 178, 0.92) 100%);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-fab__toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.26);
}

.contact-fab__icon-close {
  display: none;
}

.contact-fab.is-open .contact-fab__icon-chat {
  display: none;
}

.contact-fab.is-open .contact-fab__icon-close {
  display: block;
}

.contact-fab__actions {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform-origin: bottom center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 220ms ease;
}

.contact-fab.is-open .contact-fab__actions {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-fab__action {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 23, 42, 0.86);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
  text-decoration: none;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 220ms ease,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease,
    color 180ms ease;
}

.contact-fab.is-open .contact-fab__action {
  opacity: 1;
  transform: translateY(0);
}

.contact-fab.is-open .contact-fab__action:nth-child(4) {
  transition-delay: 40ms;
}

.contact-fab.is-open .contact-fab__action:nth-child(3) {
  transition-delay: 80ms;
}

.contact-fab.is-open .contact-fab__action:nth-child(2) {
  transition-delay: 120ms;
}

.contact-fab.is-open .contact-fab__action:nth-child(1) {
  transition-delay: 160ms;
}

.contact-fab__action:hover {
  background: rgba(15, 23, 42, 0.04);
  color: rgba(15, 23, 42, 1);
}

.contact-fab__action.is-whatsapp {
  color: #128c7e;
}

.contact-fab__action.is-instagram {
  color: #c13584;
}

.contact-fab__action.is-mail {
  color: #6d28d9;
}

.contact-fab__action.is-phone {
  color: #0891b2;
}

@media (max-width: 760px) {
  .contact-fab {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    width: 52px;
  }

  .contact-fab__toggle {
    width: 52px;
    height: 52px;
  }

  .contact-fab__actions {
    bottom: calc(100% + 10px);
    gap: 9px;
  }

  .contact-fab__action {
    width: 46px;
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .contact-fab__toggle,
  .contact-fab__actions,
  .contact-fab__action {
    transition: none;
  }
  .contact-fab__actions,
  .contact-fab__action {
    opacity: 1;
    transform: none;
  }
  .contact-fab:not(.is-open) .contact-fab__actions {
    display: none;
  }
  .slide {
    transition: none;
    transform: none;
  }
  .slide-overlay,
  .slide-title,
  .slide-text,
  .slide-actions {
    transition: none;
    transform: none;
    opacity: 1;
  }
  .slide-media.is-photo {
    transition: none;
    transform: none;
  }
  .slide-media.is-photo img {
    transform: none;
  }
  .btn:hover {
    transform: none;
  }
  .references-marquee.is-ready .references-marquee__track {
    animation: none;
  }
  .references-marquee {
    overflow-x: auto;
    visibility: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .references-marquee.is-reduced-motion .references-marquee__track {
    flex-wrap: wrap;
    width: 100%;
    gap: 12px;
    justify-content: center;
    padding: 0 16px 8px;
  }
  .reference-card {
    transition: none;
  }
  .reference-card:hover {
    transform: none;
  }
}
