﻿:root {
  --bg: #f1f1f3;
  --card: #ffffff;
  --line: #d9d9de;
  --text: #1d2128;
  --muted: #6a7482;
  --accent: #d91f26;
  --accent-soft: #fff0f1;
  --dark: #2e333d;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-width: 320px;
}

body.hero-header-overlay {
  background: #10151d;
}

img {
  max-width: 100%;
}

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

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

.top-mini {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 57;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(8, 11, 16, 0.26) 0%, rgba(8, 11, 16, 0.18) 100%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0 1px, rgba(255, 255, 255, 0) 1px 4px);
  backdrop-filter: none;
}

.top-mini-wrap {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  position: relative;
}

.mini-spacer,
.mini-socials,
.mini-contact {
  display: flex;
  align-items: center;
}

.mini-spacer {
  flex: 1 1 0;
}

.mini-socials {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  flex: 0 0 auto;
  justify-content: flex-start;
  gap: 20px;
}

.mini-contact {
  flex: 0 0 auto;
  justify-content: flex-end;
  gap: 20px;
}

.top-mini a {
  text-decoration: none;
  color: rgba(248, 250, 253, 0.92);
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.top-mini a:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.top-mini svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.mini-socials a {
  justify-content: center;
}

.mini-contact a span {
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 56;
  background:
    linear-gradient(180deg, rgba(9, 12, 18, 0.2) 0%, rgba(9, 12, 18, 0.1) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: none;
}

.header-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1vw, 18px);
  padding: 0;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: clamp(190px, 17vw, 300px);
  max-height: 62px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(6, 8, 12, 0.28));
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 0.8vw, 12px);
}

.main-nav a {
  text-decoration: none;
  color: #f5f7fb;
  font-weight: 800;
  font-size: clamp(0.78rem, 0.7rem + 0.18vw, 0.94rem);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 clamp(11px, 0.95vw, 18px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.025) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 18px rgba(5, 8, 14, 0.08);
  backdrop-filter: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(232, 38, 47, 0.76) 0%, rgba(197, 22, 30, 0.66) 100%);
  border-color: rgba(255, 198, 201, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 24px rgba(181, 16, 24, 0.16);
}

.main-nav a:hover {
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.header-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 20px rgba(7, 10, 15, 0.16);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.header-socials a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.header-socials svg {
  width: 20px;
  height: 20px;
}

.social-youtube {
  color: #ff3030;
}

.social-instagram {
  color: #f77737;
}

.social-facebook {
  color: #1877f2;
}

.social-linkedin {
  color: #0a66c2;
}

.btn-offer,
.btn-call-mobile {
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  white-space: nowrap;
}

.btn-offer {
  background: linear-gradient(180deg, #ea2830 0%, #c5161e 100%);
  color: #fff;
  padding: 12px clamp(18px, 1.4vw, 26px);
  font-size: clamp(0.82rem, 0.74rem + 0.12vw, 0.92rem);
  box-shadow: 0 12px 28px rgba(181, 16, 24, 0.24);
}

.btn-call-mobile {
  display: none;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid #f3c5c8;
  padding: 11px 18px;
  font-size: 0.88rem;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-radius: 16px;
  padding: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 20px rgba(5, 8, 14, 0.14);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.menu-toggle-bar {
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open .menu-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.floating-call,
.floating-whatsapp {
  position: fixed;
  bottom: 26px;
  z-index: 70;
  text-decoration: none;
}

.floating-call {
  left: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.floating-call-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(180deg, #df3039 0%, #b9161e 100%);
  border: 1px solid rgba(255, 220, 223, 0.26);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow:
    0 18px 30px rgba(166, 17, 24, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.floating-whatsapp-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(180deg, #6dde60 0%, #39ad35 100%);
  border: 1px solid rgba(217, 255, 214, 0.28);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow:
    0 18px 30px rgba(38, 129, 39, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.floating-call-bubble,
.floating-whatsapp-bubble {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 20px 34px rgba(7, 10, 14, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-call-bubble svg,
.floating-whatsapp-bubble svg,
.floating-whatsapp-bubble img {
  width: 28px;
  height: 28px;
  display: block;
}

.floating-call-bubble {
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #e03a44 0%, #b8161e 100%);
}

.floating-whatsapp {
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.floating-whatsapp-bubble {
  background: transparent;
  font-size: 1.55rem;
  overflow: hidden;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.floating-whatsapp-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-call:hover .floating-call-bubble,
.floating-whatsapp:hover .floating-whatsapp-bubble {
  transform: translateY(-3px);
  box-shadow:
    0 24px 38px rgba(7, 10, 14, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.floating-whatsapp:hover .floating-whatsapp-bubble {
  box-shadow: none;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: #dfe4e7;
  touch-action: pan-y;
}

.service-marquee {
  display: none;
}

.service-marquee::before,
.service-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 1;
  pointer-events: none;
}

.service-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(98, 98, 100, 0.96) 0%, rgba(98, 98, 100, 0) 100%);
}

.service-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(98, 98, 100, 0.96) 0%, rgba(98, 98, 100, 0) 100%);
}

.service-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: service-marquee-scroll 36s linear infinite;
}

.service-marquee-group {
  flex: 0 0 auto;
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 72px;
  padding: 18px 36px;
}

.service-marquee-group span {
  flex: 0 0 auto;
  font-size: clamp(2.2rem, 3.1vw, 3.7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.88);
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

@keyframes service-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hero-track {
  display: flex;
  transition: transform 0.7s ease;
}

.hero-slide {
  min-width: 100%;
  min-height: 100svh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 14, 0.86) 0%, rgba(7, 10, 14, 0.55) 34%, rgba(7, 10, 14, 0.18) 64%, rgba(7, 10, 14, 0.08) 100%),
    linear-gradient(180deg, rgba(6, 8, 12, 0.2) 0%, rgba(6, 8, 12, 0.46) 100%);
}

.hero-stage {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(100%, 700px);
  padding: clamp(104px, 13vh, 142px) 0 clamp(50px, 8vh, 72px);
  color: #fff;
  display: none;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd6c6;
}

.hero-title {
  margin: 18px 0 20px;
  font-size: clamp(2.8rem, 5.9vw, 6rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.hero-text {
  margin: 0;
  max-width: 600px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(245, 247, 251, 0.86);
}

.hero-actions-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn-primary {
  background: linear-gradient(180deg, #ea2830 0%, #c5161e 100%);
  color: #fff;
  box-shadow: 0 18px 32px rgba(181, 16, 24, 0.26);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(244, 246, 249, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(15, 18, 24, 0.28);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}

.hero-arrow span {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.hero-arrow-prev {
  left: 22px;
}

.hero-arrow-next {
  right: 22px;
}

.hero-arrow {
  display: none;
}

.hero-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 4px;
  background: rgba(255, 255, 255, 0.24);
  overflow: hidden;
}

.hero-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: #ffffff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.22);
}

@keyframes hero-progress-fill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.about-highlight {
  background: linear-gradient(180deg, #f7f7f8 0%, #f0f1f3 100%);
  padding: 74px 0 82px;
}

.about-card {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(221, 227, 234, 0.84);
  box-shadow: 0 30px 70px rgba(10, 14, 24, 0.14);
  isolation: isolate;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 16, 23, 0.84) 0%, rgba(12, 16, 23, 0.6) 38%, rgba(12, 16, 23, 0.2) 68%, rgba(12, 16, 23, 0.1) 100%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.16) 0%, rgba(17, 24, 39, 0.54) 100%);
}

.about-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.92) contrast(1.03) brightness(0.88);
}

.about-card-content {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffd2bd;
  font-weight: 800;
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-eyebrow::before {
  content: ">>";
  font-size: 0.92rem;
}

.about-card-content h2 {
  margin: 20px 0 18px;
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-shadow: 0 10px 28px rgba(6, 8, 14, 0.3);
}

.about-card-content h2 span {
  color: #ff8c76;
}

.about-subtitle {
  margin: 0 0 28px;
  font-size: 1.02rem;
  color: rgba(246, 248, 252, 0.82);
  font-weight: 700;
}

.about-pill-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 240px));
  gap: 0;
  margin: 0 0 28px;
}

.about-pill {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(245, 247, 250, 0.92);
  font-size: 0.98rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.about-pill:first-child {
  border-top-left-radius: 8px;
}

.about-pill:last-child {
  border-top-right-radius: 8px;
}

.about-pill.active {
  color: #ffffff;
  border-top: 3px solid #ff8c76;
  background: rgba(182, 34, 34, 0.28);
}

.about-card-content p {
  margin: 0 0 24px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(236, 241, 247, 0.88);
  text-shadow: 0 6px 18px rgba(7, 9, 15, 0.22);
}

.about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 4px;
  background: linear-gradient(180deg, #a30f0f 0%, #8d0d0d 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 16px 34px rgba(126, 14, 14, 0.2);
}

.about-cta::after {
  content: "->";
  margin-left: 12px;
  font-size: 1rem;
}

.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin: 0 0 30px;
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 800;
}

.products,
.services,
.references {
  background: #efeff2;
}

.service-offerings {
  background:
    radial-gradient(circle at top right, rgba(217, 31, 38, 0.08) 0%, rgba(217, 31, 38, 0) 34%),
    linear-gradient(180deg, #f6f7f9 0%, #eceff3 100%);
}

.service-offerings-head {
  margin-bottom: 24px;
  text-align: center;
}

.service-offerings-head .section-title {
  margin: 16px 0 10px;
}

.service-offerings-head p {
  margin: 0;
  max-width: 64ch;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.service-offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-offer-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 26px;
  border: 2px solid rgba(217, 31, 38, 0.72);
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  box-shadow: 0 22px 48px rgba(18, 24, 38, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 54px rgba(18, 24, 38, 0.12);
  border-color: rgba(217, 31, 38, 0.98);
}

.service-offer-media {
  min-height: 320px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.service-offer-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 13, 18, 0.08) 0%, rgba(9, 13, 18, 0.32) 100%);
}

.service-offer-media-1 {
  background-image: url("assets/hero/slide-1.jpeg");
  background-position: 60% center;
}

.service-offer-media-2 {
  background-image: url("assets/services/makine-yurutme/makineyurutmekapak.jpeg");
  background-position: center center;
}

.service-offer-media-3 {
  background-image: url("assets/hero/slide-2.jpeg");
  background-position: center center;
}

.service-offer-media-4 {
  background-image: url("assets/services/forklift/forklift-kapak.jpeg");
  background-position: center center;
}

.service-offer-media-5 {
  background-image: url("assets/services/hiup/hiup-kapak-foto.jpeg");
  background-position: center center;
}

.service-offer-media-6 {
  background-image: url("assets/services/sepetli/sepetli-kapak.jpg");
  background-position: center center;
}

.service-offer-copy {
  min-height: 126px;
  padding: 34px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.service-offer-copy h3 {
  margin: 0;
  color: #161d27;
  font-size: 1.28rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.service-offer-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: linear-gradient(180deg, #ea2830 0%, #c5161e 100%);
  color: #ffffff;
  text-decoration: none;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(181, 16, 24, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-offer-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(181, 16, 24, 0.24);
}

body.service-page {
  background:
    radial-gradient(circle at top left, rgba(217, 31, 38, 0.08) 0%, rgba(217, 31, 38, 0) 34%),
    linear-gradient(180deg, #edf0f4 0%, #f7f8fa 100%);
}

.service-detail-main {
  padding-top: 116px;
}

.service-detail-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.service-detail-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 12, 18, 0.18) 0%, rgba(9, 12, 18, 0.74) 100%);
}

.service-detail-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 52px;
}

.service-detail-hero-content.service-detail-hero-centered {
  display: grid;
  justify-items: center;
  text-align: center;
}

.service-detail-hero-content h1 {
  margin: 16px 0 14px;
  max-width: 14ch;
  color: #ffffff;
  font-size: clamp(2.6rem, 2.1rem + 1.6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.service-detail-hero-content p {
  margin: 0;
  max-width: 62ch;
  color: rgba(244, 247, 251, 0.88);
  font-size: 1rem;
  line-height: 1.8;
}

.service-detail-hero-text {
  display: grid;
  gap: 14px;
  max-width: 72ch;
}

.service-detail-hero-text p {
  margin: 0;
  max-width: none;
}

.service-detail-hero-centered .about-card-label {
  justify-self: center;
}

.service-detail-hero-centered .service-detail-hero-text {
  margin: 0 auto;
}

.service-detail-story {
  padding-top: 34px;
}

.service-detail-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.85fr);
  gap: 20px;
  align-items: start;
}

.service-detail-copy-card,
.service-detail-side-card {
  border-radius: 28px;
  border: 1px solid rgba(219, 224, 231, 0.92);
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  box-shadow: 0 26px 60px rgba(18, 24, 38, 0.08);
}

.service-detail-copy-card {
  padding: 30px 32px 34px;
}

.service-detail-copy-card h2,
.service-detail-side-card h3 {
  margin: 14px 0 18px;
  color: #161d27;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.service-detail-copy-card h2 {
  font-size: clamp(1.7rem, 1.5rem + 0.75vw, 2.3rem);
}

.service-detail-copy-card p,
.service-detail-side-card p {
  margin: 0 0 14px;
  color: #55606e;
  font-size: 1rem;
  line-height: 1.84;
}

.service-detail-copy-card p:last-child,
.service-detail-side-card p:last-child {
  margin-bottom: 0;
}

.service-detail-side-card {
  padding: 26px 26px 28px;
  position: sticky;
  top: 128px;
}

.service-detail-side-card h3 {
  font-size: 1.48rem;
}

.service-detail-side-card .hero-btn {
  margin-top: 20px;
}

.service-gallery-section {
  background:
    radial-gradient(circle at top right, rgba(217, 31, 38, 0.08) 0%, rgba(217, 31, 38, 0) 34%),
    linear-gradient(180deg, #f4f6f9 0%, #eef2f6 100%);
}

.service-gallery-head {
  margin-bottom: 26px;
  text-align: center;
}

.service-gallery-head .section-title {
  margin: 14px 0 10px;
}

.service-gallery-head p {
  margin: 0 auto;
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.8;
}

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

.service-gallery-section--compact {
  padding-top: 20px;
}

.service-gallery-grid--images {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-gallery-image {
  display: block;
  padding: 8px;
  overflow: hidden;
  border: 2px solid rgba(217, 31, 38, 0.72);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f5f8 100%);
  box-shadow: 0 16px 34px rgba(18, 24, 38, 0.08);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-decoration: none;
}

.service-gallery-image:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(18, 24, 38, 0.13);
  border-color: rgba(217, 31, 38, 0.98);
}

.service-gallery-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
}

.projects-page {
  background:
    radial-gradient(circle at top right, rgba(217, 31, 38, 0.08) 0%, rgba(217, 31, 38, 0) 28%),
    linear-gradient(180deg, #f4f6f9 0%, #eef2f6 100%);
}

.projects-main-simple {
  padding-top: 164px;
}

.projects-gallery-simple {
  padding-top: 42px;
}

.projects-gallery-head {
  max-width: 980px;
  margin: 0 auto 30px;
  text-align: center;
}

.projects-gallery-head h1 {
  margin: 0;
  color: #162032;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.24;
  letter-spacing: -0.03em;
}

.projects-gallery-grid-simple {
  align-items: stretch;
}

.service-gallery-card {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(216, 221, 228, 0.92);
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  box-shadow: 0 22px 48px rgba(18, 24, 38, 0.07);
}

.service-gallery-media {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.service-gallery-copy {
  padding: 22px 22px 24px;
}

.service-gallery-copy h3 {
  margin: 0 0 10px;
  color: #161d27;
  font-size: 1.18rem;
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.service-gallery-copy p {
  margin: 0;
  color: #55606e;
  line-height: 1.75;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 10, 15, 0.84);
  cursor: pointer;
}

.image-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #121821;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.image-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #151b24;
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.image-lightbox-prev {
  left: 18px;
}

.image-lightbox-next {
  right: 18px;
}

.image-lightbox-media {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 48px);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.service-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 16, 0.72);
}

.service-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(88vh, 900px);
  overflow: hidden auto;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  box-shadow: 0 34px 90px rgba(3, 8, 18, 0.34);
}

.service-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: #171d25;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(16, 22, 36, 0.14);
}

.service-modal-media {
  min-height: 320px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.service-modal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 16, 0.1) 0%, rgba(7, 11, 16, 0.48) 100%);
}

.service-modal-body {
  padding: 28px 30px 32px;
}

.service-modal-body h3 {
  margin: 10px 0 16px;
  color: #161d27;
  font-size: clamp(1.5rem, 1.2rem + 0.7vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.service-modal-content p {
  margin: 0 0 14px;
  color: #55606e;
  font-size: 1rem;
  line-height: 1.84;
}

.service-modal-content p:last-child {
  margin-bottom: 0;
}

body.modal-open {
  overflow: hidden;
}

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

.product-card {
  background: #fff;
  border: 1px solid #e0e0e6;
  border-radius: 22px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 20px 35px rgba(18, 24, 38, 0.04);
}

.product-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border: 1px solid #ececf0;
  border-radius: 18px;
}

.product-card h3 {
  margin: 18px 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
}

.product-card p {
  margin: 0;
  color: #848d9b;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.service-card {
  background: #f6f6f8;
  border: 1px solid #dfdfe4;
  border-radius: 24px;
  overflow: hidden;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 35px rgba(18, 24, 38, 0.05);
}

.service-visual {
  min-height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.08), rgba(8, 12, 18, 0.38));
}

.service-content {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  flex: 1;
}

.service-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  flex: 1 1 auto;
}

.service-card a {
  margin-top: auto;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(180deg, #ea2830 0%, #c5161e 100%);
  box-shadow: 0 14px 28px rgba(181, 16, 24, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.service-card a:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(181, 16, 24, 0.22);
  filter: saturate(1.04);
}

.service-safe .service-visual,
.service-satisfaction .service-visual,
.service-staff .service-visual,
.service-price .service-visual,
.service-equipment .service-visual {
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center, center, center;
  background-color: #f4f5f8;
}

.service-safe .service-visual {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='%23d91f26' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M90 24l46 16v36c0 33-20 61-46 80-26-19-46-47-46-80V40l46-16Z' stroke-width='8'/%3E%3Cpath d='m66 90 16 16 32-36' stroke-width='10'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 50% 42%, rgba(217, 31, 38, 0.12), rgba(217, 31, 38, 0) 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 243, 247, 0.92));
  background-size: 102px 102px, 100% 100%, 100% 100%;
}

.service-satisfaction .service-visual {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='%23d91f26' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M90 145s-44-24-44-60c0-16 12-28 27-28 9 0 17 4 22 11 5-7 13-11 22-11 15 0 27 12 27 28 0 36-44 60-44 60Z' stroke-width='8'/%3E%3Ccircle cx='68' cy='82' r='4' fill='%23d91f26' stroke='none'/%3E%3Ccircle cx='112' cy='82' r='4' fill='%23d91f26' stroke='none'/%3E%3Cpath d='M73 104c8 7 26 7 34 0' stroke-width='8'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 50% 42%, rgba(217, 31, 38, 0.12), rgba(217, 31, 38, 0) 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 243, 247, 0.92));
  background-size: 106px 106px, 100% 100%, 100% 100%;
}

.service-staff .service-visual {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='%23d91f26' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='90' cy='58' r='22' stroke-width='8'/%3E%3Cpath d='M50 136c6-20 22-32 40-32s34 12 40 32' stroke-width='8'/%3E%3Cpath d='M42 82h22M116 82h22M32 58l18 10M130 68l18-10' stroke-width='7' opacity='.72'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 50% 42%, rgba(217, 31, 38, 0.12), rgba(217, 31, 38, 0) 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 243, 247, 0.92));
  background-size: 106px 106px, 100% 100%, 100% 100%;
}

.service-price .service-visual {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='%23d91f26' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M58 56h64c8 0 14 6 14 14v40c0 8-6 14-14 14H58c-8 0-14-6-14-14V70c0-8 6-14 14-14Z' stroke-width='8'/%3E%3Ccircle cx='90' cy='90' r='18' stroke-width='8'/%3E%3Cpath d='M90 74v32M100 82c-3-4-17-4-20 1-4 7 18 8 20 16 2 9-17 11-23 5' stroke-width='6'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 50% 42%, rgba(217, 31, 38, 0.12), rgba(217, 31, 38, 0) 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 243, 247, 0.92));
  background-size: 108px 108px, 100% 100%, 100% 100%;
}

.service-equipment .service-visual {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='%23d91f26' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M90 34 54 48v34c0 24 14 45 36 58 22-13 36-34 36-58V48L90 34Z' stroke-width='8'/%3E%3Cpath d='m90 64 8 16 18 3-13 13 3 18-16-8-16 8 3-18-13-13 18-3 8-16Z' stroke-width='8'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 50% 42%, rgba(217, 31, 38, 0.12), rgba(217, 31, 38, 0) 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 243, 247, 0.92));
  background-size: 106px 106px, 100% 100%, 100% 100%;
}

.media-panels {
  padding-top: 0;
  background: #efeff2;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.media-grid-stacked {
  grid-template-columns: 1fr;
  gap: 18px;
  width: 100%;
}

.media-card {
  min-height: 0;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(217, 223, 231, 0.9);
  background: linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%);
  box-shadow: 0 24px 48px rgba(18, 24, 38, 0.08);
}

.media-video {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 14px;
  padding: 14px 14px 16px;
}

.media-video-secondary {
  grid-template-columns: 1fr;
}

.media-video-secondary .media-video-copy {
  gap: 4px;
}

.media-video-copy {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 4px;
}

.media-video-copy h3 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(217, 31, 38, 0.1) 0%, rgba(244, 100, 78, 0.08) 100%);
  border: 1px solid rgba(217, 31, 38, 0.18);
  box-shadow: 0 10px 24px rgba(18, 24, 38, 0.08);
  font-size: clamp(1.05rem, 1.2vw, 1.35rem);
  line-height: 1.08;
  color: #171d27;
  text-align: center;
}

.media-video-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
  font-size: 0.96rem;
}

.media-embed {
  position: relative;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: #0b1016;
  box-shadow: 0 20px 40px rgba(8, 12, 18, 0.18);
}

.media-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

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

.ref {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid #dddddf;
  background: linear-gradient(180deg, #fbfbfc 0%, #f1f3f6 100%);
  border-radius: 22px;
  box-shadow: 0 18px 30px rgba(18, 24, 38, 0.05);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ref-name {
  position: relative;
  z-index: 2;
  color: #18202c;
  font-size: 1.12rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.35;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  width: min(100%, 210px);
  text-shadow: 0 2px 16px rgba(255, 255, 255, 0.95), 0 1px 2px rgba(255, 255, 255, 0.9);
}

.ref-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(84%, 240px);
  height: min(62%, 126px);
  object-fit: contain;
  object-position: center center;
  filter: blur(1px) saturate(1.08) contrast(1.04);
  opacity: 0.34;
  transform: translate(-50%, -50%) scale(1.12);
  z-index: 0;
  display: block;
  pointer-events: none;
}

.ref-havelsan .ref-logo,
.ref-aselsan .ref-logo,
.ref-hilton .ref-logo {
  opacity: 0.52;
  filter: blur(0.25px) saturate(1.02) contrast(1.01);
  transform: translate(-50%, -50%) scale(1.02);
}

.ref-havelsan .ref-logo {
  width: min(88%, 254px);
}

.ref-aselsan .ref-logo {
  width: min(86%, 236px);
}

.ref-hilton .ref-logo {
  width: min(84%, 214px);
  height: min(70%, 138px);
}

.ref::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.38) 100%);
}

.center-btn {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.contact-strip {
  background: var(--accent);
  color: #fff;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
}

.contact-item {
  padding: 28px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-item:last-child {
  border-right: 0;
}

.contact-item h4 {
  margin: 0 0 8px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
}

.contact-item p {
  margin: 0;
  font-weight: 600;
  line-height: 1.45;
}

.site-footer {
  background: var(--dark);
  color: #cfd5df;
}

.footer-wrap {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-left img {
  width: clamp(150px, 18vw, 260px);
  opacity: 0.82;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  text-decoration: none;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.site-footer p {
  margin: 0;
  font-size: 0.88rem;
}

body.about-page {
  background:
    radial-gradient(circle at top left, rgba(217, 31, 38, 0.08) 0%, rgba(217, 31, 38, 0) 34%),
    linear-gradient(180deg, #edf0f4 0%, #f7f8fa 100%);
}

.about-main {
  padding-top: 116px;
}

.about-hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #0f141b;
}

.about-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 13, 18, 0.16) 0%, rgba(9, 13, 18, 0.62) 58%, rgba(9, 13, 18, 0.88) 100%),
    linear-gradient(90deg, rgba(9, 13, 18, 0.82) 0%, rgba(9, 13, 18, 0.28) 55%, rgba(9, 13, 18, 0.14) 100%),
    url("assets/hero/slide-3.jpeg") center/cover no-repeat;
  transform: scale(1.03);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  padding: 162px 0 78px;
}

.about-page-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.about-hero-content h1 {
  margin: 20px 0 18px;
  color: #ffffff;
  font-size: clamp(2.8rem, 4.7vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.about-hero-content p {
  margin: 0;
  color: rgba(244, 247, 252, 0.88);
  font-size: 1.08rem;
  line-height: 1.78;
  max-width: 62ch;
}

.about-story {
  padding-top: 36px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.72fr);
  gap: 22px;
  align-items: stretch;
}

.about-story-card,
.about-stat-card,
.about-value {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(205, 212, 223, 0.9);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(19, 26, 39, 0.08);
}

.about-story-card {
  padding: 34px 34px 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 249, 251, 0.98) 100%);
}

.about-story-card::before,
.about-stat-card::before,
.about-value::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #d91f26 0%, #f4644e 100%);
}

.about-card-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent-soft);
  border: 1px solid rgba(217, 31, 38, 0.12);
}

.about-story-card h2 {
  margin: 20px 0 16px;
  color: #121822;
  font-size: clamp(2rem, 2.2vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.about-story-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.about-story-card p:last-child {
  margin-bottom: 0;
}

.about-side-panel {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 18px;
}

.about-stat-card {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background:
    radial-gradient(circle at top right, rgba(217, 31, 38, 0.22) 0%, rgba(217, 31, 38, 0) 48%),
    linear-gradient(180deg, #171d27 0%, #10151d 100%);
  color: #ffffff;
}

.about-stat-card strong {
  font-size: clamp(2rem, 2.1vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.about-stat-card span {
  color: rgba(232, 237, 244, 0.82);
  font-size: 0.96rem;
  line-height: 1.6;
}

.about-values {
  padding-top: 8px;
}

.about-values-head {
  margin-bottom: 22px;
}

.about-values-head h2 {
  margin: 16px 0 0;
  color: #121822;
  font-size: clamp(2rem, 2.1vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

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

.about-value {
  padding: 28px 26px 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 252, 0.98) 100%);
}

.about-value h3 {
  margin: 8px 0 12px;
  color: #121822;
  font-size: 1.14rem;
  line-height: 1.4;
}

.about-value p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.78;
}

.home-about {
  padding-top: 34px;
  padding-bottom: 26px;
}

.home-about-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 22px;
  align-items: stretch;
}

.home-about-copy,
.home-about-main-photo,
.home-about-small-photo,
.home-about-metric-card,
.home-about-stat {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(205, 212, 223, 0.9);
  box-shadow: 0 24px 60px rgba(19, 26, 39, 0.08);
}

.home-about-copy {
  padding: 36px 36px 34px;
  background:
    radial-gradient(circle at top left, rgba(217, 31, 38, 0.1) 0%, rgba(217, 31, 38, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 248, 250, 0.98) 100%);
}

.home-about-copy::before,
.home-about-main-photo::before,
.home-about-small-photo::before,
.home-about-metric-card::before,
.home-about-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #d91f26 0%, #f4644e 100%);
}

.home-about-copy h2 {
  margin: 18px 0 16px;
  color: #121822;
  font-size: clamp(2.1rem, 2.35vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 13ch;
}

.home-about-lead {
  margin: 0 0 22px;
  color: #303845;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.78;
  max-width: 58ch;
}

.home-about-texts {
  display: grid;
  gap: 14px;
}

.home-about-texts p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.86;
}

.home-about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.home-about-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(217, 31, 38, 0.14);
  color: #202733;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 24px rgba(18, 24, 38, 0.05);
}

.home-about-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(210px, 0.7fr);
  gap: 18px;
}

.home-about-main-photo {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(12, 17, 24, 0.1) 0%, rgba(12, 17, 24, 0.3) 100%),
    url("assets/hero/slide-1.jpeg") center/cover no-repeat;
}

.home-about-side-stack {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
}

.home-about-small-photo {
  min-height: 248px;
}

.home-about-small-photo-top {
  background:
    linear-gradient(180deg, rgba(12, 17, 24, 0.06) 0%, rgba(12, 17, 24, 0.24) 100%),
    url("assets/hero/slide-2.jpeg") center/cover no-repeat;
}

.home-about-metric-card {
  padding: 28px 24px;
  background:
    radial-gradient(circle at top right, rgba(217, 31, 38, 0.24) 0%, rgba(217, 31, 38, 0) 48%),
    linear-gradient(180deg, #161d27 0%, #10151d 100%);
  color: #ffffff;
}

.home-about-metric-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.home-about-metric-card span {
  display: block;
  color: #f26b62;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.home-about-metric-card p {
  margin: 0;
  color: rgba(232, 237, 244, 0.84);
  font-size: 0.94rem;
  line-height: 1.74;
}

.home-about-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-about-stat {
  padding: 26px 24px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 248, 250, 0.98) 100%);
}

.home-about-stat strong {
  display: block;
  margin-bottom: 10px;
  color: #121822;
  font-size: 1.42rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.home-about-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.76;
}

.project-gallery {
  padding-top: 10px;
  background: linear-gradient(180deg, #171d27 0%, #0f141b 100%);
}

.project-gallery-head {
  margin-bottom: 22px;
  text-align: center;
}

.project-gallery .about-card-label {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.project-gallery-head .section-title {
  margin: 16px 0 10px;
  color: #f7f9fc;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}

.project-gallery-head p {
  margin: 0;
  max-width: 62ch;
  margin-inline: auto;
  color: rgba(230, 236, 244, 0.82);
  font-size: 1rem;
  line-height: 1.8;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  grid-auto-rows: 220px;
}

.project-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(205, 212, 223, 0.82);
  box-shadow: 0 24px 60px rgba(19, 26, 39, 0.08);
  background-color: #0f141b;
  isolation: isolate;
}

.project-gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 14, 20, 0.02) 0%, rgba(10, 14, 20, 0.16) 34%, rgba(10, 14, 20, 0.78) 100%);
  z-index: 1;
}

.project-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.04);
  transition: transform 0.45s ease;
}

.project-gallery-card:hover::after {
  transform: scale(1.09);
}

.project-gallery-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.project-shot-1::after {
  background-image: url("assets/hero/slide-1.jpeg");
  background-position: center center;
}

.project-shot-2::after {
  background-image: url("assets/hero/slide-2.jpeg");
  background-position: 58% center;
}

.project-shot-3::after {
  background-image: url("assets/hero/slide-3.jpeg");
  background-position: center 42%;
}

.project-shot-4::after {
  background-image: url("assets/hero/slide-2.jpeg");
  background-position: 36% center;
}

.project-shot-5::after {
  background-image: url("assets/hero/slide-3.jpeg");
  background-position: 76% center;
}

.project-shot-6::after {
  background-image: url("assets/hero/slide-1.jpeg");
  background-position: 82% center;
}

.project-gallery-copy {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.project-gallery-copy span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-gallery-copy h3 {
  margin: 14px 0 0;
  color: #ffffff;
  font-size: 1.24rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  max-width: 22ch;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

@media (max-width: 1320px) {
  .container {
    width: min(1480px, calc(100vw - 34px));
  }

  .brand img {
    width: clamp(180px, 16vw, 240px);
    max-height: 56px;
  }

  .main-nav {
    gap: 10px;
  }

  .main-nav a {
    padding: 0 12px;
    font-size: 0.82rem;
    min-height: 46px;
  }

  .header-socials {
    gap: 8px;
  }

  .header-socials a {
    width: 39px;
    height: 39px;
  }

  .hero-copy {
    width: min(100%, 620px);
  }

  .hero-title {
    font-size: clamp(2.6rem, 5vw, 4.8rem);
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .products-grid,
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .references-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .top-mini-wrap {
    min-height: 34px;
  }

  .site-header {
    top: 34px;
  }

  .header-wrap {
    min-height: 78px;
  }

  .brand img {
    width: clamp(148px, 14vw, 200px);
    max-height: 50px;
  }

  .main-nav a {
    padding: 0 10px;
    font-size: 0.78rem;
    min-height: 44px;
  }

  .header-socials a {
    width: 37px;
    height: 37px;
  }

  .hero-slide,
  .hero-stage {
    min-height: 100svh;
  }

  .hero-copy {
    width: min(100%, 560px);
    padding-top: clamp(102px, 12vh, 132px);
    padding-bottom: 56px;
  }

  .floating-call,
  .floating-whatsapp {
    bottom: 18px;
  }

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

  .home-about-visuals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-about-main-photo {
    min-height: 420px;
  }

  .home-about-side-stack {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .home-about-small-photo {
    min-height: 200px;
  }

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

  .service-offerings-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-story-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-side-card {
    position: static;
  }

  .service-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .top-mini {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .menu-toggle,
  .btn-call-mobile {
    display: inline-flex;
  }

  .header-socials {
    display: none;
  }

  .header-wrap {
    min-height: 72px;
    position: relative;
    padding-top: 0;
  }

  .brand img {
    width: clamp(138px, 34vw, 200px);
    max-height: 52px;
  }

  .header-actions {
    margin-left: auto;
  }

  .btn-call-mobile {
    align-items: center;
    justify-content: center;
  }

  .service-detail-main {
    padding-top: 72px;
  }

  .service-detail-hero {
    min-height: 430px;
  }

  .service-detail-hero-content {
    padding-bottom: 34px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(90vw, 360px);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #e2e6ee;
    border-radius: 28px;
    box-shadow: 0 28px 60px rgba(18, 24, 38, 0.18);
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 22px 18px 24px;
    transform: translateY(-8px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 50;
    max-height: calc(100vh - 110px);
    overflow: auto;
    backdrop-filter: blur(12px);
  }

  .main-nav[data-open="true"] {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    width: min(230px, 100%);
    min-height: 56px;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    border-radius: 20px;
    font-size: 1rem;
    color: #101722;
    background: linear-gradient(180deg, #fafbfc 0%, #edf0f5 100%);
    border: 1px solid #dde2e9;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 8px 20px rgba(18, 24, 38, 0.05);
    backdrop-filter: none;
  }

  .hero-slide {
    min-height: 520px;
  }

  .hero-stage {
    min-height: 520px;
  }

  .hero-copy {
    width: min(100%, 640px);
    padding: 118px 0 60px;
  }

  .hero-title {
    font-size: clamp(2.7rem, 8.2vw, 4.8rem);
  }

  .hero-text {
    font-size: 1rem;
    max-width: 560px;
  }

  .home-about {
    padding-top: 26px;
  }

  .home-about-copy {
    padding: 30px 26px 28px;
  }

  .home-about-copy h2 {
    max-width: 100%;
    font-size: clamp(1.95rem, 5vw, 2.7rem);
  }

  .home-about-lead,
  .home-about-texts p {
    font-size: 0.96rem;
    line-height: 1.78;
  }

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

  .home-about-main-photo {
    min-height: 360px;
  }

  .home-about-side-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .service-offerings-head p,
  .service-offer-copy p {
    font-size: 0.95rem;
  }

  .service-detail-copy-card,
  .service-detail-side-card {
    padding: 22px 20px 24px;
    border-radius: 24px;
  }

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

  .projects-main-simple {
    padding-top: 156px;
  }

  .projects-gallery-head {
    margin-bottom: 24px;
  }

  .projects-gallery-head h1 {
    font-size: clamp(1.7rem, 4.2vw, 2.4rem);
  }

  .service-gallery-media {
    min-height: 190px;
  }

  .project-gallery-head p {
    font-size: 0.96rem;
  }

  .project-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .project-gallery-card,
  .project-gallery-card-large {
    grid-column: auto;
    grid-row: auto;
  }

  .service-marquee-group {
    gap: 52px;
    padding: 16px 28px;
  }

  .service-marquee-group span {
    font-size: clamp(1.7rem, 4.2vw, 2.8rem);
    -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.88);
  }

  .about-card {
    min-height: 640px;
  }

  .about-card-content {
    width: min(100%, 680px);
    min-height: 640px;
    padding: 54px 42px;
  }

  .about-pill-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-grid,
  .services-grid,
  .references-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .media-video {
    grid-template-columns: 1fr;
  }

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

  .footer-wrap {
    padding: 16px 0;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .top-mini {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .section {
    padding: 42px 0;
  }

  .container {
    width: min(100% - 24px, 1700px);
  }

  .header-wrap {
    min-height: 68px;
    gap: 10px;
    padding-top: 0;
  }

  .brand img {
    width: clamp(126px, 38vw, 164px);
    max-height: 42px;
  }

  .header-actions {
    gap: 8px;
  }

  .home-about {
    padding-top: 18px;
    padding-bottom: 10px;
  }

  .home-about-copy,
  .home-about-main-photo,
  .home-about-small-photo,
  .home-about-metric-card,
  .home-about-stat {
    border-radius: 24px;
  }

  .home-about-copy {
    padding: 24px 20px 22px;
  }

  .home-about-copy h2 {
    margin: 16px 0 14px;
    font-size: 1.82rem;
  }

  .home-about-lead,
  .home-about-texts p,
  .home-about-stat span,
  .home-about-metric-card p {
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .home-about-points {
    gap: 8px;
    margin-top: 18px;
  }

  .home-about-points span {
    min-height: 34px;
    padding: 0 13px;
    font-size: 0.72rem;
  }

  .home-about-main-photo {
    min-height: 280px;
  }

  .home-about-side-stack {
    grid-template-columns: 1fr;
  }

  .projects-main-simple {
    padding-top: 128px;
  }

  .projects-gallery-simple {
    padding-top: 26px;
  }

  .projects-gallery-head {
    margin-bottom: 20px;
  }

  .projects-gallery-head h1 {
    font-size: 1.5rem;
  }

  .home-about-small-photo {
    min-height: 180px;
  }

  .home-about-metric-card,
  .home-about-stat {
    padding: 22px 18px 20px;
  }

  .service-offer-card {
    border-radius: 22px;
  }

  .service-offer-media {
    min-height: 250px;
  }

  .service-offer-copy {
    min-height: 120px;
    padding: 26px 18px 22px;
  }

  .service-offer-copy h3 {
    font-size: 1.12rem;
  }

  .service-offerings-head p {
    font-size: 0.92rem;
    line-height: 1.76;
  }

  .service-offer-trigger {
    width: 100%;
    min-width: 0;
  }

  .service-modal {
    padding: 18px;
  }

  .image-lightbox-nav {
    width: 48px;
    height: 48px;
    font-size: 1.9rem;
  }

  .service-modal-dialog {
    border-radius: 24px;
  }

  .service-modal-media {
    min-height: 220px;
  }

  .service-modal-body {
    padding: 24px 22px 26px;
  }

  .service-modal-content p {
    font-size: 0.95rem;
  }

  .project-gallery-grid {
    gap: 14px;
    grid-auto-rows: 220px;
  }

  .project-gallery-card {
    border-radius: 24px;
  }

  .project-gallery-copy {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .project-gallery-copy span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .project-gallery-copy h3 {
    margin-top: 12px;
    font-size: 1rem;
    max-width: 100%;
  }

  .btn-call-mobile {
    font-size: 0.76rem;
    padding: 11px 14px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .main-nav {
    width: min(92vw, 340px);
    padding: 18px 14px 20px;
    gap: 10px;
    border-radius: 26px;
  }

  .main-nav a {
    width: min(210px, 100%);
    min-height: 54px;
    border-radius: 18px;
    font-size: 0.98rem;
  }

  .hero-slide {
    min-height: 420px;
    background-position: center center;
  }

  .hero-stage {
    min-height: 420px;
  }

  .hero-slide::after {
    background:
      linear-gradient(180deg, rgba(7, 10, 14, 0.28) 0%, rgba(7, 10, 14, 0.62) 44%, rgba(7, 10, 14, 0.86) 100%),
      linear-gradient(90deg, rgba(7, 10, 14, 0.75) 0%, rgba(7, 10, 14, 0.2) 100%);
  }

  .hero-copy {
    width: 100%;
    padding: 92px 0 54px;
  }

  .floating-call {
    left: 14px;
    gap: 8px;
  }

  .floating-whatsapp {
    right: 14px;
  }

  .floating-call-label {
    min-height: 34px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .floating-whatsapp-label {
    min-height: 34px;
    padding: 0 14px;
    font-size: 0.76rem;
  }

  .floating-call-bubble,
  .floating-whatsapp-bubble {
    width: 48px;
    height: 48px;
  }

  .floating-call-bubble svg,
  .floating-whatsapp-bubble svg,
  .floating-whatsapp-bubble img {
    width: 100%;
    height: 100%;
  }

  .hero-kicker {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .hero-title {
    margin: 14px 0 14px;
    font-size: clamp(2.1rem, 10vw, 3rem);
    line-height: 0.98;
  }

  .hero-text {
    font-size: 0.92rem;
    line-height: 1.66;
  }

  .hero-actions-row {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-btn {
    min-height: 50px;
    padding: 0 18px;
    font-size: 0.82rem;
  }

  .hero-meta-row {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-meta-row span {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.68rem;
  }

  .service-marquee::before,
  .service-marquee::after {
    width: 34px;
  }

  .service-marquee-track {
    animation-duration: 28s;
  }

  .service-marquee-group {
    gap: 32px;
    padding: 12px 20px;
  }

  .service-marquee-group span {
    font-size: clamp(1.15rem, 5.2vw, 1.5rem);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.84);
    letter-spacing: 0.04em;
  }

  .about-highlight {
    padding: 44px 0 56px;
  }

  .about-card-content h2 {
    font-size: clamp(2rem, 9vw, 2.9rem);
    margin: 16px 0 16px;
  }

  .about-subtitle {
    margin-bottom: 20px;
  }

  .about-pill-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-pill,
  .about-pill:first-child,
  .about-pill:last-child {
    border-radius: 14px;
  }

  .about-card {
    min-height: 540px;
    border-radius: 26px;
  }

  .about-card::before {
    background:
      linear-gradient(180deg, rgba(12, 16, 23, 0.28) 0%, rgba(12, 16, 23, 0.64) 48%, rgba(12, 16, 23, 0.88) 100%),
      linear-gradient(90deg, rgba(12, 16, 23, 0.72) 0%, rgba(12, 16, 23, 0.3) 100%);
  }

  .about-card-content {
    width: 100%;
    min-height: 540px;
    padding: 34px 22px;
    justify-content: flex-end;
  }

  .about-card-content p {
    font-size: 1rem;
    line-height: 1.74;
    margin-bottom: 18px;
  }

  .about-cta {
    min-width: 164px;
    min-height: 54px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-progress {
    height: 3px;
  }

  .products-grid,
  .services-grid,
  .references-grid,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .product-card,
  .service-card {
    padding: 18px;
  }

  .product-card img {
    height: 240px;
  }

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

  .service-visual {
    min-height: 160px;
  }

  .service-content {
    padding: 20px 18px 22px;
  }

  .media-card {
    min-height: 250px;
  }

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

  .media-video {
    padding: 18px;
    gap: 18px;
  }

  .media-video-copy h3 {
    font-size: 1.45rem;
  }

  .ref {
    min-height: 112px;
    padding: 14px;
  }

  .ref-name {
    font-size: 1rem;
    width: min(100%, 190px);
  }

  .ref-logo {
    width: min(82%, 210px);
    height: min(60%, 104px);
    opacity: 0.26;
  }

  .contact-item {
    padding: 22px 18px;
  }

  .footer-wrap {
    min-height: auto;
    padding: 20px 0 24px;
    gap: 10px;
  }

  .site-footer p {
    font-size: 0.8rem;
    line-height: 1.5;
    text-align: center;
  }
}

@media (max-width: 1180px) {
  .about-hero {
    min-height: 500px;
  }

  .about-hero-content {
    width: min(100%, 680px);
    padding: 154px 0 72px;
  }

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

  .about-side-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .about-main {
    padding-top: 72px;
  }

  .about-hero {
    min-height: 460px;
  }

  .about-hero-content {
    width: 100%;
    padding: 122px 0 54px;
  }

  .about-hero-content h1 {
    max-width: 11ch;
    font-size: clamp(2.4rem, 8vw, 3.8rem);
  }

  .about-hero-content p {
    max-width: 100%;
    font-size: 1rem;
  }

  .about-story {
    padding-top: 28px;
  }

  .about-story-card {
    padding: 28px 24px 30px;
  }

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

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

@media (max-width: 640px) {
  .about-main {
    padding-top: 68px;
  }

  .about-hero {
    min-height: 400px;
  }

  .about-hero-content {
    padding: 106px 0 42px;
  }

  .about-page-kicker {
    min-height: 34px;
    padding: 0 14px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .about-hero-content h1 {
    margin: 16px 0 14px;
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .about-hero-content p {
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .about-story-card,
  .about-stat-card,
  .about-value {
    border-radius: 24px;
  }

  .about-story-card {
    padding: 24px 20px 26px;
  }

  .about-story-card h2,
  .about-values-head h2 {
    font-size: 1.8rem;
  }

  .about-story-card p,
  .about-value p,
  .about-stat-card span {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .about-side-panel {
    gap: 14px;
  }

  .about-stat-card,
  .about-value {
    padding: 24px 20px;
  }
}

.contact-page {
  background:
    radial-gradient(circle at top left, rgba(217, 31, 38, 0.08), transparent 28%),
    linear-gradient(180deg, #f6f7fb 0%, #eef1f7 100%);
}

.contact-main {
  padding-top: 118px;
}

.contact-hero-head {
  padding: 42px 0 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(245,247,251,0.94) 100%);
  border-bottom: 1px solid rgba(13, 24, 45, 0.08);
}

.contact-hero-head-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-hero-head h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: #1b2740;
}

.contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8b93a7;
  font-size: 0.96rem;
}

.contact-breadcrumb a {
  color: #c92b31;
  text-decoration: none;
}

.contact-layout-section {
  padding: 42px 0 70px;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.contact-details-column {
  display: grid;
  gap: 22px;
}

.contact-detail-card,
.contact-map-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(13, 24, 45, 0.08);
  border-radius: 28px;
  box-shadow: 0 24px 55px rgba(14, 24, 44, 0.08);
}

.contact-detail-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
  padding: 28px 30px;
}

.contact-detail-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #c92b31;
  border: 1.5px solid rgba(201, 43, 49, 0.4);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(250,238,239,0.82));
}

.contact-detail-icon svg {
  width: 26px;
  height: 26px;
}

.contact-detail-copy h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  color: #17233a;
}

.contact-detail-copy p {
  margin: 0;
  color: #697287;
  line-height: 1.72;
  font-size: 1rem;
}

.contact-detail-copy p + p {
  margin-top: 4px;
}

.contact-detail-copy a {
  color: #697287;
  text-decoration: none;
}

.contact-detail-copy a:hover {
  color: #c92b31;
}

.contact-map-card {
  overflow: hidden;
  min-height: 100%;
}

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

@media (max-width: 1180px) {
  .contact-main {
    padding-top: 108px;
  }

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

  .contact-map-card {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .contact-main {
    padding-top: 88px;
  }

  .contact-hero-head {
    padding: 26px 0 22px;
  }

  .contact-hero-head-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-layout-section {
    padding: 28px 0 52px;
  }

  .contact-detail-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 22px;
  }

  .contact-map-card {
    min-height: 320px;
  }
}
