/* =========================================
   HOME — Services
========================================= */

.ot-homeServices{
  padding: 56px 0 22px;
}

.ot-homeServices__head{
  max-width: 760px;
  margin: 0 0 22px;
}

.ot-homeServices__title{
  margin: 0 0 8px;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.15;
}

.ot-homeServices__desc{
  margin: 0;
  opacity: .82;
}

.ot-homeServices__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ot-serviceCard{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  background: #fff;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ot-serviceCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(2, 6, 23, .10);
  border-color: rgba(106,61,240,.25);
}

.ot-serviceCard__icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;

  color: #fff;
  background: linear-gradient(135deg, var(--ot-grad-a), var(--ot-grad-b));
  box-shadow: 0 10px 24px rgba(106, 61, 240, .22);
}


.ot-serviceCard__icon i{
  font-size: 18px;
}

.ot-serviceCard__title{
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.25;
}

.ot-serviceCard__link{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-weight: 700;
  color: rgba(43,123,255,.95);
  text-decoration: none;             /* ✅ normal underline kapalı */
  text-underline-offset: 3px;
  transition: color .18s ease, opacity .18s ease, transform .18s ease;
}

.ot-serviceCard__link:hover{
  color: rgba(106,61,240,.95);       /* ✅ hover sadece renk değişimi */
  text-decoration: none;             /* ✅ hover underline kapalı */
  transform: translateX(1px);
}

/* =========================================
   Reveal Animation (scroll)
========================================= */
.ot-reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}

.ot-reveal.is-inview{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px){
  .ot-homeServices{ padding: 44px 0 10px; }
  .ot-homeServices__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px){
  .ot-homeServices__grid{ grid-template-columns: 1fr; }
}

/* =========================================
   HOME — Packages (Premium)
========================================= */
.ot-packages{
  position: relative;
  padding: 72px 0 76px;
  color: #fff;

  /* full-width kurumsal mor geçiş (section’da radius yok) */
  background: linear-gradient(135deg,
    #140026 0%,
    #3B0764 28%,
    #6D28D9 58%,
    #1D4ED8 100%
  );
  overflow: hidden;
}

.ot-packages__bgFX{
  position:absolute;
  inset:-40% -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.14), transparent 42%),
    radial-gradient(circle at 70% 20%, rgba(34,211,238,.16), transparent 38%),
    radial-gradient(circle at 60% 80%, rgba(236,72,153,.18), transparent 45%);
  filter: blur(22px);
  transform: rotate(-10deg);
  opacity: .9;
  animation: otPkgFloat 10s ease-in-out infinite;
}

@keyframes otPkgFloat{
  0%,100%{ transform: translate3d(0,0,0) rotate(-10deg); }
  50%{ transform: translate3d(0,-18px,0) rotate(-10deg); }
}

.ot-packages__head{
  max-width: 860px;
  margin: 0 0 22px;
}

.ot-packages__title{
  margin: 0 0 10px;
  font-size: clamp(24px, 2.5vw, 40px);
  line-height: 1.1;
  letter-spacing: .2px;
}

.ot-packages__desc{
  margin: 0;
  opacity: .88;
  max-width: 760px;
}

/* grid */
.ot-packages__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 2;
}

/* card (eşit yükseklik) */
.ot-pkgCard{
  position: relative;
  display:flex;
  flex-direction: column;
  min-height: 560px;

  padding: 18px 18px 16px;

  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);

  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
  will-change: transform;
}

.ot-pkgCard:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
}

.ot-pkgCard__shine{
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.22) 22%, transparent 46%);
  transform: translateX(-60%);
  opacity: .0;
  transition: opacity .18s ease;
}
.ot-pkgCard:hover .ot-pkgCard__shine{
  opacity: .75;
  animation: otPkgShine 1.1s ease;
}
@keyframes otPkgShine{
  from{ transform: translateX(-60%); }
  to{ transform: translateX(70%); }
}

/* popular */
.ot-pkgCard.is-popular{
  border-color: rgba(236,72,153,.55);
  box-shadow: 0 26px 80px rgba(236,72,153,.12), 0 18px 50px rgba(0,0,0,.18);
}
.ot-pkgCard.is-popular:hover{
  border-color: rgba(236,72,153,.70);
}

/* top */
.ot-pkgCard__kicker{
  display:inline-flex;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2px;
  opacity: .92;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.12);
  margin-bottom: 12px;
}

.ot-pkgCard__row{
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ot-pkgCard__title{
  margin: 0;
  font-size: 18px;
  letter-spacing: .2px;
}

.ot-pkgCard__badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  color: #140026;
  background: linear-gradient(90deg, rgba(236,72,153,1), rgba(34,211,238,1));
  box-shadow: 0 14px 30px rgba(236,72,153,.18);
  white-space: nowrap;
}

.ot-pkgCard__desc{
  margin: 12px 0 0;
  opacity: .90;
}

/* meta list */
.ot-pkgCard__meta{
  list-style:none;
  margin: 14px 0 0;
  padding: 0;
  display:flex;
  flex-direction: column;
  gap: 8px;
}

.ot-pkgCard__meta li{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  opacity: .95;
}

.ot-pkgCard__meta i{
  opacity: .95;
}

/* middle */
.ot-pkgCard__mid{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.ot-pkgCard__sub{
  font-weight: 900;
  letter-spacing: .2px;
  margin-bottom: 10px;
  opacity: .95;
}

.ot-pkgCard__features{
  list-style:none;
  margin: 0;
  padding: 0;
  display:flex;
  flex-direction: column;
  gap: 9px;
}

.ot-pkgCard__features li{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 13px;
  opacity: .92;
}

.ot-pkgCard__features i{
  opacity: .95;
}

/* bottom CTA */
.ot-pkgCard__bottom{
  margin-top: auto;
  padding-top: 14px;
}

.ot-pkgBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  font-weight: 900;
  text-decoration: none;

  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(90deg, #2b7bff 0%, #6a3df0 55%, #22d3ee 120%);
  box-shadow: 0 14px 34px rgba(43,123,255,.18);

  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.ot-pkgBtn:hover{
  transform: translateY(-1px);
  filter: saturate(1.08) brightness(1.03);
  box-shadow: 0 18px 44px rgba(43,123,255,.22);
}

/* responsive */
@media (max-width: 1100px){
  .ot-packages__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ot-pkgCard{ min-height: 520px; }
}
@media (max-width: 560px){
  .ot-packages{ padding: 56px 0 60px; }
  .ot-packages__grid{ grid-template-columns: 1fr; }
  .ot-pkgCard{ min-height: auto; }
}

/* =========================================
   HOME — Satış Kanalı Yönetimi
========================================= */
.ot-salesChannels{
  position: relative;
  padding: 76px 0;
  overflow: hidden;
  color: #0b1220;
  background: #0a0612;
}

.ot-salesChannels__bg{
  position:absolute;
  inset:-40% -25%;
  background:
    radial-gradient(circle at 18% 30%, rgba(236,72,153,.22), transparent 45%),
    radial-gradient(circle at 70% 20%, rgba(99,102,241,.28), transparent 42%),
    radial-gradient(circle at 70% 85%, rgba(34,211,238,.18), transparent 46%),
    linear-gradient(135deg, rgba(20,0,38,.9), rgba(29,78,216,.35));
  filter: blur(18px);
  opacity: .95;
  transform: rotate(-10deg);
}

.ot-salesChannels__wrap{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: start;
}

.ot-salesChannels__left,
.ot-salesChannels__right{
  border-radius: 22px;
  padding: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
}

.ot-salesChannels__title{
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.12;
  letter-spacing: .2px;
}

.ot-salesChannels__desc{
  margin: 0 0 16px;
  color: rgba(255,255,255,.86);
  max-width: 58ch;
}

.ot-salesChannels__logos{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.ot-salesLogo{
  width: 112px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  text-decoration: none;
}

.ot-salesLogo img{
  max-width: 78%;
  max-height: 56%;
  object-fit: contain;
  filter: saturate(1.05);
  opacity: .96;
}

.ot-salesLogo:hover{
  transform: translateY(-2px);
  border-color: rgba(236,72,153,.35);
  background: rgba(255,255,255,.10);
}

/* RIGHT */
.ot-salesChannels__rightHead{
  margin-bottom: 14px;
}
.ot-salesChannels__rTitle{
  margin: 0 0 6px;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}
.ot-salesChannels__rDesc{
  margin: 0;
  color: rgba(255,255,255,.82);
}

/* grid cards */
.ot-salesChannels__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.ot-salesCard{
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: start;

  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 16px 44px rgba(0,0,0,.22);

  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.ot-salesCard:hover{
  transform: translateY(-2px);
  border-color: rgba(99,102,241,.32);
  background: rgba(255,255,255,.10);
}

.ot-salesCard__icon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  background: linear-gradient(135deg, var(--ot-grad-a), var(--ot-grad-b));
  box-shadow: 0 12px 28px rgba(106,61,240,.22);
}

.ot-salesCard__icon i{ font-size: 18px; }

.ot-salesCard__title{
  margin: 0 0 6px;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}

.ot-salesCard__desc{
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 14px;
  line-height: 1.45;
}

/* responsive */
@media (max-width: 980px){
  .ot-salesChannels{ padding: 56px 0; }
  .ot-salesChannels__wrap{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .ot-salesLogo{ width: calc(50% - 5px); height: 64px; }
}


/* =========================================
   HOME — Elektra Web Section
========================================= */
.ot-elektra{
  padding: 78px 0;
  background: #fff;
}

.ot-elektra__grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: center;
}

.ot-elektra__left{
  padding: 6px 0;
}

.ot-elektra__pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: linear-gradient(180deg, rgba(106,61,240,.08), rgba(43,123,255,.06));
  box-shadow: 0 10px 30px rgba(2, 6, 23, .06);
  font-weight: 800;
  font-size: 13px;
}

.ot-elektra__pill i{
  color: #6a3df0;
}

.ot-elektra__title{
  margin: 14px 0 12px;
  font-size: clamp(24px, 2.5vw, 42px);
  line-height: 1.08;
  letter-spacing: .2px;
}

.ot-elektra__desc{
  margin: 0;
  max-width: 640px;
  opacity: .86;
  font-size: 15.5px;
}

.ot-elektra__cta{
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ot-elektra__link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  color: rgba(43,123,255,.95);
  padding: 10px 6px;
  border-radius: 12px;
  transition: transform .18s ease, color .18s ease, background .18s ease;
}

.ot-elektra__link:hover{
  transform: translateX(2px);
  color: rgba(106,61,240,.95);
  background: rgba(106,61,240,.06);
}

/* Right media */
.ot-elektra__media{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 60px rgba(2, 6, 23, .10);
  background: #f7f7fb;
  min-height: 340px;
}

.ot-elektra__media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
}

.ot-elektra__glow{
  position: absolute;
  inset: -30%;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 25%, rgba(162,28,175,.22), transparent 44%),
    radial-gradient(circle at 70% 65%, rgba(43,123,255,.18), transparent 46%);
  filter: blur(18px);
  opacity: .9;
  animation: otElektraFloat 10s ease-in-out infinite;
}

@keyframes otElektraFloat{
  0%,100%{ transform: translate3d(0,0,0); }
  50%{ transform: translate3d(0,-14px,0); }
}

.ot-elektra__mediaFallback{
  height: 100%;
  display: grid;
  place-items: center;
  padding: 26px;
  font-weight: 800;
  color: rgba(17,17,17,.75);
}

/* Responsive */
@media (max-width: 980px){
  .ot-elektra{ padding: 56px 0; }
  .ot-elektra__grid{
    grid-template-columns: 1fr;
  }
  .ot-elektra__media{
    min-height: 280px;
  }
}


