:root {
  --ekol-blue: #087fdd;
  --ekol-blue-dark: #045a9e;
  --ekol-cyan: #44c8ff;
  --ekol-ink: #0c1720;
  --ekol-graphite: #2c3338;
  --ekol-steel: #6c767d;
  --ekol-line: rgba(255, 255, 255, 0.18);
  --ekol-soft: #f4f7f9;
  --ekol-white: #ffffff;
  --ekol-radius: 8px;
  --ekol-shadow: 0 22px 70px rgba(8, 31, 52, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.ekol-modern {
  margin: 0;
  color: var(--ekol-graphite);
  background: #f7f9fb;
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.ekol-modern header,
.ekol-modern main,
.ekol-modern section,
.ekol-modern footer {
  max-width: 100%;
}

.ekol-modern h1,
.ekol-modern h2,
.ekol-modern h3,
.ekol-modern h4,
.ekol-modern .navbar-brand {
  font-family: "Raleway", system-ui, sans-serif;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 2000;
  padding: 10px 14px;
  color: #fff;
  background: var(--ekol-blue-dark);
  border-radius: 6px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-topbar {
  background: #111b23;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-topbar a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.site-topbar a:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 990;
  background: rgba(17, 27, 35, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header .navbar {
  padding: 12px 0;
}

.site-header .navbar-brand img {
  width: 168px;
  height: auto;
  max-height: 70px;
  object-fit: contain;
}

.site-header .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--ekol-blue);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 800;
  text-decoration: none;
}

.nav-cta:hover {
  color: #fff;
  background: #0a91fb;
}

.language-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.hero-industrial {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(112deg, rgba(7, 16, 24, 0.95) 0%, rgba(8, 42, 67, 0.82) 42%, rgba(4, 12, 18, 0.54) 100%),
    url("../img/slider/fabrika.jpg") center/cover no-repeat;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.88) contrast(1.08);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 14, 22, 0.88), rgba(6, 29, 48, 0.42), rgba(6, 14, 22, 0.62)),
    radial-gradient(circle at 75% 28%, rgba(68, 200, 255, 0.2), transparent 32%);
}

#glass-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.74;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 84px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.hero-title {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-title span {
  color: var(--ekol-cyan);
}

.hero-lead {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

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

.btn-ekol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary-ekol {
  color: #fff;
  background: var(--ekol-blue);
  box-shadow: 0 14px 34px rgba(8, 127, 221, 0.28);
}

.btn-primary-ekol:hover {
  color: #fff;
  background: #0990fb;
}

.btn-ghost-ekol {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
}

.btn-ghost-ekol:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.hero-glass-panel {
  margin-top: 44px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--ekol-radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(18px);
  box-shadow: var(--ekol-shadow);
}

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

.metric {
  padding: 10px 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.metric:first-child {
  border-left: 0;
}

.metric strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section-block {
  padding: 88px 0;
}

.section-muted {
  background: var(--ekol-soft);
}

.section-dark {
  color: #fff;
  background: #101b24;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--ekol-blue);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin: 0;
  color: var(--ekol-ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 800;
}

.section-dark .section-heading,
.section-dark .section-kicker {
  color: #fff;
}

.section-copy {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--ekol-steel);
  font-size: 17px;
  line-height: 1.7;
}

.section-dark .section-copy {
  color: rgba(255, 255, 255, 0.78);
}

.service-grid,
.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.service-card,
.capability-card,
.form-shell,
.contact-card {
  border-radius: var(--ekol-radius);
  background: #fff;
  border: 1px solid #e2e8ee;
  box-shadow: 0 18px 42px rgba(15, 39, 58, 0.08);
}

.service-card {
  min-height: 270px;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(15, 39, 58, 0.14);
}

.service-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 18px;
}

.service-card-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--ekol-blue);
  background: #eef7ff;
  border: 1px solid #d4e8f8;
  border-radius: 16px;
  font-size: 32px;
}

.service-card h3,
.capability-card h3 {
  margin: 0;
  color: var(--ekol-ink);
  font-size: 19px;
  font-weight: 800;
}

.service-card p,
.capability-card p {
  margin: 12px 0 0;
  color: var(--ekol-steel);
  line-height: 1.6;
  font-size: 15px;
}

.service-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-card-link:hover,
.service-card-link:focus-visible {
  color: inherit;
  border-color: rgba(8, 127, 221, 0.35);
}

.seo-service-hero {
  --dynamic-bg: url("../img/slider/fabrika.jpg");
}

.seo-feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.seo-feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid rgba(199, 216, 228, 0.85);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ekol-ink);
  font-weight: 800;
}

.seo-feature-list i {
  color: var(--ekol-blue);
  font-size: 20px;
  line-height: 1.2;
}

.seo-faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin-top: 24px;
}

.seo-faq-list details {
  border: 1px solid rgba(199, 216, 228, 0.92);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(8, 31, 52, 0.08);
}

.seo-faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ekol-ink);
  font-weight: 900;
}

.seo-faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--ekol-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

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

.capability-card {
  padding: 24px;
}

.capability-card i {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
  background: var(--ekol-blue);
  border-radius: 50%;
  font-size: 20px;
}

.catalog-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(7, 20, 31, 0.96), rgba(7, 57, 95, 0.86)),
    url("../img/hakkimizda/isicam.jpg") center/cover no-repeat;
}

.catalog-card {
  padding: 30px;
  border-radius: var(--ekol-radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  backdrop-filter: blur(18px);
  box-shadow: var(--ekol-shadow);
}

.catalog-preview {
  position: relative;
  min-height: 370px;
  border-radius: var(--ekol-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.05)),
    url("../img/slider/yatcam.jpg") center/cover no-repeat;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.catalog-preview::after {
  content: "E-Katalog";
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: #fff;
  font-size: 44px;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
}

.media-feature {
  overflow: hidden;
  border-radius: var(--ekol-radius);
  background: #08131c;
  box-shadow: var(--ekol-shadow);
}

.media-feature video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ekol-player {
  position: relative;
  border: 1px solid #d9e6ef;
  background: #edf5fa;
  box-shadow: 0 26px 80px rgba(8, 31, 52, 0.18);
}

.ekol-player::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 20, 29, 0.04) 36%, rgba(7, 20, 29, 0.78) 100%),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.16), transparent 30%);
}

.ekol-player video {
  cursor: pointer;
}

.video-poster-action {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(8, 127, 221, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  box-shadow: 0 22px 60px rgba(8, 127, 221, 0.34);
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  font-size: 44px;
}

.video-poster-action i {
  margin-left: 4px;
}

.video-poster-action:hover {
  background: #0990fb;
  transform: translate(-50%, -50%) scale(1.04);
}

.ekol-player.is-playing .video-poster-action {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.94);
}

.ekol-player.controls-hidden .video-control-panel,
.ekol-player.controls-hidden .video-caption {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
}

.ekol-player.controls-hidden .video-caption {
  transform: translateY(-8px);
}

.video-caption {
  position: absolute;
  left: 22px;
  top: 22px;
  bottom: auto;
  z-index: 3;
  max-width: min(340px, calc(100% - 44px));
  color: #fff;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(14, 20, 25, 0.38);
  backdrop-filter: blur(14px) saturate(140%);
}

.video-caption span {
  display: inline-flex;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border-radius: 0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ekol-player.is-playing .video-caption {
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.ekol-player.is-buffering::before {
  content: "Video hazırlanıyor";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  padding: 8px 12px;
  color: #fff;
  background: rgba(8, 25, 37, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 900;
}

.video-control-panel {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 4;
  display: grid;
  width: min(860px, calc(100% - 32px));
  gap: 14px;
  padding: 16px 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  background: rgba(14, 20, 25, 0.62);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px) saturate(145%);
  transform: translateX(-50%);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.video-timeline-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 14px;
  min-height: 20px;
}

.video-control-row {
  display: grid;
  grid-template-columns: 58px 48px 48px minmax(150px, 1fr) 92px 48px;
  align-items: center;
  gap: 18px;
}

.video-round-control,
.video-main-control,
.video-speed-select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.video-round-control {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  font-size: 16px;
}

.video-main-control {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  color: #102536;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  font-size: 22px;
}

.video-main-control i {
  margin-left: 1px;
}

.video-round-control:hover,
.video-main-control:hover,
.video-speed-select:hover,
.video-round-control:focus-visible,
.video-main-control:focus-visible,
.video-speed-select:focus-visible {
  color: #102536;
  background: rgba(255, 255, 255, 0.92);
  outline: none;
  transform: scale(1.04);
}

.video-seek-control {
  position: relative;
  font-size: 16px;
}

.video-seek-control span {
  position: absolute;
  left: 50%;
  top: 50%;
  color: currentColor;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  transform: translate(-50%, -44%);
}

.video-seek-control i {
  font-size: 28px;
}

.video-progress-wrap {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
}

.video-range,
.video-volume-range {
  width: 100%;
  appearance: none;
  border-radius: 999px;
  cursor: pointer;
}

.video-range {
  height: 5px;
  background: linear-gradient(90deg, #fff var(--video-progress, 0%), rgba(255, 255, 255, 0.22) var(--video-progress, 0%));
}

.video-volume-range {
  width: 132px;
  height: 4px;
  background: linear-gradient(90deg, #fff var(--video-volume, 100%), rgba(255, 255, 255, 0.22) var(--video-volume, 100%));
}

.video-range::-webkit-slider-thumb,
.video-volume-range::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.26);
}

.video-range::-moz-range-thumb,
.video-volume-range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.26);
}

.video-volume-group,
.video-speed-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.video-volume-group {
  justify-self: center;
  min-width: 186px;
}

.video-speed-group {
  justify-self: center;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.video-speed-select {
  height: 42px;
  min-width: 84px;
  padding: 0 30px 0 12px;
  color: rgba(255, 255, 255, 0.88);
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, currentColor 50%) calc(100% - 15px) 13px / 6px 6px no-repeat,
    linear-gradient(135deg, currentColor 50%, transparent 50%) calc(100% - 10px) 13px / 6px 6px no-repeat,
    rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.video-speed-select option {
  color: #102536;
  background: #fff;
}

.video-time {
  min-width: 42px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  text-align: left;
  font-variant-numeric: tabular-nums;
}

.video-duration {
  text-align: right;
}
.quote-band {
  position: relative;
  padding: 56px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 70, 117, 0.94), rgba(11, 134, 219, 0.88)),
    var(--dynamic-bg, url("../img/cta-bg.jpg")) center/cover no-repeat;
}

.dynamic-home-section {
  background:
    radial-gradient(circle at 8% 20%, rgba(8, 127, 221, 0.08), transparent 34%),
    linear-gradient(180deg, #f8fcff 0%, #eef6fb 100%);
}

.dynamic-home-panel {
  max-width: 960px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(199, 216, 228, 0.85);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(22, 53, 75, 0.12);
  backdrop-filter: blur(18px);
}

.dynamic-home-panel .btn-ekol {
  margin-top: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  margin-top: 34px;
}

.contact-card {
  padding: 28px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #e8edf2;
}

.contact-item > div {
  min-width: 0;
  overflow-wrap: anywhere;
}

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

.contact-item i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--ekol-blue);
  border-radius: 50%;
}

.contact-item a {
  color: var(--ekol-ink);
  text-decoration: none;
  font-weight: 700;
}

.contact-phone-list {
  display: grid;
  gap: 5px;
  margin-top: 4px;
}

.contact-phone-list a,
.footer-phone-link,
.topbar-phone-link {
  overflow-wrap: anywhere;
}

.form-shell {
  padding: 28px;
}

.form-shell label {
  color: var(--ekol-ink);
  font-weight: 800;
  font-size: 14px;
}

.form-control,
.form-select {
  min-height: 48px;
  border-color: #d7e0e8;
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--ekol-blue);
  box-shadow: 0 0 0 0.2rem rgba(8, 127, 221, 0.14);
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 700;
}

.form-status.is-success {
  display: block;
  color: #075b31;
  background: #dff7ea;
}

.form-status.is-error {
  display: block;
  color: #842029;
  background: #f8d7da;
}

.site-footer {
  padding: 46px 0 30px;
  color: rgba(255, 255, 255, 0.74);
  background: #0b141c;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

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

.footer-logo {
  width: 168px;
  max-width: 100%;
  margin-bottom: 16px;
}

.footer-title {
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 8px 0;
}

.mobile-action-bar {
  display: none;
}

.mobile-menu-toggle {
  display: none;
}

.breadcrumb-hero {
  padding: 76px 0;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(7, 18, 28, 0.92), rgba(6, 72, 121, 0.72)),
    url("../img/slider/fabrika.jpg") center/cover no-repeat;
}

.quote-hero,
.cms-page-hero {
  background:
    linear-gradient(120deg, rgba(7, 18, 28, 0.9), rgba(6, 72, 121, 0.66)),
    var(--dynamic-bg, url("../img/slider/otocam.jpg")) center/cover no-repeat;
}

.cms-page-body {
  max-width: 920px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid #dfe9f1;
  border-radius: var(--ekol-radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(8, 31, 52, 0.08);
}

.cms-page-body p {
  color: var(--ekol-steel);
  font-size: 18px;
  line-height: 1.8;
}

.cms-page-body p:last-child {
  margin-bottom: 0;
}

[data-custom-pages] {
  display: contents;
}

.about-hero {
  position: relative;
  padding: 94px 0;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(8, 20, 30, 0.88) 0%, rgba(9, 55, 88, 0.68) 48%, rgba(255, 255, 255, 0.2) 100%),
    var(--dynamic-bg, url("../img/hakkimizda/fabrikadis.jpg")) center/cover no-repeat;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(246, 249, 252, 0.96));
  pointer-events: none;
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: end;
}

.about-hero-grid > * {
  min-width: 0;
}

.about-hero .eyebrow {
  color: #fff;
  background: rgba(7, 27, 41, 0.46);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.about-hero h1 {
  max-width: 900px;
  font-size: 64px;
  line-height: 0.98;
  overflow-wrap: break-word;
}

.about-hero p {
  max-width: 760px;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.about-hero-card {
  padding: 24px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--ekol-radius);
  background: rgba(8, 28, 43, 0.52);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.about-hero-card span {
  display: inline-flex;
  padding: 6px 10px;
  color: #fff;
  background: var(--ekol-blue);
  border-radius: 999px;
  font-weight: 900;
}

.about-hero-card strong {
  display: block;
  margin-top: 18px;
  font-size: 24px;
  line-height: 1.12;
}

.about-hero-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.6;
}

.gallery-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(21, 144, 232, 0.09), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f2f7fb 100%);
}

.gallery-section .section-kicker {
  color: var(--ekol-blue);
}

.gallery-section .section-heading {
  color: var(--ekol-ink);
}

.gallery-section .section-copy {
  color: var(--ekol-steel);
}

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

.gallery-carousel {
  margin-top: 34px;
}

.gallery-carousel-viewport {
  position: relative;
  max-width: 1120px;
  height: 620px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 12px;
  background: #eaf3f9;
  border: 1px solid rgba(12, 104, 180, 0.12);
  box-shadow: 0 24px 64px rgba(8, 31, 52, 0.14);
}

.gallery-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.gallery-carousel-slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.gallery-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 1.2s ease;
}

.gallery-carousel-slide.is-active img {
  transform: scale(1.05);
}

.gallery-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: rgba(16, 38, 54, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(232, 244, 251, 0.48));
  box-shadow:
    0 18px 42px rgba(8, 31, 52, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -12px 22px rgba(12, 104, 180, 0.06);
  backdrop-filter: blur(14px) saturate(145%);
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.gallery-carousel-arrow:hover,
.gallery-carousel-arrow:focus-visible {
  color: var(--ekol-blue);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(236, 248, 255, 0.72));
  box-shadow:
    0 22px 54px rgba(8, 31, 52, 0.2),
    0 0 0 4px rgba(21, 144, 232, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateY(-50%) scale(1.04);
}

.gallery-carousel-prev {
  left: 28px;
}

.gallery-carousel-next {
  right: 28px;
}

.gallery-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(235, 247, 253, 0.62);
  box-shadow:
    0 14px 34px rgba(8, 31, 52, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px) saturate(140%);
  transform: translateX(-50%);
}

.gallery-carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  transition: width 0.25s ease, background 0.25s ease;
}

.gallery-carousel-dots button.is-active {
  width: 42px;
  background: #fff;
}

.gallery-carousel-empty {
  display: grid;
  min-height: 260px;
  place-items: center;
  color: #66798a;
  border: 1px dashed rgba(12, 104, 180, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
}
.breadcrumb-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
}

.breadcrumb-hero p {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.timeline-item {
  padding: 24px;
  background: #fff;
  border: 1px solid #e2e8ee;
  border-radius: var(--ekol-radius);
}

.timeline-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ekol-blue);
  font-size: 14px;
  text-transform: uppercase;
}

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

@media (max-width: 1199px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 991px) {
  .site-header .navbar-collapse {
    margin-top: 12px;
    padding: 12px;
    border: 1px solid #dce8f0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 44px rgba(8, 31, 52, 0.12);
  }

  .site-header .navbar-nav {
    align-items: stretch !important;
    gap: 6px !important;
  }

  .site-header .nav-item {
    width: 100%;
  }

  .site-header .nav-link,
  .language-link,
  .nav-cta {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    padding: 11px 13px;
    border-radius: 12px;
  }

  .site-header .nav-link {
    color: #203849;
    background: #f6fafe;
  }

  .site-header .nav-link.active {
    color: var(--ekol-blue-dark);
    background: #e7f4ff;
  }

  .hero-industrial {
    min-height: auto;
  }

  .hero-content {
    padding: 72px 0 46px;
  }

  .metric-grid,
  .contact-grid,
  .timeline-list {
    grid-template-columns: 1fr;
  }

  .metric {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .metric:first-child {
    border-top: 0;
  }
}

@media (max-width: 767px) {
  body.ekol-modern {
    padding-bottom: 74px;
  }

  .site-topbar {
    display: none;
  }

  .site-header .navbar-brand img {
    width: 132px;
  }

  .hero-media video {
    opacity: 0.3;
  }

  #glass-canvas {
    display: none;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-actions .btn-ekol {
    width: 100%;
  }

  .section-block {
    padding: 62px 0;
  }

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

  .catalog-preview {
    min-height: 260px;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: min(100vw, 390px);
    z-index: 1200;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(11, 20, 28, 0.9);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .mobile-action-bar a {
    display: flex;
    min-width: 0;
    min-height: 62px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
  }

  .mobile-action-bar a:nth-child(2) {
    background: rgba(8, 127, 221, 0.2);
  }
}

/* Light corporate refresh */
.site-topbar {
  background: #f6f9fc;
  color: #536574;
  border-bottom: 1px solid #e3eaf0;
}

.site-topbar a {
  color: #24465f;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(9, 36, 55, 0.1);
  box-shadow: 0 12px 34px rgba(8, 28, 44, 0.08);
}

.site-header .navbar {
  padding: 9px 0;
}

.site-header .navbar-brand img {
  width: 192px;
  max-height: 76px;
}

.site-header .nav-link {
  color: #263c4c;
  white-space: nowrap;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--ekol-blue);
}

.site-header .navbar-toggler {
  border-color: rgba(8, 127, 221, 0.25);
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 14px;
  background: #eef7ff;
}

.site-header .navbar-toggler-icon {
  display: none;
}

.site-header .navbar-toggler::before {
  content: "\F479";
  color: var(--ekol-blue-dark);
  font-family: "bootstrap-icons";
  font-size: 24px;
  line-height: 1;
}

.language-link {
  color: #24465f;
  border-color: #d3e0ea;
  background: #fff;
}

.language-link:hover {
  color: var(--ekol-blue);
}

.hero-industrial {
  min-height: 760px;
  color: var(--ekol-ink);
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(235, 246, 253, 0.78) 64%, rgba(255, 255, 255, 0.62) 100%);
}

.hero-media video {
  opacity: 0.72;
  filter: saturate(1.08) contrast(1.08) brightness(0.98);
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.66) 38%, rgba(255, 255, 255, 0.06) 100%),
    radial-gradient(circle at 75% 26%, rgba(8, 127, 221, 0.12), transparent 32%);
}

#glass-canvas {
  opacity: 0.22;
}

.hero-content {
  padding: 76px 0 52px;
}

.eyebrow {
  color: #145d93;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(8, 127, 221, 0.14);
  box-shadow: 0 10px 28px rgba(8, 31, 52, 0.08);
}

.hero-title {
  color: #0f1d27;
}

.hero-title span {
  color: var(--ekol-blue);
}

.hero-lead {
  color: #536574;
}

.btn-ghost-ekol {
  color: #1b3446;
  background: rgba(255, 255, 255, 0.78);
  border-color: #d3e0ea;
}

.btn-ghost-ekol:hover {
  color: var(--ekol-blue-dark);
  border-color: rgba(8, 127, 221, 0.32);
  background: #fff;
}

.btn-whatsapp-ekol {
  color: #fff;
  background: #20b857;
  border-color: rgba(32, 184, 87, 0.24);
  box-shadow: 0 14px 34px rgba(32, 184, 87, 0.22);
}

.btn-whatsapp-ekol:hover {
  color: #fff;
  background: #17994a;
  border-color: rgba(23, 153, 74, 0.34);
}

.hero-glass-panel {
  max-width: 860px;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(8, 127, 221, 0.14);
  box-shadow: 0 18px 46px rgba(8, 31, 52, 0.1);
}

.metric {
  border-left-color: #d8e4ec;
}

.metric strong {
  color: #102331;
}

.metric span {
  color: #607380;
}

.section-muted {
  background: linear-gradient(180deg, #f7fafc 0%, #eef5f9 100%);
}

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

.capability-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 18px;
  align-items: start;
  min-height: 168px;
  padding: 26px;
  border-color: #dfe9f1;
  box-shadow: 0 16px 38px rgba(8, 31, 52, 0.07);
}

.capability-card i {
  width: 52px;
  height: 52px;
  margin-bottom: 0;
  font-size: 23px;
}

.capability-card h3 {
  font-size: 22px;
  line-height: 1.16;
}

.capability-card p {
  margin-top: 10px;
  max-width: 32ch;
  font-size: 16px;
  line-height: 1.62;
}

.catalog-section {
  color: var(--ekol-ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(233, 244, 251, 0.94)),
    url("../img/hakkimizda/fabrikafoto1.jpg") center/cover no-repeat;
}

.catalog-card {
  background: rgba(255, 255, 255, 0.82);
  border-color: #dbe7ef;
  box-shadow: 0 24px 70px rgba(8, 31, 52, 0.12);
}

.catalog-section .text-white,
.catalog-section .section-heading {
  color: var(--ekol-ink) !important;
}

.catalog-section .text-white-50,
.catalog-section .section-copy {
  color: #607380 !important;
}

.catalog-preview {
  min-height: 0;
  aspect-ratio: 1.38 / 1;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #ffffff, #edf5fa);
  border: 1px solid #dbe7ef;
  box-shadow: 0 24px 70px rgba(8, 31, 52, 0.12);
}

.catalog-preview::after {
  content: none;
}

.catalog-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 31, 52, 0.12);
}

.catalog-preview-meta {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: #173147;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d8e5ee;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(8, 31, 52, 0.12);
}

.catalog-preview-meta span {
  color: #173147;
  font-size: 14px;
  font-weight: 800;
}

.catalog-view-section {
  min-height: calc(100vh - 136px);
  background:
    radial-gradient(circle at 8% 12%, rgba(8, 127, 221, 0.1), transparent 32%),
    linear-gradient(180deg, #f8fcff 0%, #eef6fb 100%);
}

.catalog-view-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.catalog-view-head .section-heading {
  max-width: 760px;
  margin-bottom: 12px;
}

.catalog-view-head .section-copy {
  max-width: 820px;
  margin-bottom: 0;
}

.catalog-frame-shell {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  border: 1px solid rgba(199, 216, 228, 0.95);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(235, 247, 255, 0.76));
  box-shadow: 0 28px 80px rgba(22, 53, 75, 0.14);
}

.catalog-frame-shell iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 72vh;
  min-height: 620px;
  border: 0;
  background: #fff;
}

.catalog-frame-fallback {
  position: absolute;
  inset: auto 18px 18px 18px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  color: var(--ekol-text);
  border: 1px solid rgba(199, 216, 228, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.catalog-frame-fallback a {
  color: var(--ekol-blue);
  font-weight: 900;
}

.catalog-support-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: stretch;
}

.catalog-cover-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(199, 216, 228, 0.95);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(232, 245, 253, 0.82));
  box-shadow: 0 28px 80px rgba(22, 53, 75, 0.14);
}

.catalog-cover-panel img {
  width: 100%;
  height: 100%;
  min-height: 476px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
}

.catalog-cover-panel figcaption {
  position: absolute;
  right: 42px;
  bottom: 42px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 12px 16px;
  color: #173147;
  border: 1px solid rgba(199, 216, 228, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(22, 53, 75, 0.12);
  backdrop-filter: blur(14px);
}

.catalog-cover-panel figcaption span {
  font-size: 13px;
  font-weight: 900;
}

.catalog-cover-panel figcaption strong {
  color: var(--ekol-blue);
  font-size: 18px;
}

.catalog-option-panel {
  display: grid;
  gap: 16px;
}

.catalog-option-panel article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(199, 216, 228, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 55px rgba(22, 53, 75, 0.1);
}

.catalog-option-panel article > i {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--ekol-blue), #0a6eb8);
  box-shadow: 0 14px 28px rgba(8, 127, 221, 0.22);
  font-size: 24px;
}

.catalog-option-panel h2 {
  margin: 0 0 8px;
  color: var(--ekol-text);
  font-size: 22px;
  font-weight: 900;
}

.catalog-option-panel p {
  margin: 0 0 16px;
  color: var(--ekol-muted);
  line-height: 1.65;
}

.catalog-note {
  max-width: 620px;
  color: #607380;
  font-weight: 700;
}

.site-footer {
  color: #596b78;
  background: #f6f9fc;
  border-top: 1px solid #dfe9f1;
}

.site-footer a,
.footer-title {
  color: #173147;
}

.site-footer a:hover {
  color: var(--ekol-blue);
}

.footer-logo {
  width: 210px;
}

.site-footer .border-secondary {
  border-color: #dbe7ef !important;
}

@media (max-width: 991px) {
  .hero-industrial {
    min-height: auto;
  }

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

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

  .about-hero h1 {
    font-size: 48px;
  }

  .about-hero-card {
    max-width: 520px;
  }

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

}

@media (max-width: 767px) {
  .ekol-modern .container {
    width: 100%;
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .site-header .navbar-brand img {
    width: 156px;
  }

  .site-header .navbar > .container {
    position: relative;
    min-height: 70px;
    align-items: center;
  }

  .site-header .navbar-toggler {
    position: fixed;
    top: 18px;
    right: auto;
    left: calc(min(100vw, 390px) - 60px);
    z-index: 1301;
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-left: auto;
    flex: 0 0 46px;
    transform: none;
  }

  .mobile-menu-toggle {
    position: fixed;
    top: 18px;
    right: auto;
    left: calc(min(100vw, 390px) - 60px);
    z-index: 1400;
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    color: var(--ekol-blue-dark);
    border: 1px solid rgba(8, 127, 221, 0.22);
    border-radius: 14px;
    background: #eef7ff;
    box-shadow: 0 12px 28px rgba(8, 31, 52, 0.14);
    font-size: 24px;
  }

  .mobile-menu-toggle.is-open {
    color: #fff;
    background: var(--ekol-blue);
  }

  body.ekol-modern::before {
    content: "";
    position: fixed;
    top: 31px;
    right: auto;
    left: calc(min(100vw, 390px) - 48px);
    z-index: 1500;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--ekol-blue-dark);
    box-shadow: 0 7px 0 var(--ekol-blue-dark), 0 14px 0 var(--ekol-blue-dark);
    pointer-events: none;
  }

  .hero-media video {
    opacity: 0.48;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.03;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .hero-title span {
    display: block;
  }

  .hero-title span::after {
    content: none;
  }

  .hero-lead {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    font-size: 17px;
  }

  .hero-actions {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .hero-actions .btn-ekol {
    max-width: 100%;
    white-space: normal;
  }

  .video-control-panel {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
    transform: none;
  }

  .video-timeline-row {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .video-progress-wrap {
    min-width: 72px;
  }

  .video-caption {
    left: 14px;
    right: 14px;
    top: 14px;
    bottom: auto;
    max-width: calc(100% - 28px);
    padding: 10px 12px;
  }

  .video-poster-action {
    width: 68px;
    height: 68px;
    font-size: 34px;
  }

  .video-round-control,
  .video-main-control {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .video-main-control {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .video-speed-select {
    min-width: 74px;
    height: 36px;
    padding-left: 11px;
    background-position:
      calc(100% - 15px) 15px,
      calc(100% - 10px) 15px,
      0 0;
  }

  .ekol-player.controls-hidden .video-control-panel {
    transform: translateY(12px);
  }

  .video-control-row {
    display: grid;
    grid-template-columns: 48px 38px 38px minmax(38px, 1fr) 74px 38px;
    gap: 7px;
    overflow: visible;
    padding-bottom: 0;
  }

  .video-volume-group {
    justify-self: center;
    min-width: auto;
  }

  .video-volume-range {
    display: none;
  }

  .video-speed-group {
    justify-self: center;
    gap: 4px;
    flex: 0 0 auto;
  }

  .about-hero {
    padding: 58px 0 74px;
    background-position: center;
  }

  .contact-card {
    padding: 22px;
    overflow: hidden;
  }

  .contact-item {
    gap: 12px;
  }

  .contact-item i {
    width: 40px;
    height: 40px;
  }

  .contact-item > div {
    max-width: calc(100vw - 118px);
    line-height: 1.48;
  }

  .breadcrumb-hero p {
    max-width: 31ch;
    font-size: 17px;
  }

  .about-hero-grid {
    width: min(100%, 330px);
    max-width: 330px;
  }

  .about-hero h1 {
    font-size: 32px;
    line-height: 1.02;
    width: min(100%, 330px);
    max-width: 330px !important;
    overflow-wrap: anywhere;
  }

  .about-hero p {
    font-size: 16px;
    width: min(100%, 330px);
    max-width: 330px !important;
    overflow-wrap: anywhere;
  }

  .about-hero-actions .btn-ekol {
    width: 100%;
  }

  .about-hero-card {
    padding: 20px;
    width: min(100%, 330px);
    max-width: 330px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-carousel {
    margin-top: 22px;
  }

  .gallery-carousel-viewport {
    height: 430px;
    border-radius: 10px;
  }

  .gallery-carousel-arrow {
    width: 44px;
    height: 44px;
  }

  .gallery-carousel-prev {
    left: 12px;
  }

  .gallery-carousel-next {
    right: 12px;
  }

  .gallery-carousel-dots {
    bottom: 18px;
    gap: 8px;
    padding: 8px 12px;
  }

  .gallery-carousel-dots button {
    width: 9px;
    height: 9px;
  }

  .gallery-carousel-dots button.is-active {
    width: 34px;
  }

  .catalog-preview {
    aspect-ratio: 1 / 0.82;
    padding: 12px;
  }

  .catalog-preview-meta {
    left: 20px;
    right: auto;
    bottom: 20px;
  }

  .catalog-view-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .catalog-frame-shell,
  .catalog-frame-shell iframe {
    min-height: 560px;
    height: 68vh;
  }

  .catalog-frame-shell {
    border-radius: 16px;
  }

  .catalog-frame-fallback {
    inset: auto 10px 10px 10px;
    border-radius: 14px;
  }

  .catalog-support-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalog-cover-panel {
    min-height: 0;
    padding: 14px;
    border-radius: 18px;
  }

  .catalog-cover-panel img {
    min-height: 0;
    aspect-ratio: 1.35 / 1;
  }

  .catalog-cover-panel figcaption {
    right: 24px;
    bottom: 24px;
  }

  .catalog-option-panel article {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
  }

  .catalog-option-panel article > i {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    font-size: 20px;
  }

  .catalog-option-panel h2 {
    font-size: 19px;
  }

}

/* Final mobile hardening: keep all tap targets inside the viewport. */
.ekol-modern *,
.ekol-modern *::before,
.ekol-modern *::after {
  min-width: 0;
}

.ekol-modern img,
.ekol-modern video,
.ekol-modern canvas {
  max-width: 100%;
}

@media (max-width: 767px) {
  body.ekol-modern {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .site-header,
  .site-header .navbar,
  .site-header .navbar > .container,
  .site-header .navbar-collapse,
  .site-header .navbar-nav,
  .hero-content,
  .hero-copy,
  .hero-title,
  .hero-lead,
  .hero-actions,
  .about-hero-grid,
  .about-hero h1,
  .about-hero p,
  .about-hero-card,
  .catalog-card,
  .video-showcase,
  .contact-card,
  .form-shell {
    width: 100%;
    max-width: 100%;
  }

  .site-header .navbar-collapse {
    position: fixed;
    top: 78px;
    left: 12px;
    right: 12px;
    z-index: 1390;
    max-height: calc(100dvh - 112px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 12px;
    border-radius: 18px;
  }

  body.ekol-modern .site-header button.navbar-toggler {
    position: fixed !important;
    top: 18px !important;
    right: 14px !important;
    left: auto !important;
    z-index: 1502 !important;
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: #eef7ff !important;
    box-shadow: 0 12px 28px rgba(8, 31, 52, 0.14);
  }

  body.ekol-modern .mobile-menu-toggle {
    position: fixed !important;
    top: 18px !important;
    right: 14px !important;
    left: auto !important;
    z-index: 1503 !important;
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  body.ekol-modern::before {
    content: "";
    position: fixed;
    top: 31px;
    right: 26px;
    z-index: 1504;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--ekol-blue-dark);
    box-shadow: 0 7px 0 var(--ekol-blue-dark), 0 14px 0 var(--ekol-blue-dark);
    pointer-events: none;
  }

  .site-header .navbar-collapse:not(.show) {
    display: none !important;
  }

  .site-header .navbar-nav {
    display: grid !important;
    grid-template-columns: 1fr;
  }

  .site-header .nav-link,
  .language-link,
  .nav-cta,
  .btn-ekol {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-title {
    width: calc(100% - 24px);
    max-width: 340px;
    font-size: 34px;
    line-height: 1.04;
  }

  .hero-lead {
    width: calc(100% - 24px);
    max-width: 340px;
    font-size: 17px;
  }

  .hero-actions,
  .about-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: calc(100% - 24px);
    max-width: 340px;
  }

  .hero-actions .btn-ekol,
  .about-hero-actions .btn-ekol,
  .catalog-actions .btn-ekol,
  .quote-actions .btn-ekol {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    white-space: normal;
  }

  .mobile-action-bar {
    width: 100%;
    max-width: 100%;
  }

  .mobile-action-bar a {
    white-space: normal;
    line-height: 1.15;
    text-align: center;
  }

  .contact-item > div {
    max-width: 100%;
  }
}

/* Focused polish fixes: video first frame, mobile nav, and light topbar hover. */
.site-topbar a:hover,
.site-topbar a:focus-visible {
  color: var(--ekol-blue-dark);
  text-decoration: none;
}

.ekol-player:not(.has-started) .video-control-panel,
.ekol-player:not(.has-started) .video-caption {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
}

.ekol-player:not(.has-started) .video-caption {
  transform: translateY(-8px);
}

@media (max-width: 767px) {
  body.ekol-modern .site-header {
    position: sticky;
    top: 0;
    overflow: visible;
  }

  body.ekol-modern .site-header .navbar {
    padding: 8px 0;
  }

  body.ekol-modern .site-header .navbar > .container {
    position: relative;
    min-height: 72px;
    padding-right: 78px;
  }

  body.ekol-modern .site-header .navbar-brand {
    max-width: calc(100% - 4px);
  }

  body.ekol-modern .site-header .navbar-brand img {
    width: 168px;
    max-height: 68px;
  }

  body.ekol-modern .site-header button.navbar-toggler,
  body.ekol-modern .mobile-menu-toggle {
    position: fixed !important;
    top: 18px !important;
    right: auto !important;
    left: calc(min(100vw, 390px) - 64px) !important;
    z-index: 1502 !important;
    display: inline-flex !important;
    width: 48px !important;
    height: 48px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border: 1px solid rgba(8, 127, 221, 0.28) !important;
    border-radius: 16px !important;
    background: #eef7ff !important;
    box-shadow: 0 12px 28px rgba(8, 31, 52, 0.14) !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  body.ekol-modern .mobile-menu-toggle {
    z-index: 1503 !important;
  }

  body.ekol-modern .site-header button.navbar-toggler::before {
    content: "\F479" !important;
    display: block !important;
    color: var(--ekol-blue-dark) !important;
    font-family: "bootstrap-icons" !important;
    font-size: 25px !important;
    line-height: 1 !important;
  }

  body.ekol-modern .site-header button.navbar-toggler .navbar-toggler-icon {
    display: none !important;
  }

  body.ekol-modern .mobile-menu-toggle i {
    color: var(--ekol-blue-dark) !important;
    font-size: 25px !important;
    line-height: 1 !important;
  }

  body.ekol-modern::before {
    content: none !important;
  }

  body.ekol-modern .site-header .navbar-collapse {
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
  }

  .ekol-player:not(.has-started) .video-control-panel,
  .ekol-player:not(.has-started) .video-caption {
    display: none;
  }

  .ekol-player:not(.has-started) .video-poster-action {
    width: 66px;
    height: 66px;
    font-size: 32px;
    box-shadow: 0 18px 44px rgba(8, 127, 221, 0.24);
  }
}
