
.offitec-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
}

/* LCP optimizations: disable heavy CSS background and show hero img */
.offitec-hero__bg::before {
  background: transparent !important;
  display: none !important;
}
.offitec-hero__product {
  display: block !important;
}

/* Ensure hero img fills slider area */
.offitec-hero__product {
  position: absolute !important;
  inset: 0 !important;
  max-width: none !important;
  pointer-events: none;
}
.offitec-hero__product img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
.offitec-hero__product picture {
  width: 100%;
  height: 100%;
  display: block;
}

.offitec-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.offitec-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: image-set(
    url("/panel/upload/off.png?width=820&format=avif&quality=55") type("image/avif"),
    url("/panel/upload/off.png?width=820&format=webp&quality=60") type("image/webp"),
    url("/panel/upload/off.png?width=820&quality=65") type("image/png")
  );
  background-size: cover;        /* tüm alanı kapla */
  background-position: center;   /* ortala */
  background-repeat: no-repeat;
  z-index: 0;
}
.offitec-hero__gradient,
.offitec-hero__grid {
  z-index: 1;
}

/* baloncuklar ve içerik en üstte */
.offitec-hero__bubble { z-index: 2; }
.offitec-hero__content { z-index: 3; }
.offitec-hero__product {
  display: none;
}

.offitec-hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 224, 198, 0.25), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(0, 118, 255, 0.4), transparent 55%),
    linear-gradient(135deg, #021827 0%, #03111f 60%, #020b16 100%);
  filter: saturate(1.1);
}

/* Hafif grid efekti */
.offitec-hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  mix-blend-mode: soft-light;
  transform: translate3d(0,0,0);
  animation: gridMove 20s linear infinite;
}

/* Ürün görseli */
.offitec-hero__product {
  position: absolute;
  right: 8%;
  bottom: 0;
  max-width: 520px;
  pointer-events: none;
  animation: productFloat 8s ease-in-out infinite;
}

.offitec-hero__product img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 80px rgba(0,0,0,0.8));
}

/* Yüzen baloncuklar */
.offitec-hero__bubble {
  position: absolute;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(5, 37, 56, 0.9);
  box-shadow: 0 0 25px rgba(0, 220, 255, 0.35);
  border: 1px solid rgba(0, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #e8f9ff;
  backdrop-filter: blur(10px);
}

.offitec-hero__bubble span {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.offitec-hero__bubble small {
  opacity: 0.8;
}

/* Pozisyon + animasyonlar */
.offitec-hero__bubble--1 { top: 22%; right: 26%; animation: bubbleFloat 10s ease-in-out infinite; }
.offitec-hero__bubble--2 { top: 45%; right: 12%; animation: bubbleFloat 12s ease-in-out infinite .6s; }
.offitec-hero__bubble--3 { top: 65%; right: 30%; animation: bubbleFloat 11s ease-in-out infinite 1.2s; }

@keyframes bubbleFloat {
  0% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(-14px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.8; }
}

@keyframes productFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes gridMove {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-40px,-40px,0); }
}

/* İçerik / glassmorphism box */
.offitec-hero__content {
  position: relative;
  z-index: 2;
}

.offitec-hero__glass {
  background: rgba(2, 16, 30, 0.85);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  border: 1px solid rgba(0, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  max-width: 520px;
}

/* Küçük üst başlık */
.offitec-eyebrow {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #63f0ff;
  margin-bottom: 8px;
}

/* CTA buton satırı */
.offitec-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 20px;
}

.offitec-cta-row .button--secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
}

/* Mini kartlar */
.offitec-mini-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.offitec-mini-card {
  flex: 1 1 30%;
  min-width: 120px;
  padding: 10px 12px;
  border-radius: 14px;
  background: radial-gradient(circle at top left,
      rgba(0, 255, 255, 0.16),
      rgba(3, 15, 27, 0.95));
  border: 1px solid rgba(0, 255, 255, 0.1);
  font-size: 11px;
  line-height: 1.4;
}

.offitec-mini-card h3 {
  font-size: 12px;
  margin: 0 0 4px;
}

/* Responsive düzen */
@media (max-width: 1024px) {
  .offitec-hero__product {
    opacity: 0.4;
    right: -5%;
    max-width: 420px;
  }

  .offitec-hero__glass {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .offitec-hero {
    min-height: 520px;
  }

  .offitec-hero__product {
    bottom: -40px;
    right: -20%;
    max-width: 360px;
  }

  .offitec-mini-cards {
    flex-direction: column;
  }
}


.offitec-products-grid {
  row-gap: 26px;
}

/* Kartın genel yapısı */
.offitec-product-card {
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: radial-gradient(circle at top left,
      rgba(0, 255, 255, 0.10),
      rgba(3, 18, 30, 0.98));
  border: 1px solid rgba(0, 255, 255, 0.16);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
}

/* GÖRSEL */
.offitec-product-media {
  display: block;
  text-decoration: none;
}

.offitec-product-media-inner {
  position: relative;
  padding: 16px 16px 0;
}

.offitec-product-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #050f18;
  object-fit: contain;
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

/* üstte küçük pill */
.offitec-product-pill {
  position: absolute;
  left: 24px;
  top: 24px;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(0,255,255,0.5);
  color: #7cf3ff;
  background: rgba(4, 25, 40, 0.96);
}

/* gövde */
.offitec-product-body {
  padding: 14px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offitec-product-title {
  font-size: 17px;
  margin: 0;
}

.offitec-product-title a {
  color: #ffffff;
  text-decoration: none;
}

.offitec-product-title a:hover {
  text-decoration: underline;
}

.offitec-product-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(209, 227, 242, 0.9);
  margin: 0;
}

/* spec satırı */
.offitec-product-spec-row {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.offitec-product-spec {
  padding: 8px 9px;
  border-radius: 14px;
  background: rgba(4, 22, 36, 0.96);
  border: 1px solid rgba(0, 255, 255, 0.14);
}

.offitec-product-spec-label {
  display: block;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(180, 207, 227, 0.95);
  margin-bottom: 2px;
}

.offitec-product-spec-value {
  font-size: 12px;
  color: #ffffff;
}

/* alt kısım */
.offitec-product-footer {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.offitec-product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: #020c16;
  background: linear-gradient(90deg, #00c6ff, #00ffbf);
  box-shadow: 0 12px 35px rgba(0, 196, 255, 0.7);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.offitec-product-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 45px rgba(0, 196, 255, 0.9);
  filter: brightness(1.04);
}

.offitec-product-more {
  font-size: 12px;
  color: #7cf3ff;
  text-decoration: none;
}

.offitec-product-more:hover {
  text-decoration: underline;
}

/* hover: foto hafif zoom yapsın */
.offitec-product-card:hover .offitec-product-image {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.9);
  filter: brightness(1.03);
}

/* RESPONSIVE */
@media (max-width: 749px) {
  .offitec-product-spec-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

    .slideshow-section {
      background:#021827;
    }

    .slideshow-section .section-template--24949130854675__df5586f7-ef55-410f-b2da-37bcf90c294c-padding {
      padding-top: 0;
      padding-bottom: 0;
    }

  .offitec-hero-video {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 16 / 7;     /* 16/9 yerine biraz daha yatay */
  max-height:520px;        /* dev ekranlarda taşmasın */
}
 

    .offitec-hero-video video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .offitec-hero-video .desktop-slider { display: block; }
    .offitec-hero-video .mobile-slider  { display: none; }

    @media (max-width: 749px) {
    .offitec-hero-video {
      aspect-ratio: 9 / 16;  /* dikey mobil */
    }
    .offitec-hero-video .desktop-slider { display: none; }
    .offitec-hero-video .mobile-slider  { display: block; }
    .offitec-hero-overlay {
      padding-bottom: 16px;
    }
  }

    /* HERO TEXT OVERLAY */
.offitec-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
  z-index: 2; /* metni videonun üstünde tut */
}

.offitec-hero-overlay-inner {
  pointer-events: auto;
  padding: 0 px;
      width: 100%;
    }

    .offitec-hero-box {
      max-width: 520px;
      background: rgba(2, 10, 25, 0.88);
      border-radius: 22px;
      padding: 18px 20px 20px;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 22px 60px rgba(0,0,0,0.75);
    }

    .offitec-hero-eyebrow {
      font-size: 0.9rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      margin-bottom: 6px;
    }

    .offitec-hero-heading {
      font-size: 2rem;
      font-weight: 600;
      color: #ffffff;
      margin: 0 0 8px;
    }

    .offitec-hero-heading span {
      color:#00ffb0;
    }

    .offitec-hero-text {
      font-size: 0.95rem;
      line-height: 1.6;
      color: rgba(255,255,255,0.8);
      margin: 0;
    }

    @media (max-width: 749px) {
      .offitec-hero-overlay {
        align-items: flex-end;
      }
      .offitec-hero-box {
        max-width: 100%;
        margin-bottom: 16px;
        padding: 14px 14px 16px;
      }
      .offitec-hero-heading {
        font-size: 1.5rem;
      }
    }

    /* ===== TABS – çok doğal, underline tarzı ===== */

    .offitec-tab-strip {
      background:#021827;
      padding: 18px 0 12px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .offitec-tabs-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      gap: 32px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .offitec-tab {
      flex-shrink: 0;
      padding: 10px 0;
      border: none;
      background: transparent;
      cursor: pointer;
      text-align: left;
      color: rgba(255,255,255,0.7);
      font: inherit;
      position: relative;
      transition: color .2s ease, transform .15s ease;
      min-width: 240px;
    }

    .offitec-tab-heading {
      font-size: 1.08rem;
      font-weight: 700;
      margin: 0 0 3px;
      white-space: nowrap;
    }

    .offitec-tab-text {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.55);
      margin: 0;
      max-width: 320px;
      white-space: normal;
      line-height: 1.55;
    }

    .offitec-tab-number {
      font-size: 0.95rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-top: 4px;
    }

    .offitec-tab::after {
      content:"";
      display:block;
      height:2px;
      width:0;
      margin-top:8px;
      border-radius:999px;
      background:linear-gradient(90deg,#00ffb0,#00adff);
   
    }

    .offitec-tab:hover {
      transform: translateY(-1px);
      color:#ffffff;
    }
    .offitec-tab:hover .offitec-tab-heading {
      color:#ffffff;
    }

    .offitec-tab.is-active {
      color:#ffffff;
    }
    .offitec-tab.is-active .offitec-tab-text {
      color:rgba(255,255,255,0.8);
    }
    .offitec-tab.is-active .offitec-tab-number {
      color:#00ffb0;
    }
    .offitec-tab.is-active::after {
      width:100%;
    }

    @media (max-width: 768px) {
      .offitec-tabs-inner {
        padding: 0 16px;
        gap: 16px;
      }
      .offitec-tab {
        min-width: 200px;
        padding: 8px 0;
      }
      .offitec-tab-heading {
        font-size: 1rem;
      }
      .offitec-tab-text {
        font-size: 0.9rem;
      }
      .offitec-tab-number {
        font-size: 0.9rem;
      }
    }
   #offitec-section-template--24949130887443__main {
  margin-top: 0;
}
.slideshow__media video {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.desktop-slider { display: block; }
.mobile-slider  { display: none; }

@media (max-width: 749px) {
  .desktop-slider { display: none; }
  .mobile-slider  { display: block; }
}

/* ===== OFFITEC STORY (video + metin) ===== */
.offitec-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
}
.offitec-story-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(0, 255, 200, 0.16);
}
.offitec-story-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.offitec-story-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.offitec-story-title {
  margin-bottom: 8px;
}
.offitec-story-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(228, 239, 247, 0.8);
}
.offitec-story-text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(225, 237, 245, 0.88);
  gap: 10px;
  display: grid;
}
@media (max-width: 1024px) {
  .offitec-story-grid {
    grid-template-columns: 1fr;
  }
  .offitec-story-media {
    min-height: 260px;
  }
}

  /* Başlık / alt başlık */
.offitec-prod-title {
  margin-bottom: 6px;
}

.offitec-prod-sub {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(233, 244, 252, 0.85);
  margin-bottom: 18px;
}

/* Özellikler container */
.offitec-hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

/* Featured-product tarafında daha geniş */
.offitec-hero-features--wide {
  margin-top: 18px;
  margin-bottom: 22px;
}

/* Tek tek özellik kutusu */
.offitec-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 14px;
  background: radial-gradient(circle at top left,
      rgba(0, 255, 255, 0.12),
      rgba(3, 18, 30, 0.96));
  border: 1px solid rgba(0, 255, 255, 0.18);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6);
}

/* İkon */
.offitec-feature-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: #63f0ff;
}

/* Yazılar */
.offitec-feature-text {
  display: flex;
  flex-direction: column;
}

.offitec-
-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(194, 228, 241, 0.9);
  margin: 0 0 2px;
}

.offitec-feature-value {
  font-size: 13px;
  color: #ffffff;
  margin: 0;
}

/* Featured product altındaki buton grubu */
.offitec-prod-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

/* Primary / secondary butonlar */
.offitec-primary-btn,
.offitec-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.offitec-primary-btn {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: #020b16;
  font-weight: 600;
  box-shadow: 0 12px 35px rgba(0, 155, 255, 0.5);
  border: none;
}

.offitec-primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 155, 255, 0.75);
}

.offitec-secondary-btn {
  background: transparent;
  color: #e8f9ff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.offitec-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

/* Kart içindeki meta detaylarda layout */
.card__meta-details.offitec-hero-features {
  margin-top: 10px;
}

/* RESPONSIVE */
@media (min-width: 990px) {
  .offitec-hero-features--wide {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .offitec-hero-features--wide .offitec-feature {
    flex: 1 1 calc(50% - 8px);
  }
}

@media (max-width: 749px) {
  .offitec-prod-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .offitec-primary-btn,
  .offitec-secondary-btn {
    width: 100%;
    justify-content: center;
  }
}
