* {
  box-sizing: border-box;
}
:root {
  --bg: #000000;
  --bg2: #000000;
  --fg: #eaf0ff;
  --muted: #9aa3b2;
  --acc: #6ea0ff;
  --acc-strong: #4f7cff;
  --glass: rgba(255, 255, 255, 0.06);
  --container: 1400px; /* container width */
  --heading-font: 'Poppins', CenturyGothic, AppleGothic, Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --hero-height: clamp(520px, 70vh, 760px);
  --section-media-height: clamp(460px, 60vh, 680px);
}
html,
body {
  height: 100%;
  overflow-x: hidden;
}
body,
button,
input,
select,
textarea {
  margin: 0;
  font-family:
    Poppins,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
  background: radial-gradient(1600px 800px at 20% 10%, #112348 0%, transparent 60%), var(--bg);
  color: var(--fg);
  max-width: 100%;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0;
}

/* Layout helpers: container side gradient lines (Hakkımızda) */
.container--side-lines {
  position: relative;
}
.container--side-lines::before,
.container--side-lines::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.28),
    rgba(255, 255, 255, 0.08)
  );
}
.container--side-lines::before {
  left: 0;
}
.container--side-lines::after {
  right: 0;
}
a {
  color: var(--acc);
  text-decoration: none;
}
a:hover {
  color: var(--acc-strong);
}
.heading-anchor {
  color: inherit;
  text-decoration: none;
}
.heading-anchor:hover,
.heading-anchor:focus-visible {
  color: inherit;
  text-decoration: none;
}

/* Anchor targets on Şarj İstasyonu Çözümleri: prevent sticky header overlap */
.page-sarj-istasyonu-cozumleri .ic-sayfa-baslik[id],
.page-sarj-istasyonu-cozumleri h3[id] {
  scroll-margin-top: calc(var(--header-h, 72px) + 16px);
}

h2 {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 42px);
  line-height: 1.2;
  margin: 15px 0 30px;
  color: #9fb1df;
}

/* Header / Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 3000;
  background: linear-gradient(180deg, rgba(9, 14, 26, 0.8), rgba(9, 14, 26, 0.35));
  -webkit-backdrop-filter: saturate(120%) blur(8px);
  backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  height: 100px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 15px;
  transition:
    height 0.2s ease,
    padding 0.2s ease;
}
.brand {
  display: flex;
  align-items: center;
  color: #fff;
}
.brand .logo {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.5));
}
.primary-nav {
  margin-left: auto;
}
.nav-toggle {
  display: none;
}
.menu {
  display: flex;
  --gap: 16px;
  gap: var(--gap);
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu li {
  position: relative;
}
.menu li:not(:last-child)::after {
  /* separators removed per request */
  content: none;
  display: none;
}
.menu a {
  color: #ffffff;
  font-weight: 100;
  font-size: 14px;
}
.menu a:hover {
  color: #fff;
}
.menu li.has-sub > a::after {
  content: none;
  display: none;
}
.sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  padding: 10px;
  list-style: none;
  margin: 0;
  background: rgba(11, 16, 32, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  z-index: 4000;
}
.sub-menu li {
  padding: 0;
}
.sub-menu a {
  display: block;
  padding: 8px 10px;
  color: #e6ecff;
}
.sub-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
}
.menu li.has-sub:hover > .sub-menu,
.menu li.has-sub:focus-within > .sub-menu {
  display: block;
}
/* remove separators inside dropdown */
.menu .sub-menu li::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 1200px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--glass);
    color: #fff;
  }
  .menu {
    display: none;
    position: absolute;
    right: 24px;
    top: 72px;
    background: rgba(11, 16, 32, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 16px;
    flex-direction: column;
    gap: 12px;
  }
  .menu li:not(:last-child)::after {
    display: none;
  }
  .menu.is-open {
    display: flex;
  }
  .menu .sub-menu {
    position: static;
    display: block;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
  }
  .menu .sub-menu a {
    padding: 6px 8px;
  }

  .header-inner {
    height: 80px;
    padding-bottom: 12px;
    padding-top: 12px;
    align-items: center;
  }
}

@media (max-width: 720px) {
  .header-inner {
    height: 72px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .brand .logo {
    height: 32px;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  z-index: 2000;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(1200px 600px at 20% 50%, rgba(108, 154, 255, 0.25), transparent 100%);
}
/* Slider itself does not need a positioning context; let arrows anchor to .hero */
.slider {
  position: static;
  padding: 0px 0 64px;
}
/* Make slider full-bleed even inside a container */
/* Avoid 100vw seams on some browsers; keep slider within viewport */
.hero .slider {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.hero .container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}
.slides {
  position: relative;
  min-height: clamp(560px, 72vh, 760px);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  pointer-events: none;
}
.slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.slide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  height: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 0 12px;
  position: relative;
  z-index: 1;
}
.slide-grid--wide {
  grid-template-columns: 1fr 1.3fr;
}
.copy {
  padding: 24px 0 24px;
}
.copy .pill {
  display: inline-block;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 4px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #d7def1;
  font-size: larger;
}
.pill {
  display: inline-block;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 4px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #d7def1;
  font-size: larger;
}
h1 {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.8;
  margin: 0 0 12px;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 1;
}
h1::before {
  /* Diagonal perspective shadow rising up-left */
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: -1;
  left: -6%;
  bottom: -12%;
  width: 120%;
  height: 70%;
  background: radial-gradient(140% 160% at 0% 100%, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 65%);
  transform-origin: 0 100%;
  transform: rotate(-14deg) skewX(-8deg);
  filter: blur(18px);
  opacity: 0.55;
}
h1 .thin {
  font-weight: 400;
  color: #d5ddff;
  font-size: 62px;
}

ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 0em;
  margin-block-end: 0em;
  padding-inline-start: 20px;
  unicode-bidi: isolate;
}

.hero .lede {
  color: #ffffff;
  max-width: 100%;
  font-weight: 400;
  font-size: 22px;
  padding-top: 20px;
}

.lede {
  color: #ffffff;
  max-width: 100%;
  font-weight: 100;
  font-size: 20px;
}

.lede-2 {
  color: #ffffff;
  max-width: 100%;
  font-weight: 100;
  font-size: 16px;
}

.lede-2col {
  columns: 2;
  column-gap: 50px;
}
.lede-2col li {
  break-inside: avoid;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .lede-2col {
    columns: 1;
  }
}
.spot {
  color: #ffffff;
  max-width: 100%;
  font-weight: 400;
  font-size: 24px;
  padding-right: 100px;
}

@media (max-width: 980px) {
  .spot {
    padding-right: 0px;
    font-size: 20px;
  }
}

.alt-spot {
  color: #ffffff;
  max-width: 100%;
  font-weight: 400;
  font-size: 18px;
  padding-right: 0px;
  margin-bottom: 40px;
  margin-top: 20px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(180deg, #9fb1df, #566079);
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: small;
  font-weight: 200;
  transition:
    background-color 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
    color 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
/* Header menu glow — apply to the link only so no band appears under header */
.menu a {
  position: relative;
}
.menu a:hover,
.menu a:focus-visible {
  color: #fff;
  text-shadow:
    0 0 8px rgba(79, 124, 255, 0.8),
    0 0 30px rgba(79, 124, 255, 0.5);
  transform: none;
  box-shadow: none; /* avoid full-width shadow band */
}

.btn:hover,
.btn:focus-visible {
  background: #000;
  color: #fff;
  filter: none;
  transform: translateY(-1px);
  box-shadow: 0 0px 28px rgba(79, 123, 255, 0.616);
}
.visual {
  position: relative;
  height: clamp(360px, 58vh, 640px);
  display: grid;
  place-items: end center;
}
.visual .hero-img,
.visual .mini-dc-hero-img,
.visual .wall-box-hero-img,
.visual .tasinabilir-hero-img {
  max-height: 108%;
  max-width: 108%;
  width: auto;
  height: auto;
  object-position: center;
  transform: none;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.45));
  border-radius: 12px;
}
.visual .wall-box-hero-img {
  max-height: 118%;
  max-width: 118%;
}
.visual .mini-dc-hero-img {
  max-height: 112%;
  max-width: 112%;
}
.visual .tasinabilir-hero-img {
  max-height: 125%;
  max-width: 125%;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  cursor: pointer;
  z-index: 10; /* stay above slide content */
}
.arrow:hover {
  background: rgba(255, 255, 255, 0.12);
}
/* With full-bleed slider, keep arrows near viewport edges */
.arrow.prev {
  left: max(16px, env(safe-area-inset-left));
}
.arrow.next {
  right: max(16px, env(safe-area-inset-right));
}

.dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.dots button {
  width: 10px;
  height: 11px;
  border-radius: 999px;
  background: #34405f;
  border: none;
  opacity: 0.8;
}
.dots button[aria-current='true'] {
  background: #9ab3ff;
  box-shadow: 0 0 0 4px rgba(79, 124, 255, 0.18);
  opacity: 1;
}

@media (max-width: 980px) {
  .slides {
    min-height: 300px;
  }
  .slide-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    padding: 0 0 28px;
  }
  .visual {
    height: 320px;
    order: -1;
    place-items: center;
  }
  .arrow.prev {
    left: 8px;
  }
  .arrow.next {
    right: 8px;
  }
  .visual .hero-img,
  .visual .mini-dc-hero-img,
  .visual .wall-box-hero-img,
  .visual .tasinabilir-hero-img {
    max-width: 100%;
    max-height: 100%;
    transform: none;
  }
  .slide-grid .lede {
    display: none;
  }
  h1 .thin {
    font-weight: 400;
    color: #d5ddff;
    font-size: 26px;
    line-height: 1.1;
  }
  .hero-bg {
    background: radial-gradient(1200px 600px at 20% 50%, rgba(108, 155, 255, 0.004), transparent 100%);
  }
}

@media (max-width: 720px) {
  .slider {
    position: relative;
    padding-bottom: 12px;
  }
  .slides {
    min-height: 0;
  }
  .slide {
    position: relative;
    inset: auto;
    display: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .slide.is-active {
    display: block;
  }
  .slide-grid {
    grid-template-columns: 1fr;
    height: auto !important;
    gap: 10px;
    padding-right: 0;
    padding-left: 0;
  }
  .visual {
    order: 1;
    height: auto;
    align-items: center;
  }
  .hero .copy {
    order: 2;
    padding-top: 0;
    text-align: center;
    transform: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .hero .copy h1 {
    margin: 0;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero .copy .btn {
    margin-top: 0;
  }
  .hero .slider .copy .btn {
    display: inline-block;
  }
  .hero h1 {
    line-height: 1.05;
  }
  .hero h1 .thin {
    font-size: 28px;
    line-height: 1.1;
  }
  .visual .hero-img,
  .visual .mini-dc-hero-img,
  .visual .wall-box-hero-img,
  .visual .tasinabilir-hero-img {
    max-width: 90%;
    max-height: 100%;
    transform: none;
  }
  .dots {
    position: static;
    margin-top: 10px;
    bottom: auto;
  }
}

.svc-card.box-shadow {
  box-shadow:
    0px 0px 20px 9px rgb(27 113 185 / 37%),
    0 6px 20px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
}

/* Grid */
.ic-sayfa-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px 60px;
  align-items: start;
  padding-bottom: 100px;
  padding-top: 40px;
  padding-right: 80px;
  padding-left: 80px;
}

.ic-sayfa-grid-2 {
  position: relative;
  display: grid;
  gap: 40px 60px;
  align-items: start;
  padding-bottom: 100px;
  padding-top: 40px;
  padding-right: 80px;
  padding-left: 80px;
}

.kutu-1 {
  position: relative;
  display: grid;
  gap: 40px 60px;
  align-items: start;
  padding-bottom: 0px;
  padding-top: 40px;
  padding-right: 0px;
  padding-left: 0px;
}

.ic-sayfa-grid img,
.ic-sayfa-grid picture,
.ic-sayfa-grid video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}
.ic-sayfa-grid .photo-card {
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
}
.ic-sayfa-grid .stack {
  display: grid;
  gap: 16px;
  align-content: start;
}
.ic-sayfa-grid .left-text {
  color: #cbd3e6;
}
.left-text h3 {
  position: relative;
  margin: 0 0 10px;
  padding-bottom: 8px;
  color: #9fb1df;
  font-weight: 500;
}
.left-text h3::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1px;
  background: linear-gradient(to right, rgba(150, 170, 210, 0.22), rgba(150, 170, 210, 0.22));
}

.ic-sayfa-grid .left-text p {
  margin: 0;
}
.ic-sayfa-grid .left-text ul {
  margin: 0;
  padding-left: 20px;
  color: #ffffff;
}
.ic-sayfa-grid .left-text ul li {
  margin: 0 0 10px;
  list-style: disc;
}

.ic-sayfa-products-grid ul li {
  margin: 0 0 6px;
  list-style: disc;
}

.ic-sayfa-grid .lede {
  color: #ffffff;
  max-width: 100%;
  font-weight: 100;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 0px;
}
.ic-sayfa-grid-2 .lede {
  color: #ffffff;
  max-width: 100%;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 0px;
}

.ic-sayfa-products-grid .lede {
  color: #ffffff;
  max-width: 100%;
  font-weight: 100;
  font-size: 16px;
}

.ic-sayfa-header {
  padding: 100px 80px 40px;
  max-width: 100%;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .ic-sayfa-header {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 40px;
    text-align: left;
  }
  .ic-sayfa-header .pill {
    margin-left: 0;
    margin-right: 0;
  }
}
.ic-sayfa-baslik {
  font-family: var(--heading-font);
  color: #9fb1df;
  font-weight: 100px;
  font-size: clamp(42px, 6vw, 62px);
  line-height: 1.1;
  margin: 0 0 12px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  padding-bottom: 20px;
  padding-top: 10px;
}
.ic-sayfa-baslik strong {
  font-family: var(--heading-font);
  color: #ffffff;
  font-weight: 400;
  font-size: clamp(42px, 6vw, 62px);
  line-height: 1.1;
  margin: 0 0 12px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  padding-bottom: 20px;
  padding-top: 10px;
}

p strong {
  color: #ffffff;
  font-weight: 800;
}
.ic-sayfa-testimonials-grid {
  padding-left: 40px;
  padding-right: 40px;
  column-count: 2;
  column-gap: 28px;
}

.dortlu-testimonials-grid {
  padding-left: 100px;
  padding-right: 100px;
  column-count: 2;
  column-gap: 28px;
  row-gap: 28px;
}

.dortlu-testimonials-grid-2 {
  padding-left: 100px;
  padding-right: 100px;
  column-count: 3;
  column-gap: 28px;
  row-gap: 28px;
}

/* Related products */
.related-products-block {
  padding-top: 20px;
  padding-bottom: 80px;
}

.related-products-title {
  margin: 0 80px 24px;
  font-weight: 400;
  font-size: 24px;
  color: #9fb1df;
  text-align: left;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  padding: 0 80px;
}

.related-products-grid .svc-card {
  min-height: 360px;
  padding-top: 16px;
  padding-bottom: 32px;
  border-radius: 20px;
}

.related-products-grid .svc-title {
  font-size: 16px;
}

.related-products-grid .svc-media {
  position: relative;
  min-height: 180px;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.related-products-grid .svc-media::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(150, 170, 210, 0.6), rgba(150, 170, 210, 0.15));
}

.related-products-grid .svc-img {
  height: 180px;
}

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

@media (max-width: 980px) {
  .related-products-title {
    margin-left: 40px;
    margin-right: 40px;
  }
  .related-products-grid {
    padding-left: 40px;
    padding-right: 40px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .related-products-grid {
    grid-template-columns: 1fr;
  }
}

/* Şarj istasyonu çözümleri: 3 sütunlu düzen */
.page-sarj-istasyonu-cozumleri .dortlu-testimonials-grid {
  column-count: 3;
  column-gap: 24px;
}

.page-sarj-istasyonu-cozumleri .ic-sayfa-grid {
  grid-template-columns: 1fr;
}

.page-sarj-istasyonu-cozumleri .t-name-2 .t-link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-sarj-istasyonu-cozumleri .t-name-2 .t-link::after {
  content: ' >';
  font-weight: 400;
  opacity: 0.8;
}

.page-sarj-istasyonu-cozumleri .t-name-2 .t-link:hover {
  color: #ffffff;
}

@media (max-width: 1100px) {
  .page-sarj-istasyonu-cozumleri .dortlu-testimonials-grid {
    column-count: 2;
  }
}

@media (max-width: 720px) {
  .page-sarj-istasyonu-cozumleri .dortlu-testimonials-grid {
    column-count: 1;
  }
}

/* AC Wallbox: mobile card layout refinements */
@media (max-width: 980px) {
  .page-product-detail .ic-sayfa-header {
    padding-left: 24px;
    padding-right: 24px;
  }
  .page-product-detail .iki-sutun-grid {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .page-product-detail .about-img {
    margin-bottom: 0 !important;
  }
  .page-product-detail .spot-ortali {
    padding: 10px 24px 28px;
    font-size: 18px;
  }
  .page-product-detail .dortlu-testimonials-grid {
    column-count: 1;
    padding-left: 16px;
    padding-right: 16px;
  }
  .page-product-detail .ic-sayfa-products-grid {
    padding-left: 16px;
    padding-right: 16px;
  }
  .page-product-detail .products-card-3 {
    grid-template-columns: 1fr !important;
    gap: 16px;
    padding: 18px 14px 22px;
  }
  .page-product-detail .products-card-3 .p-media {
    grid-column: 1;
    grid-row: 1;
    margin: 0 !important;
    text-align: center;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-product-detail .products-card-3 .copy {
    grid-column: 1;
    grid-row: 2;
    align-self: stretch !important;
    padding: 0 !important;
  }
  .page-product-detail .products-card-3 .product-title-2 {
    font-size: clamp(24px, 6.5vw, 30px);
    margin-bottom: 14px;
  }
  .page-product-detail .products-card-3 .product-img {
    width: min(100%, 360px);
    max-width: 100%;
    height: auto;
    max-height: 320px;
    margin: 0 auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
  }
  .page-product-detail .products-card-3 .lede,
  .page-product-detail .products-card-3 .lede-2col {
    font-size: 15px;
    line-height: 1.55;
  }
  .page-product-detail .products-card-3 .lede-2col {
    columns: 1;
  }
  .page-product-detail .products-card-3 ul {
    padding-inline-start: 20px;
  }
  .page-product-detail .products-card-3 .btn {
    margin-left: 0 !important;
  }
}

@media (max-width: 720px) {
  .page-product-detail .ic-sayfa-header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-product-detail .spot-ortali {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 17px;
  }
  .page-product-detail .products-card-3 {
    padding: 16px 12px 20px;
  }
  .page-product-detail .products-card-3 .product-img {
    width: min(100%, 300px);
    max-height: 260px;
  }
  .page-product-detail .products-card-3 .product-title-2 {
    font-size: clamp(22px, 7vw, 28px);
  }
}

/* In multi-column layout, vertical spacing comes from child margins */
.dortlu-testimonials-grid > * {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  margin-bottom: 28px;
}

.ic-sayfa-products-grid {
  padding-left: 40px;
  padding-right: 40px;
  column-count: 1;
  column-gap: 28px;
}

.product-img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
  display: block;
}

.products-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 2fr;
  align-items: start;
  gap: 18px;
  padding-left: 26px; /* min-height removed to allow content-driven height */
  padding-right: 30px;
  padding-bottom: 0px;
  padding-top: 0px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.02) 0%), rgba(10, 14, 28, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35) inset,
    0 6px 20px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.products-card-2 {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  align-items: start;
  gap: 18px;
  padding-left: 26px; /* min-height removed to allow content-driven height */
  padding-right: 30px;
  padding-bottom: 0px;
  padding-top: 0px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.02) 0%), rgba(10, 14, 28, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35) inset,
    0 6px 20px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.products-card-3 {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  align-items: start;
  gap: 18px;
  padding-left: 26px; /* min-height removed to allow content-driven height */
  padding-right: 30px;
  padding-bottom: 0px;
  padding-top: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.02) 0%), rgba(10, 14, 28, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0px 0px 20px 9px rgb(27 113 185 / 37%),
    0 6px 20px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.products-card-4 {
  position: relative;
  display: grid;
  grid-template-columns: 2.6fr 2fr;
  align-items: start;
  gap: 60px;
  padding: 40px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.02) 0%), rgba(10, 14, 28, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0px 0px 20px 9px rgb(27 113 185 / 37%),
    0 6px 20px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.products-card-5 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: start;
  gap: 60px;
  padding: 40px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.02) 0%), rgba(10, 14, 28, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0px 0px 20px 9px rgb(27 113 185 / 37%),
    0 6px 20px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.products-card-6 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: start;
  gap: 60px;
  padding: 40px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.02) 0%), rgba(10, 14, 28, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0px 0px 20px 9px rgb(27 113 185 / 37%),
    0 6px 20px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.products-card-6 .copy {
  padding-top: 0px;
  padding-bottom: 0px;
}

.products-card-2 .copy {
  padding-left: 40px;
}

.products-card::after {
  /* subtle diagonal band */
  content: '';
  position: absolute;
  right: -40px;
  top: -80px;
  width: 620px;
  height: 420px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  transform: rotate(-12deg);
  pointer-events: none;
}

.products-card-2::after {
  /* subtle diagonal band */
  content: '';
  position: absolute;
  right: -40px;
  top: -80px;
  width: 620px;
  height: 420px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  transform: rotate(-12deg);
  pointer-events: none;
}

.ic-sayfa-products-grid .products-card {
  break-inside: avoid;
  margin-bottom: 0px;
  width: 100%;
}

.ic-sayfa-testimonials-grid .testimonial-card {
  break-inside: avoid;
  margin-bottom: 28px;
  width: 100%;
}

@media (max-width: 980px) {
  .ic-sayfa-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ic-sayfa-testimonials-grid {
    column-count: 1;
  }
}
/* tek-sutun-grid removed (unused) */

/* Deprecated demo wrapper removed; images scale within grid via .ic-sayfa-grid rules */

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #cbd3e6;
  background:
    radial-gradient(1600px 800px at 30% 60%, rgba(108, 155, 255, 0.077), transparent 60%),
    radial-gradient(2000px 800px at 20% 40%, rgb(108 154 255 / 31%), transparent 80%), var(--bg);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding: 56px 0;
  align-items: start;
}
.footer-logo {
  height: 42px;
  width: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.45));
}
.company {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.2vw, 22px);
  color: #a8b8e6;
  font-weight: 600;
}
.office {
  margin: 10px 0 6px;
  font-weight: 600;
  color: #e6ecff;
}
.address {
  margin: 0 0 0px;
  font-style: normal;
  color: #b9c5de;
}
.tel a {
  color: #e6ecff;
}

.call-block {
  position: relative;
  padding-left: 12px;
}
.call-icon {
  display: inline-flex;
  align-items: center;
  opacity: 0.9;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.35));
}
.call-icon-img {
  display: block;
  height: clamp(36px, 6vw, 64px);
  width: auto;
}
.call-title {
  margin: 0 0 6px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #9fb1df;
}
.call-sub {
  margin: 0 0 12px;
  color: #cbd3e6;
}
.call-no {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: clamp(28px, 6vw, 56px);
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.footer-links a {
  color: #a8b8e6;
}
.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(79, 124, 255, 0.35);
  padding: 16px 0;
  text-align: left;
  color: #9fb1df;
}
.footer-bottom .container {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 28px;
}
.footer-bottom .footer-links {
  margin-top: 0;
}
.footer-bottom small {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 720px) {
  .footer-bottom {
    text-align: center;
  }
  .footer-bottom .container {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-height: 0;
  }
  .footer-bottom .footer-links {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .footer-bottom small {
    position: static;
    transform: none;
    text-align: center;
  }
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  z-index: 4500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(79, 124, 255, 0.55);
  background: rgba(7, 16, 36, 0.9);
  color: #eaf0ff;
  font-size: 20px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
body.has-cookie-banner .scroll-top {
  bottom: calc(98px + env(safe-area-inset-bottom, 0px));
}
.scroll-top:hover {
  background: rgba(24, 46, 96, 0.95);
  border-color: rgba(79, 124, 255, 0.85);
}
.scroll-top:focus-visible {
  outline: 2px solid #9fb1df;
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-top {
    padding: 40px;
  }
}

@media (max-width: 720px) {
  .scroll-top {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    width: 42px;
    height: 42px;
  }
  body.has-cookie-banner .scroll-top {
    bottom: calc(124px + env(safe-area-inset-bottom, 0px));
  }
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4600;
  background: linear-gradient(90deg, #1a1c21 0%, #21242d 100%);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.28);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 22px calc(12px + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner__text {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 28px;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background 0.2s ease;
}

.cookie-banner__btn--accept {
  background: #0f58ba;
}

.cookie-banner__btn--reject {
  background: #0a4ca0;
}

.cookie-banner__btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.cookie-banner__btn:focus-visible {
  outline: 2px solid #9fb1df;
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cookie-banner__text {
    font-size: 14px;
  }

  .cookie-banner__actions {
    justify-content: flex-end;
  }

  .cookie-banner__btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 640px) {
  .cookie-banner__actions {
    width: 100%;
    justify-content: space-between;
  }

  .cookie-banner__btn {
    flex: 1 1 auto;
    text-align: center;
  }
}

/* About section */
.about {
  position: relative;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  background: radial-gradient(2000px 1000px at 16% 40%, rgba(108, 154, 255, 0.4), transparent 60%), var(--bg);
}
.about::before,
.services::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(160, 180, 230, 0.28), rgba(160, 180, 230, 0.05));
  pointer-events: none;
}
.about::before {
  left: 150px;
  right: 150px;
}
.about::after {
  right: 150px;
}
.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 100px;
  padding-top: 100px;
  padding-right: 40px;
  padding-left: 40px;
}

.about-grid > .photo-card,
.about-grid > .copy {
  grid-column: 1 / -1;
}

.about-grid > .photo-card {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.about-grid > .copy {
  padding-right: 0px;
}

.iki-sutun-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 100px;
  padding-top: 60px;
  padding-right: 0px;
  padding-left: 0px;
}

/* Mobile layout adjustments for Ürünler page */
@media (max-width: 980px) {
  /* Header intro two-column to one-column */
  .iki-sutun-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* Product cards: single column */
  .products-card,
  .products-card-2 {
    grid-template-columns: 1fr !important;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Ensure image above text for alternating cards */
  .products-card-2 .p-media {
    grid-column: 1;
    grid-row: 1;
  }

  .products-card-3 .p-media {
    grid-column: 1;
    grid-row: 1;
    text-align: center;
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .products-card-2 .copy {
    grid-column: 1;
    grid-row: 2;
    padding-left: 0;
  }

  /* Comfortable image sizing on mobile */
  .product-img {
    width: 100%;
    height: auto;
  }
}

.about-grid::before {
  content: '';
  position: absolute;
  left: -10%;
  top: -80px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(200, 220, 255, 0.1),
    0 0 0 40px rgba(120, 150, 220, 0.08) inset;
  opacity: 0.5;
  pointer-events: none;
  animation: about-float 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes about-float {
  0% {
    transform: translateY(-16px);
  }
  50% {
    transform: translateY(16px);
  }
  100% {
    transform: translateY(-16px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-grid::before {
    animation: none;
  }
}
.about .copy {
  padding-left: 0px;
  padding-right: 40px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 0px;
}
.about .photo-card {
  margin: 0;
  padding: 0;
  position: relative;
  border-radius: 0px;
  overflow: visible;
  background: #0a0f1d00;
  z-index: 0;
  align-self: center;
}
.about-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.ic-sayfa-header::before {
  content: '';
  position: absolute;
  left: -10%;
  top: 0px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(200, 220, 255, 0.1),
    0 0 0 40px rgba(120, 150, 220, 0.08) inset;
  opacity: 0.5;
  pointer-events: none;
  animation: about-float 6s ease-in-out infinite;
  will-change: transform;
  z-index: 0;
}
.about .ic-sayfa-grid > * {
  position: relative;
  z-index: 1;
}

.only-desktop {
  display: inline;
}

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

@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr !important;
    padding-right: 40px;
    padding-left: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 40px;
  }
  .about .copy {
    padding-right: 0px;
    text-align: left;
  }
}

.head-hizmetler {
  text-align: center;
  margin: 0 auto 32px;
  padding-top: 0px;
  padding-bottom: 20px;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 32px);
  margin: 12px 0 0;
  color: #9fb1df;
}

.spot-ortali {
  text-align: center;
  margin: 0 auto 32px;
  padding-top: 20px;
  padding-bottom: 60px;
  margin: 12px 0 0;
  color: #ffffff;
  font-weight: 400;
  font-size: 20px;
  padding-right: 160px;
  padding-left: 160px;
  letter-spacing: 0.2px;
}

.ev-tarife-wrap {
  padding: 0 48px 48px;
}

.ev-tarife-card {
  max-width: 980px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 18px;
  overflow: hidden;
  background: #eef2f8;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(17, 31, 85, 0.08);
}

.ev-tarife-title {
  margin: 0;
  padding: 24px 24px;
  background: #131f57;
  color: #ffffff;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 32px);
  line-height: 1.2;
  letter-spacing: 0.2px;
}

.ev-tarife-table {
  width: 100%;
  border-collapse: collapse;
}

.ev-tarife-group th {
  text-align: left;
  padding: 28px 30px 14px;
  font-size: clamp(15px, 1.45vw, 24px);
  font-weight: 700;
  color: #1f2f65;
}

.ev-tarife-group th:last-child {
  text-align: right;
  white-space: nowrap;
}

.ev-tarife-group--green th {
  border-bottom: 3px solid #48a263;
}

.ev-tarife-group--red th {
  border-bottom: 3px solid #d84d45;
}

.ev-tarife-table td {
  padding: 18px 30px 26px;
  font-size: clamp(15px, 1.35vw, 22px);
  color: #33456f;
}

.ev-tarife-table td:last-child {
  text-align: right;
  white-space: nowrap;
  color: #1f2f65;
}

.ev-tarife-table td strong {
  color: #1f2f65;
  font-weight: 700;
}

.privacy-policy-content {
  margin-top: 14px;
}

.privacy-policy-content h2 {
  margin: 26px 0 10px;
  color: #9fb1df;
  font-family: var(--heading-font);
  font-size: clamp(24px, 2.6vw, 24px);
  font-weight: 400;
  line-height: 1.25;
}

.privacy-policy-content .lede {
  margin-top: 0;
  margin-bottom: 12px;
  max-width: 100%;
  font-size: 16px;
  line-height: 1.72;
}

.privacy-policy-list {
  margin: 8px 0 18px;
  padding-left: 26px;
  color: #cbd3e6;
}

.privacy-policy-list li {
  margin: 0 0 10px;
  line-height: 1.65;
}

/* Hakkımızda: mobile düzenlemeler */
.page-hakkimizda {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-hakkimizda > main {
  flex: 1 0 auto;
}
.page-gizlilik-politikasi,
.page-yasal-duyurular {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-gizlilik-politikasi > main,
.page-yasal-duyurular > main {
  flex: 1 0 auto;
}
.page-hakkimizda .ic-sayfa-header {
  position: relative;
}
.page-hakkimizda .ic-sayfa-grid {
  grid-template-columns: 1fr;
}
.page-hakkimizda .testimonial-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 18px;
  justify-items: center;
  text-align: center;
}
.page-hakkimizda .t-left {
  width: 100%;
  align-items: center;
}
.page-hakkimizda .t-name,
.page-hakkimizda .t-quote {
  text-align: center;
}

/* İnsan Kaynakları */
.page-insan-kaynaklari .testimonial-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 30px;
  box-shadow:
    0px 0px 20px 9px rgb(27 113 185 / 19%),
    0 6px 20px rgba(0, 0, 0, 28.25);
}

@media (min-width: 721px) {
  .page-insan-kaynaklari .testimonial-card {
    justify-items: start;
    text-align: left;
  }
  .page-insan-kaynaklari .t-left {
    align-items: flex-start;
  }
  .page-insan-kaynaklari .t-name,
  .page-insan-kaynaklari .t-quote {
    text-align: left;
  }
}

@media (max-width: 980px) {
  .page-hakkimizda .ic-sayfa-header {
    padding: 36px 32px 16px;
  }
  .page-hakkimizda .ic-sayfa-header::before {
    width: 480px;
    height: 480px;
    left: 50%;
    margin-left: -240px;
    opacity: 0.35;
  }
}

@media (max-width: 720px) {
  .page-insan-kaynaklari .ic-sayfa-header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-insan-kaynaklari .ic-sayfa-grid-2 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-insan-kaynaklari .testimonials {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-insan-kaynaklari .spot-ortali {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-hakkimizda .ic-sayfa-grid {
    padding: 24px 18px 60px;
    gap: 28px;
  }
  .page-hakkimizda .ic-sayfa-grid .stack {
    gap: 14px;
  }
  .page-hakkimizda .head-hizmetler {
    padding-bottom: 20px;
    font-size: 28px;
  }
  .page-hakkimizda .spot-ortali {
    padding: 10px 18px 36px;
    font-size: 18px;
  }
  .page-hakkimizda .ic-sayfa-testimonials-grid {
    padding-left: 18px;
    padding-right: 18px;
  }
  .page-hakkimizda .testimonials {
    padding: 60px 0;
  }
  .page-hakkimizda .testimonial-card,
  .page-insan-kaynaklari .testimonial-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 20px;
    justify-items: center;
    text-align: center;
  }
  .page-hakkimizda .t-avatar,
  .page-insan-kaynaklari .t-avatar {
    width: 72px;
    height: 72px;
    margin-bottom: 0;
  }
  .page-hakkimizda .t-left,
  .page-insan-kaynaklari .t-left {
    width: 100%;
    gap: 10px;
    align-items: center;
  }
  .page-hakkimizda .t-name,
  .page-hakkimizda .t-quote,
  .page-insan-kaynaklari .t-name,
  .page-insan-kaynaklari .t-quote {
    text-align: center;
  }
  .page-hakkimizda .kutu-1 .t-quote,
  .page-insan-kaynaklari .kutu-1 .t-quote {
    padding-right: 0;
  }
}
/* Partners section */
.partners {
  position: relative;
  padding: 60px 100px 60px;
  background: radial-gradient(1600px 800px at 50% 20%, rgba(25, 60, 110, 0.35) 0%, transparent 60%), var(--bg);
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0px;
  align-items: start;
}
.partners-card {
  text-align: center;
  padding: 12px 12px 8px;
}
.partners .img-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 160px;
}
.partners-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-top: 0px;
}

@media (max-width: 980px) {
  .partners {
    padding: 20px 0px 20px;
  }
  .partners-grid {
    grid-template-columns: 1fr;
  }
  .partners .img-wrap {
    min-height: auto;
  }
}
/* Sales section */
.sales {
  position: relative;
  padding: 0px;
  background:
    radial-gradient(1600px 800px at 30% 60%, rgba(108, 155, 255, 0.077), transparent 60%),
    radial-gradient(2000px 800px at 100% 40%, rgba(108, 155, 255, 0.588), transparent 80%), var(--bg);
}
.sales::before,
.services::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(160, 180, 230, 0.28), rgba(160, 180, 230, 0.05));
  pointer-events: none;
}
.sales::before {
  left: 150px;
  right: 150px;
}
.sales::after {
  right: 150px;
}
.sales-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  padding-bottom: 100px;
  padding-top: 100px;
  padding-right: 40px;
  padding-left: 60px;
}

.sales-grid-2 {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: stretch;
  padding-bottom: 60px;
  padding-top: 100px;
  padding-right: 0px;
  padding-left: 60px;
}
.sales-grid-2 .photo-card {
  align-self: stretch;
  height: 100%;
  overflow: hidden;
}

.sales-grid .photo-card {
  align-self: stretch;
  height: 100%;
  overflow: hidden;
}
.sales-grid::before {
  content: '';
  position: absolute;
  left: 18%;
  top: 300px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(200, 220, 255, 0.1),
    0 0 0 40px rgba(120, 150, 220, 0.08) inset;
  opacity: 0.5;
  pointer-events: none;
  animation: about-float 6s ease-in-out infinite;
  will-change: transform;
}
.sales .copy {
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 0px;
}
.sales .photo-card {
  margin: 0;
  padding-right: 0px;
  padding-left: 0px;
  position: relative;
  border-radius: 0px;
  overflow: visible;
  background: #0a0f1d00;
  z-index: 0;
  align-self: center;
}
.sales .photo-card--flush-left {
  margin-left: -80px;
  width: calc(100% + 80px);
}
.ic-sayfa-header .photo-card--flush-left {
  margin-left: -80px;
  width: calc(100% + 80px);
}
.sales-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  margin-top: 0;
  margin-right: 0;
}

@media (max-width: 980px) {
  .sales-grid {
    grid-template-columns: 1fr !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 40px;
  }
  .sales-grid > .copy {
    padding-left: var(--mobile-page-gutter) !important;
    padding-right: var(--mobile-page-gutter) !important;
  }
  .sales .photo-card--flush-left {
    margin-left: 0;
    width: 100%;
  }
  .ic-sayfa-header .photo-card--flush-left {
    margin-left: 0;
    width: 100%;
  }
  .sales .copy {
    padding-right: 40px;
    padding-left: 40px;
  }

  /* Faaliyet alanlari intro: image first, text second on mobile */
  .page-faaliyet-alanlari .ic-sayfa-header .sales-grid-2,
  .page-faaliyet-alanlari .ic-sayfa-header .iki-sutun-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-faaliyet-alanlari .ic-sayfa-header .sales-grid-2 > figure,
  .page-faaliyet-alanlari .ic-sayfa-header .iki-sutun-grid > figure {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    justify-self: stretch !important;
  }

  .page-faaliyet-alanlari .ic-sayfa-header .sales-grid-2 > .copy,
  .page-faaliyet-alanlari .ic-sayfa-header .iki-sutun-grid > .copy {
    grid-column: 1;
    grid-row: 2;
    justify-self: stretch;
    text-align: left;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Batarya Teknolojileri product cards: image on top, text below */
  .page-batarya-teknolojileri .products-card-4 {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 24px 20px;
  }

  .page-batarya-teknolojileri .products-card-4 > .p-media,
  .page-batarya-teknolojileri .products-card-4 > figure {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    justify-self: stretch !important;
  }

  .page-batarya-teknolojileri .products-card-4 > .copy {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
    justify-self: stretch;
  }

  /* Network Operatorlugu product cards: image on top, text below */
  .page-network-operatorluk .products-card-4,
  .page-network-operatorluk .products-card-5 {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 24px 20px;
  }

  .page-network-operatorluk .products-card-4 > .p-media,
  .page-network-operatorluk .products-card-4 > figure,
  .page-network-operatorluk .products-card-5 > .p-media,
  .page-network-operatorluk .products-card-5 > figure {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    justify-self: stretch !important;
  }

  .page-network-operatorluk .products-card-4 > .copy,
  .page-network-operatorluk .products-card-5 > .copy {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
    justify-self: stretch;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Services section */
.services {
  position: relative;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  background:
    radial-gradient(1600px 800px at 30% 60%, rgba(108, 155, 255, 0.077), transparent 60%),
    radial-gradient(2000px 800px at 10% 40%, rgba(108, 154, 255, 0.5), transparent 80%), var(--bg);
}
.services::before,
.services::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(160, 180, 230, 0.28), rgba(160, 180, 230, 0.05));
  pointer-events: none;
}
.services::before {
  left: 150px;
  right: 150px;
}
.services::after {
  right: 150px;
}
.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 100px;
  padding-top: 100px;
  padding-right: 40px;
  padding-left: 40px;
}
.services-grid::before {
  content: '';
  position: absolute;
  left: -10%;
  top: -80px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(200, 220, 255, 0.1),
    0 0 0 40px rgba(120, 150, 220, 0.08) inset;
  opacity: 0.5;
  pointer-events: none;
  animation: about-float 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes services-float {
  0% {
    transform: translateY(-12px);
  }
  50% {
    transform: translateY(12px);
  }
  100% {
    transform: translateY(-12px);
  }
}
.services .copy {
  padding-left: 0px;
  padding-right: 60px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 0px;
}
.services .photo-card {
  margin: 0;
  padding-right: 0px;
  position: relative;
  border-radius: 0px;
  overflow: visible;
  background: #0a0f1d00;
  z-index: 0;
  align-self: center;
}
.services-img {
  display: block;
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  margin-top: 0;
  margin-left: 0;
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: 1fr !important;
    padding-right: 40px;
    padding-left: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 40px;
  }
  .services .copy {
    padding-right: 0px;
  }
}

/* Network section */
.network {
  position: relative;
  padding: 0px;
  background:
    radial-gradient(1600px 800px at 30% 60%, rgba(108, 155, 255, 0.077), transparent 60%),
    radial-gradient(2000px 800px at 60% 40%, rgba(108, 154, 255, 0.25), transparent 80%), var(--bg);
}
.network::before,
.services::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(160, 180, 230, 0.28), rgba(160, 180, 230, 0.05));
  pointer-events: none;
}
.network::before {
  left: 150px;
  right: 150px;
}
.network::after {
  right: 150px;
}
.network-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 100px;
  padding-top: 100px;
  padding-right: 40px;
  padding-left: 40px;
}
.network-grid::before {
  content: '';
  position: absolute;
  left: 18%;
  top: 300px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(200, 220, 255, 0.1),
    0 0 0 40px rgba(120, 150, 220, 0.08) inset;
  opacity: 0.5;
  pointer-events: none;
  animation: about-float 6s ease-in-out infinite;
  will-change: transform;
}
.network .copy {
  padding: 24px 0;
}
.network .photo-card {
  margin: 0;
  padding: 0;
  position: relative;
  border-radius: 0px;
  overflow: visible;
  background: #0a0f1d00;
  box-shadow: none;
  isolation: isolate;
}
.network-img {
  display: block;
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  margin-top: 0;
  margin-right: 0;
}

@media (max-width: 980px) {
  .network-grid {
    grid-template-columns: 1fr !important;
    padding-right: 40px;
    padding-left: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 40px;
  }
  .network .copy {
    padding-right: 0px;
  }
}

/* Mimari section */
.mimari {
  position: relative;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  background:
    radial-gradient(1600px 800px at 30% 60%, rgba(108, 155, 255, 0.077), transparent 60%),
    radial-gradient(2000px 800px at 20% 40%, rgba(108, 154, 255, 0.5), transparent 80%), var(--bg);
}
.mimari::before,
.services::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(160, 180, 230, 0.28), rgba(160, 180, 230, 0.05));
  pointer-events: none;
}
.mimari::before {
  left: 150px;
  right: 150px;
}
.mimari::after {
  right: 150px;
}
.mimari-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 100px;
  padding-top: 100px;
  padding-right: 40px;
  padding-left: 40px;
}
.mimari-grid::before {
  content: '';
  position: absolute;
  left: -10%;
  top: -80px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(200, 220, 255, 0.1),
    0 0 0 40px rgba(120, 150, 220, 0.08) inset;
  opacity: 0.5;
  pointer-events: none;
  animation: about-float 6s ease-in-out infinite;
  will-change: transform;
}
.mimari .copy {
  padding-left: 0px;
  padding-right: 60px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 0px;
}
.mimari .photo-card {
  margin: 0;
  padding: 0;
  position: relative;
  border-radius: 0px;
  overflow: visible;
  background: #0a0f1d00;
  z-index: 0;
  align-self: center;
}
.mimari-img {
  display: block;
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  margin: 0;
}

@media (max-width: 980px) {
  .mimari-grid {
    grid-template-columns: 1fr !important;
    padding-right: 40px;
    padding-left: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 40px;
  }
  .mimari .copy {
    padding-right: 0px;
  }
}
/* Egitim section */
.egitim {
  position: relative;
  padding: 0px;
  background:
    radial-gradient(1600px 800px at 30% 60%, rgba(108, 155, 255, 0.077), transparent 60%),
    radial-gradient(2000px 800px at 60% 40%, rgba(108, 154, 255, 0.4), transparent 80%), var(--bg);
}
.egitim::before,
.services::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(160, 180, 230, 0.28), rgba(160, 180, 230, 0.05));
  pointer-events: none;
}
.egitim::before {
  left: 150px;
  right: 150px;
}
.egitim::after {
  right: 150px;
}
.egitim-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 100px;
  padding-top: 100px;
  padding-right: 40px;
  padding-left: 40px;
}
.egitim-grid::before {
  content: '';
  position: absolute;
  left: 18%;
  top: 300px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(13, 24, 42, 0.1),
    0 0 0 40px rgba(120, 150, 220, 0.08) inset;
  opacity: 0.5;
  pointer-events: none;
  animation: about-float 6s ease-in-out infinite;
  will-change: transform;
}
.egitim .copy {
  padding: 24px 0;
}
.egitim .photo-card {
  margin: 0;
  padding: 0;
  position: relative;
  border-radius: 0px;
  overflow: visible;
  background: #0a0f1d00;
  box-shadow: none;
  isolation: isolate;
}
.egitim-img {
  display: block;
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  margin: 0;
}

@media (max-width: 980px) {
  .egitim-grid {
    grid-template-columns: 1fr !important;
    padding-right: 40px;
    padding-left: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 40px;
  }
  .egitim .copy {
    padding-right: 0px;
  }
}

/* FAQ section */
.faq {
  position: relative;
  padding: 0px;
  background:
    radial-gradient(1600px 800px at 30% 60%, rgba(108, 155, 255, 0.077), transparent 60%),
    radial-gradient(2000px 800px at 60% 40%, rgba(108, 154, 255, 0.25), transparent 80%), var(--bg);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 100px;
  padding-top: 100px;
  padding-right: 40px;
  padding-left: 40px;
}
.faq-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 100px;
  padding-top: 100px;
  padding-right: 40px;
  padding-left: 40px;
}
.faq-media {
  align-self: start;
  overflow: hidden;
  box-shadow: none;
}
.faq-img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 48px 18px 20px;
  position: relative;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:after {
  content: '\276F';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.2s ease;
  opacity: 0.8;
}
.faq-item[open] summary:after {
  transform: translateY(-50%) rotate(270deg);
}
.faq-item .answer {
  padding: 0 20px 18px;
  color: #b7c1d7;
}
.faq .photo-card {
  margin: 0;
  padding: 0;
  position: relative;
  border-radius: 0px;
  overflow: visible;
  background: #0a0f1d00;
  box-shadow: none;
  isolation: isolate;
}

@media (max-width: 1100px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-media {
    order: -1;
  }
}

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

/* Reversed layout variant (unused) */
/* .services--reverse .services-grid { grid-template-columns: 1.1fr 0.9fr; }
.services--reverse .services-grid::before { left: auto; right: 18%; } */

/* Section separator line (full-bleed with glow) */
@property --sep-x {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 20%;
}
.section-sep {
  position: relative;
}
/* top separator uses ::before so ::after remains free for other uses */
.section-sep::before,
.section-sep::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0; /* center via stretch instead of 100vw */
  transform: none;
  width: auto;
  height: 1px;
  pointer-events: none;
  z-index: 0;
}
.section-sep::before {
  top: -1px;
  --sep-x: 20%;
  background:
    radial-gradient(300px 60px at var(--sep-x) 25%, rgba(118, 220, 255, 0.9), rgba(118, 220, 255, 0) 60%),
    linear-gradient(0deg, rgba(210, 220, 240, 0.18), rgba(8, 12, 18, 0) 80%),
    linear-gradient(to right, rgba(150, 170, 210, 0.22), rgba(150, 170, 210, 0.22));
  background-repeat: no-repeat;
  animation: sep-glow 6s ease-in-out infinite;
}

@keyframes sep-glow {
  0% {
    --sep-x: 0%;
  }
  50% {
    --sep-x: 100%;
  }
  100% {
    --sep-x: 0%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-sep::before {
    animation: none;
  }
}

/* (Removed unused Sales-Services and Products sections) */
.section-sep::after {
  bottom: -1px;
  background:
    radial-gradient(400px 40px at 20% 25%, rgba(118, 220, 255, 0.9), rgba(118, 220, 255, 0) 60%),
    linear-gradient(180deg, rgba(210, 220, 240, 0.18), rgba(8, 12, 18, 0) 80%),
    linear-gradient(to right, rgba(150, 170, 210, 0.22), rgba(150, 170, 210, 0.22));
}

/* removed demo drop-shadow block */

/* removed demo :before/:after */

/* removed demo drop-shadow text styling */

/* removed legacy perspective helpers */

/* removed unused .box-shadow helper */
.light-effect {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(1600px 800px at 20% 10%, #112348 0%, transparent 60%), var(--bg);
  filter: blur(80px);
  pointer-events: none;
}

/* light-effect bottom variant removed (unused) */

/* Testimonials section */
.testimonials {
  position: relative;
  padding: 80px 0 80px;
  background: radial-gradient(1600px 800px at 70% 10%, rgba(25, 60, 110, 0.686) 0%, transparent 60%), var(--bg);
}

.about .testimonials {
  padding-top: 0px;
  padding-bottom: 100px;
  background: none;
}

@media (max-width: 980px) {
  .testimonials {
    background: radial-gradient(1600px 800px at 70% 60%, rgba(25, 60, 110, 0.686) 0%, transparent 60%), var(--bg);
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 980px) {
  .testimonials-2 {
    background: radial-gradient(1600px 800px at 70% 60%, rgba(25, 60, 110, 0.686) 0%, transparent 60%), var(--bg);
  }
}

.testimonials-2 {
  position: relative;
  padding: 80px 0 80px;
  background: radial-gradient(1600px 800px at 10% 60%, rgba(25, 60, 110, 0.686) 0%, transparent 60%), var(--bg);
}

.testimonials-3 {
  position: relative;
  padding: 80px 0 80px;
  background: radial-gradient(2000px 1200px at 50% 30%, rgba(25, 60, 110, 0.686) 0%, transparent 80%), var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-left: 40px;
  padding-right: 40px;
}

.testimonials--stacked .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.testimonials--stacked .t-avatar {
  margin-bottom: 12px;
}
.testimonials--stacked .t-left {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.testimonials--stacked .t-name {
  min-height: 32px;
}
.testimonials--stacked .t-left .btn {
  margin-top: auto;
  align-self: center;
}
.testimonial-card {
  position: relative;
  display: block;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 26px 28px; /* min-height removed to allow content-driven height */
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.02) 0%), rgba(10, 14, 28, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35) inset,
    0 6px 20px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  justify-items: center;
  text-align: center;
}

.kutu-1 .testimonial-card {
  background: none;
  box-shadow:
    0px 0px 20px 9px rgb(27 113 185 / 19%),
    0 6px 20px rgba(0, 0, 0, 28.25);
}

.testimonial-card-2 {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 26px 28px; /* min-height removed to allow content-driven height */
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.02) 0%), rgba(10, 14, 28, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35) inset,
    0 6px 20px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.testimonial-card-2.align-center {
  align-items: start;
}

.testimonial-card-2 .t-avatar {
  margin-bottom: 0;
  align-self: start;
}

.testimonial-card-2 .t-left-2 {
  width: 100%;
  gap: 10px;
}

.testimonial-card-2 .t-name-2,
.testimonial-card-2 .lede {
  text-align: left;
}

.testimonial-card-2 .lede {
  max-width: none;
  margin: 0;
}
.testimonial-card::after {
  /* subtle diagonal band */
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 340px;
  height: 270px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  transform: rotate(-12deg);
  pointer-events: none;
}

.kutu-1 .testimonial-card::after {
  /* subtle diagonal band */

  right: 80px;
  top: -80px;
}

.testimonial-card-2::after {
  /* subtle diagonal band */
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 320px;
  height: 220px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  transform: rotate(-12deg);
  pointer-events: none;
}

.t-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.t-left-2 {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonial-card .t-left {
  height: 100%;
}
.testimonial-card .t-left .btn {
  margin-top: auto;
  align-self: flex-start;
}
.testimonials--stacked .testimonial-card .t-left .btn {
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}
.t-quote {
  margin: 0;
  color: #ffffff;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.kutu-1 .t-quote {
  margin: 0;
  color: #cbd3e6;
  font-weight: 300;
  padding-right: 30px;
  font-size: 18px;
}
.t-name {
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.2px;
  font-size: 20px;
}

.t-name-2 {
  font-weight: 200;
  color: #ffffff;
  letter-spacing: 0.2px;
  font-size: 20px;
}

/* Underline for secondary testimonial titles */
.testimonials .t-name-2 {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 6px;
}
.testimonials .t-name-2::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
}

/* Thin underline for titles inside testimonial cards */
.testimonials .t-name {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 6px;
}
.testimonials .t-name::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
}

.t-avatar {
  width: 70px;
  height: 70px;
  margin-bottom: 12px;
  border-radius: 999px;
  border: 0px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, #9fb1df, #566079a7);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow:
    0px 0px 20px 9px rgb(27 113 185 / 40%),
    0 6px 20px rgba(0, 0, 0, 11.25);
}

.kutu-1 .t-avatar {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  border: 0px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, #9fb1df, #566079a7);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow:
    0px 0px 20px 9px rgb(27 113 185 / 40%),
    0 6px 20px rgba(0, 0, 0, 11.25);
}
.t-avatar .t-icon {
  width: 64%;
  height: 64%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

@media (max-width: 980px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .testimonial-card {
    min-height: 140px;
    text-align: center;
  }
  .testimonial-card .t-avatar {
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial-card .t-left {
    align-items: center;
    text-align: center;
  }
  .testimonial-card .t-left .btn {
    align-self: center;
  }
  .kutu-1 .t-quote {
    padding-right: 0;
  }
  .testimonial-card-2 {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 20px;
    justify-items: center;
    text-align: center;
  }
  .testimonial-card-2 .t-avatar {
    width: 62px;
    height: 62px;
    justify-self: center;
  }
  .testimonial-card-2 .t-left-2 {
    align-items: center;
  }
  .testimonial-card-2 .t-name-2,
  .testimonial-card-2 .lede {
    text-align: center;
  }
}

@media (max-width: 980px) {
  .page-batarya-teknolojileri .testimonials {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .page-batarya-teknolojileri .testimonials-grid,
  .page-batarya-teknolojileri .ic-sayfa-products-grid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-network-operatorluk .testimonials {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .page-network-operatorluk .ic-sayfa-products-grid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-network-operatorluk .ev-tarife-wrap {
    padding: 0 0 28px;
  }

  .page-network-operatorluk .ev-tarife-title {
    padding: 24px 18px;
    font-size: clamp(22px, 5.2vw, 30px);
  }

  .page-network-operatorluk .ev-tarife-group th {
    padding: 18px 16px 12px;
    font-size: clamp(13px, 2.8vw, 16px);
  }

  .page-network-operatorluk .ev-tarife-table td {
    padding: 14px 16px 18px;
    font-size: clamp(13px, 2.7vw, 16px);
  }

  .page-teknik-servis .testimonials {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .page-teknik-servis .ic-sayfa-products-grid,
  .page-teknik-servis .dortlu-testimonials-grid-2 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .page-teknik-servis .products-card-6 {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }

  .page-teknik-servis .products-card-6 .p-media {
    grid-column: 1;
    grid-row: 1;
  }

  .page-teknik-servis .products-card-6 .copy {
    grid-column: 1;
    grid-row: 2;
  }

  .page-teknik-servis .dortlu-testimonials-grid-2 .testimonial-card-2 {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 12px;
  }

  .page-teknik-servis .dortlu-testimonials-grid-2 .testimonial-card-2 .t-avatar {
    justify-self: center;
  }

  .page-teknik-servis .dortlu-testimonials-grid-2 .testimonial-card-2 .t-left-2 {
    align-items: center;
  }

  .page-teknik-servis .dortlu-testimonials-grid-2 .testimonial-card-2 .lede {
    text-align: center;
  }

  .page-teknik-servis .dortlu-testimonials-grid-2 {
    column-count: 1;
    column-gap: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .page-teknik-servis #testimonials > .container > .lede {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-teknik-servis .dortlu-testimonials-grid-2 > .lede {
    text-align: center !important;
  }
}

@media (max-width: 640px) {
  .page-network-operatorluk .ev-tarife-group th:last-child,
  .page-network-operatorluk .ev-tarife-table td:last-child {
    min-width: 110px;
  }
}

/* Services Carousel */
.services-products {
  position: relative;
  padding: 80px 0 80px;
  background: radial-gradient(1600px 800px at 30% 10%, rgba(25, 60, 110, 0.686) 0%, transparent 60%), var(--bg);
}

/* Modal (Talep Formu) */
.modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
}
.modal.is-open {
  display: block;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.modal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 760px);
  max-height: 88vh;
  overflow: auto;
  padding: 22px 22px 28px;
  border-radius: 12px;
  background: rgba(15, 20, 35, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.modal-title {
  margin: 6px 0 16px;
  font-size: 22px;
  color: #dfe7ff;
  font-weight: 500;
}
.modal-close {
  position: absolute;
  right: 10px;
  top: 6px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 20px;
  line-height: 1;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Kurulum rehberi tek-sütun düzeni */
#kurulum-rehberi .ic-sayfa-header {
  padding: 100px 80px 40px;
  max-width: 100%;
}
#kurulum-rehberi .stack {
  padding: 0 80px 60px;
  gap: 28px;
}
#kurulum-rehberi .left-text {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 18px 18px 14px;
  margin-bottom: 20px;
}
#kurulum-rehberi .left-text h3 {
  margin-top: 0;
  margin-bottom: 10px;
}
#kurulum-rehberi .left-text ul {
  margin: 8px 0 12px;
}

@media (max-width: 768px) {
  #kurulum-rehberi .ic-sayfa-header {
    padding: 40px 20px 10px;
  }
  #kurulum-rehberi .stack {
    padding: 0 20px 40px;
  }
}

.talep-form {
  display: grid;
  gap: 14px;
}
.talep-form input[type='text'],
.talep-form input[type='email'],
.talep-form input[type='tel'],
.talep-form textarea {
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #fff;
  color: #0b1224;
  padding: 14px 16px;
  font-size: 15px;
}
.talep-form textarea {
  resize: vertical;
  min-height: 120px;
}
.talep-form .chk {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd3e6;
  font-size: 14px;
}
.talep-form .btn-submit {
  width: 100%;
  display: inline-block;
  margin-top: 8px;
}
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
}

@media (max-width: 600px) {
  .modal-dialog {
    width: min(94vw, 560px);
    padding: 18px 16px 22px;
  }
}
/* Product list: one item per row (copy left, image right) */
.product-list {
  display: grid;
  gap: 60px;
  padding-left: 0px;
  padding-right: 0px;
}
.product-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0px;
  align-items: center;
  position: relative;
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 0px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0) 60%), rgba(10, 14, 28, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 0px;
  border-right: 0px;
}

.product-row::before {
  top: -30px;
}
.product-row::after {
  bottom: -30px;
}
.product-row .copy {
  padding: 0;
}
.product-row .p-media {
  position: relative;
  margin: 0;
}
.product-row .p-media .svc-img {
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
}
.product-title {
  font-family: var(--heading-font);
  font-weight: 200;
  font-size: clamp(32px, 4.5vw, 42px);
  color: #9fb1df;
  margin: 0 0 10px;
}

.product-title-2 {
  font-family: var(--heading-font);
  font-weight: 200;
  font-size: clamp(32px, 4.5vw, 32px);
  color: #9fb1df;
  margin: 0 0 20px;
}
.product-title-2.title-underline::after {
  content: '';
  display: block;
  width: 120px;
  height: 1px;
  margin-top: 12px;
  background: linear-gradient(90deg, rgba(159, 177, 223, 0.9), rgba(255, 255, 255, 0.45));
}

.ara-renk {
  color: #ffffff;
  font-weight: 500;
}
.product-lede {
  color: #cbd3e6;
  font-weight: 300;
}
.product-list .product-row:nth-child(even) .p-media {
  order: -1;
}

@media (max-width: 980px) {
  .product-row {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .product-row .p-media {
    order: 2;
  }
  .product-row .p-media .svc-img {
    height: 260px;
  }
}
.services-carousel {
  position: relative;
  padding: 80px 0 80px;
  background: radial-gradient(1600px 800px at 30% 10%, rgba(25, 60, 110, 0.686) 0%, transparent 60%), var(--bg);
}
.services-carousel--inline {
  background: transparent;
}

/* Full-width single image section */
.full-width-image {
  position: relative;
  padding: 0;
  background:
    radial-gradient(1200px 800px at 70% 10%, rgba(108, 155, 255, 0.4), transparent 60%),
    radial-gradient(2000px 800px at 16% 40%, rgba(108, 154, 255, 0.4), transparent 80%), var(--bg);
  padding-top: 60px;
  padding-bottom: 60px;
}

.full-width-image-2 {
  position: relative;
  padding: 0;
  background: none;
  padding-top: 60px;
  padding-bottom: 60px;
}

.full-width-image-2 img {
  display: block;
  width: 100%; /* tam sayfa genişlik */
  height: auto;
  padding-left: 0px;
  padding-right: 0px;
}
.full-width-image img {
  display: block;
  width: 100%; /* tam sayfa genişlik */
  height: auto;
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 980px) {
  .full-width-image img {
    padding-left: 0;
    padding-right: 0;
  }
}

.carousel {
  position: relative;
  --arrow-space: 64px;
}
.carousel-viewport {
  overflow: hidden;
  margin: 0 var(--arrow-space);
}
.carousel-track {
  --carousel-gap: 28px;
  display: grid;
  grid-auto-flow: column;
  column-gap: var(--carousel-gap);
  grid-auto-columns: calc(33.333% - var(--carousel-gap) * 2 / 3);
  padding: 12px 8px; /* small inner breathing */
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar {
  height: 0;
  display: none;
}
.carousel-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}
.carousel-track > * {
  scroll-snap-align: start;
}

.svc-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  justify-items: center;
  text-align: center;
  min-height: 420px;
  border-radius: 28px;
  padding-bottom: 40px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  background: rgba(0, 0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 10px 30px rgba(0, 0, 0, 0.35),
    0 6px 28px rgba(0, 0, 0, 0.25);
}
.svc-card > .btn {
  grid-row: 4;
}
/* svc-avatar removed (unused in index/hakkimizda) */
.svc-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 240px;
  margin-bottom: 20px;
}
.svc-img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
}
.svc-title {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 24px);
  margin: 0px 0 0px;
  color: #ffffff;
}
.svc-text {
  color: #cbd3e6;
  font-weight: 300;
  max-width: 52ch;
  margin-bottom: 0px;
}
/* svc-link removed (unused in index/hakkimizda) */

.car-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.car-arrow:hover {
  background: rgba(255, 255, 255, 0.12);
}
.car-arrow span {
  font-size: 24px;
  line-height: 1;
}
.car-arrow.prev {
  left: max(12px, env(safe-area-inset-left));
}
.car-arrow.next {
  right: max(12px, env(safe-area-inset-right));
}

@media (max-width: 1100px) {
  .carousel-track {
    grid-auto-columns: calc(50% - var(--carousel-gap) / 2);
  }
}
@media (max-width: 720px) {
  .carousel-track {
    grid-auto-columns: 100%;
  }
  .car-arrow {
    display: none;
  }
  .carousel-viewport {
    margin: 0;
  }
  .svc-card {
    min-height: 380px;
    grid-template-rows: auto auto auto;
    gap: 12px;
    padding-top: 16px;
    padding-bottom: 24px;
  }
  .svc-media {
    min-height: 200px;
    margin-bottom: 0;
    grid-row: 1;
  }
  .svc-img {
    height: 200px;
  }
  .svc-title {
    grid-row: 2;
    font-size: clamp(20px, 6vw, 24px);
  }
  .svc-card > .btn {
    grid-row: 3;
  }
  .svc-media.ring::after {
    width: 200px;
  }

  .page-satis-hizmetleri #services-carousel .carousel-track {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.light-effect.right {
  background: radial-gradient(1600px 800px at 20% 10%, #112348 0%, transparent 60%), var(--bg);

  transform: translateY(-50%);
}

/* === Reusable drop-shadow utilities (image-sized, perspective) === */
/* shadow-wrap utilities removed (unused) */

/* Optional helpers to combine with existing markup */
.drop-shadow {
  position: relative;
}
.drop-shadow.perspective::after {
  /* use on the same element if you can't wrap */
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -28px;
  height: clamp(40px, 18%, 90px);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 70%);
  transform: perspective(900px) rotateX(55deg);
  filter: blur(12px);
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

/* box-shadow helper removed (unused; typo in HTML uses `.box-shadow` as literal) */
/* === 3D (extruded) shadow for About hero image (hard 3D look) === */
.about .photo-card.drop-shadow.perspective {
  position: relative;
  /* controls */
  --extrude: 26px; /* kalınlık */
  --face-right: #5f5f5f; /* sağ yüz rengi */
  --face-bottom: #8a8a8a; /* alt yüz rengi */
  --edge: rgba(255, 255, 255, 0.28); /* kenar vurgusu */
}

/* Sağ yüz (üstte kalsın ki köşede küçük üçgen görünsün) */
.about .photo-card.drop-shadow.perspective::after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 255px;
  height: 100%;
  background:
    linear-gradient(270deg, rgb(0 0 0 / 45%), rgb(0 0 0 / 0%)),
    /* hafif koyuluk */ linear-gradient(323deg, rgb(255 0 0 / 0%), #00000000 100%);
  transform: translateX(-89%) translateY(-25%) skewY(39deg);
  transform-origin: center;
  z-index: 2;
  filter: blur(17px);
  opacity: 0.6;
  pointer-events: none;
}

/* Alt yüz (altta kalsın; sağ yüz ile çakışınca köşede küçük üçgen kalır) */
.about .photo-card.drop-shadow.perspective::before {
  content: '';
  position: absolute;
  left: -116px;
  bottom: 476px;
  width: 100%;
  height: 127px;
  background:
    linear-gradient(0deg, rgb(0 0 0 / 45%), rgb(0 0 0 / 0%)),
    /* hafif koyuluk */ linear-gradient(0deg, rgb(0 0 0 / 0%), transparent 16%);
  transform: translateY(100%) skewX(45deg);
  transform-origin: left top;
  z-index: 1;
  filter: blur(17px);
  opacity: 0.6;
  pointer-events: none;
}

/* Küçük ekranlarda kalınlığı küçült */
@media (max-width: 980px) {
  .about .photo-card.drop-shadow.perspective {
    --extrude: 16px;
  }
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  filter: blur(6px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    filter 0.6s ease;
  will-change: opacity, transform, filter;
}
.reveal.is-inview {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* Yön varyantları (isteğe bağlı) */
.reveal-up {
  transform: translateY(24px);
}
.reveal-left {
  transform: translateX(-32px);
}
.reveal-right {
  transform: translateX(32px);
}
/* .reveal-down and .reveal-zoom removed (unused) */

/* Küçük ekranda hareketi biraz azalt */
@media (max-width: 980px) {
  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right {
    transform: translateY(16px);
  }
}

/* Erişilebilirlik: hareketi azalt tercihinde animasyonu kapat */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* Global mobile horizontal spacing standard */
@media (max-width: 720px) {
  :root {
    --mobile-page-gutter: 20px;
  }

  .ic-sayfa-header,
  .ic-sayfa-grid,
  .ic-sayfa-grid-2,
  .ic-sayfa-testimonials-grid,
  .ic-sayfa-products-grid,
  .dortlu-testimonials-grid,
  .dortlu-testimonials-grid-2,
  .spot-ortali,
  .testimonials {
    padding-left: var(--mobile-page-gutter) !important;
    padding-right: var(--mobile-page-gutter) !important;
  }

  .testimonial-card,
  .testimonial-card-2 {
    padding-left: var(--mobile-page-gutter) !important;
    padding-right: var(--mobile-page-gutter) !important;
  }
}
