﻿/* Ventura Refresh – video baz alınarak sıfırdan yeniden oluşturulmuş CSS */

:root{
  --brand:#88A03E;
  --hero-a:#EAF4D6;  /* açık yeşil (dip) */
  --hero-b:#9CCB5C;  /* orta açık */
  --hero-c:#88A03E;  /* kurum rengi */

  --ink:#121826;
  --muted:#5b6475;

  --shadow: 0 18px 55px rgba(16, 24, 40, .14);
  --soft: 0 10px 26px rgba(16, 24, 40, .10);

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#fff;
  background:#0b0a16;
}

a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; }

.wrap{
  width:min(1400px, calc(100% - 44px));
  margin-inline:auto;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.logo img{
  height: 72px;
  width: auto;
  display:block;
}

/* =========================
   Top bar
========================= */
.topbar{
  position:fixed;
  inset: 0 0 auto 0;
  z-index: 60;
background: rgba(0, 0, 0, 0.1);
  height: 76px;
  transition: background .5s ease, box-shadow .5s ease, backdrop-filter .5s ease, transform .5s ease;
}

.topbar__inner{
  height: 76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

/* solda logo + slogan dikey */
.topbar__left{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap: 6px;
  line-height: 1;
}
.logoTagline{
  display:flex;
  align-items:center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: .1px;
  color: rgba(255,255,255,.80);
}

.topbar.is-light{
  background: radial-gradient(900px 520px at 20% 10%, rgba(0,0,0,.15), transparent 10%),
              radial-gradient(900px 520px at 85% 20%, rgba(255,79,216,.10), transparent 55%),
              linear-gradient(115deg, #0b0a16 0%, #517F5A 10%, #1F7F3F 75%, #7b175f 110%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 28px rgba(16,24,40,.14);
  animation: topbarDrop .35s ease both;
}
@keyframes topbarDrop{
  from{ transform: translateY(-10px); opacity: 0; }
  to  { transform: translateY(0);     opacity: 1; }
}
.topbar.is-light .logoTagline{ color: rgba(18,24,38,.62); }
.topbar.is-light .contactpill{ color: rgba(18,24,38,.80); }

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

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

.contactpill{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  background: transparent;
  font-size: 13px;
  white-space: nowrap;
}

.ico{
  width: 26px; height: 26px;
  border-radius: 10px;
  background: rgba(255,255,255,.85);
  color: rgba(18,24,38,.70);
  display:grid;
  place-items:center;
}
.ico svg{ width: 16px; height: 16px; }

.btn{
  border: 0;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 14px;
  cursor:pointer;
  transition: transform .14s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:active{ transform: translateY(1px); }

.btn--cta{
  padding: 12px 18px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  color:#fff;
  box-shadow: 0 16px 36px rgba(124,58,237,.24);
}
.btn--cta:hover{ transform: translateY(-1px); box-shadow: 0 20px 44px rgba(255,79,216,.18); }

/* burger (mobile) */
.burger{
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.12);
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}
.topbar.is-light .burger{
  border-color: rgba(0,0,0,.10);
  background: rgba(255,255,255,.70);
}
.burger span{ width: 18px; height: 2px; background: rgba(255,255,255,.92); border-radius: 99px; }
.topbar.is-light .burger span{ background: rgba(18,24,38,.72); }

/* =========================
   Center pill nav
========================= */
.pillnav{
  position:fixed;
  left: 50%;
  top: 92px;
  transform: translateX(-50%);
  z-index: 55;

  display:flex;
  align-items:center;
  justify-content:center;
  gap: 25px;

  padding: 20px 25px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: transparent;
  box-shadow: 0 20px 50px rgba(0,0,0,.20);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.pillnav[data-theme="light"]{
  background: rgba(255,255,255,.72);
  border-color: rgba(0,0,0,.06);
  color: rgba(18,24,38,.78);
  box-shadow: 0 18px 38px rgba(16,24,40,.18);
}

.pillnav a{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .25px;
  opacity: .92;
  line-height: 1;
}
.pillnav a:hover{
  background: rgba(136,160,62,.50);
}
.pillnav[data-theme="light"] a:hover{
  background: rgba(124,58,237,.08);
}
.pillnav__ico{
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  flex: 0 0 18px;
}
.pillnav__ico svg{
  width: 18px;
  height: 18px;
  display: block;
}

/* =========================
   Drawer (mobile)
========================= */
.drawer{
  position:fixed;
  inset: 0;
  z-index: 80;
}
.drawer__panel{
  position:absolute;
  right: 16px;
  top: 86px;
  width: min(360px, calc(100% - 32px));
  background: rgba(255,255,255,.92);
  color: rgba(18,24,38,.88);
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 30px 70px rgba(16,24,40,.22);
}
.drawer__panel a{
  display:block;
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 750;
}
.drawer__panel a:hover{ background: rgba(124,58,237,.08); }
.drawer__cta{ margin-top: 10px; display:block; text-align:center; }

/* =========================
   Sections base
========================= */
.section{
  position:relative;
  padding: 120px 0 84px;
}
.section[data-theme="light"]{
  color: var(--ink);
}

/* =========================
   HERO
========================= */
.hero{
  min-height: 100vh;
  position: relative;
  overflow: hidden;

  /* dikey ortalama + yatay ortalama */
  display:flex;
  align-items:center;
  justify-content:center;

  padding-top: 140px; /* topbar + pillnav için */
}

/* içerik her zaman üstte */
.hero__inner{ position: relative; z-index: 1; width: 100%; }

.hero__bg{
  position:absolute;
  inset:0;
  z-index: 0;
  background:
    radial-gradient(1100px 600px at 18% 25%, rgba(255,255,255,.16), transparent 60%),
    radial-gradient(900px 520px at 84% 40%, rgba(255,255,255,.10), transparent 58%),
    linear-gradient(115deg, var(--hero-a) 0%, var(--hero-b) 52%, var(--hero-c) 112%);
}

/* DNA helix (solda, silüet gibi, yukarı doğru akar) */
.hero__bg::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 420 900'%3E%3Cg fill='none' stroke='%23ffffff' stroke-linecap='round'%3E%3Cpath d='M90 0 C330 120 90 240 330 360 C90 480 330 600 90 720 C330 840 90 960 330 1080' stroke-opacity='.32' stroke-width='3'/%3E%3Cpath d='M330 0 C90 120 330 240 90 360 C330 480 90 600 330 720 C90 840 330 960 90 1080' stroke-opacity='.18' stroke-width='3'/%3E%3Cpath d='M140 90 L280 90' stroke-opacity='.16' stroke-width='3'/%3E%3Cpath d='M120 150 L300 150' stroke-opacity='.26' stroke-width='3'/%3E%3Cpath d='M140 210 L280 210' stroke-opacity='.16' stroke-width='3'/%3E%3Cpath d='M120 270 L300 270' stroke-opacity='.26' stroke-width='3'/%3E%3Cpath d='M140 330 L280 330' stroke-opacity='.16' stroke-width='3'/%3E%3Cpath d='M120 390 L300 390' stroke-opacity='.26' stroke-width='3'/%3E%3Cpath d='M140 450 L280 450' stroke-opacity='.16' stroke-width='3'/%3E%3Cpath d='M120 510 L300 510' stroke-opacity='.26' stroke-width='3'/%3E%3Cpath d='M140 570 L280 570' stroke-opacity='.16' stroke-width='3'/%3E%3Cpath d='M120 630 L300 630' stroke-opacity='.26' stroke-width='3'/%3E%3Cpath d='M140 690 L280 690' stroke-opacity='.16' stroke-width='3'/%3E%3Cpath d='M120 750 L300 750' stroke-opacity='.26' stroke-width='3'/%3E%3C/g%3E%3Cg fill='%23ffffff' fill-opacity='.10'%3E%3Ccircle cx='90' cy='0' r='4'/%3E%3Ccircle cx='330' cy='120' r='4'/%3E%3Ccircle cx='90' cy='240' r='4'/%3E%3Ccircle cx='330' cy='360' r='4'/%3E%3Ccircle cx='90' cy='480' r='4'/%3E%3Ccircle cx='330' cy='600' r='4'/%3E%3Ccircle cx='90' cy='720' r='4'/%3E%3Ccircle cx='330' cy='840' r='4'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-size: 420px 900px;
  background-position: -18% 0;
  opacity: .10;
  filter: blur(0.6px);
  mix-blend-mode: soft-light;
  transform: rotate(-10deg);
  transform-origin: 20% 50%;
  animation: dnaScroll 18s linear infinite;
}
@keyframes dnaScroll{
  from{ background-position: -18% 0; }
  to  { background-position: -18% 900px; }
}

.dots{
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 54px 54px;
  background-position: 0 0;
  opacity: .42;
  pointer-events:none;
}
.vignette{
  position:absolute;
  inset:0;
  background: radial-gradient(800px 500px at 50% 40%, transparent 0%, rgba(0,0,0,.22) 70%, rgba(0,0,0,.30) 100%);
  pointer-events:none;
}

/* =========================
   BANNER-CONTENT (Bootstrap yokken) – büyüt + ortala
   (SENİN SLIDER YAPIN BURADAN YÖNETİLİYOR)
========================= */

/* Bootstrap utility sınıfları (minimal) */
.d-flex{ display:flex; }
.align-items-center{ align-items:center; }
.mb-0{ margin-bottom:0; }
.position-relative{ position:relative; }
.img-fluid{ width:100%; height:auto; display:block; }

/* banner alanı */
.banner-content{ width: 100%; }

/* Row = 2 kolon grid + ortalama */
.banner-content .row{
  width: min(1240px, 92vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(22px, 4vw, 90px);
}

/* Sol metin */
.banner-content h1{
  margin: 0 0 16px;
  font-size: clamp(44px, 5vw, 74px);
  line-height: 1.05;
}
.banner-content p{
  margin: 0;
  max-width: 56ch;
  font-size: 18px;
  line-height: 1.65;
  opacity: .92;
}

/* Sağ görsel */
.banner-content figure{
  margin: 0;
  width: min(680px, 100%);
  margin-left: auto;
}
.banner-content img{
  border-radius: 22px;
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
}

/* mobil */
@media (max-width: 992px){
  .banner-content .row{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .banner-content figure{
    margin: 22px auto 0;
    width: min(560px, 100%);
  }
  .banner-content p{ margin-inline:auto; }
}

/* underline */
.underline-text{
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* =========================
   Hero legacy content (senin id’ler)
========================= */
.hero__content{ margin-top: 32px; }

.hero__title{
  margin: 0;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(54px, 7vw, 92px);
  letter-spacing: .08em;
}
.hero__subtitle {
  font-family: "Manrope", Inter, system-ui, sans-serif !important;
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 800;
  color: rgba(255,255,255,.95);
}
.hero__subtitle span {
  display: block;
  background: linear-gradient(
    135deg,
    #ffffff 10%,
    var(--subtitle-accent, #88A03E) 58%,
    color-mix(in srgb, var(--subtitle-accent, #88A03E) 60%, #ffffff) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__desc{
  margin-top: 12px;
  font-size: 15px;
  opacity: .80;
}

/* BUTONLAR: masaüstünde sola, mobilde ortalı */
.hero__actions{
  display:flex;
  justify-content:flex-start;
  gap: 18px;
  margin-top: 34px;
  flex-wrap:wrap;
}
@media (max-width: 992px){
  .hero__actions{ justify-content:center; }
}

.btn--primary{
  background: rgba(255,255,255,.94);
  color: rgba(56, 13, 86, .95);
  border: 1px solid rgba(0,0,0,.08);
  padding: 14px 26px;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.20);
}
.btn--primary:hover{ transform: translateY(-1px); }

.btn--ghost{
  background: white;
  color: black;
  border: 2px solid rgba(255,255,255,.18);
  padding: 14px 26px;
  border-radius: 12px;
}
.btn--ghost:hover{ background: rgba(255,255,255,.14); transform: translateY(-1px); }

.arrow{ margin-left: 10px; }

.sliderdots{
  display:flex;
  justify-content:flex-start;
  gap: 10px;
  margin-top: 26px;
}
@media (max-width: 992px){
  .sliderdots{ justify-content:center; }
}
.dotbtn{
  width: 10px; height: 10px;
  border-radius: 99px;
  border: 0;
  background: rgba(255,255,255,.26);
  cursor:pointer;
  transition: width .18s ease, background .18s ease, opacity .18s ease;
}
.dotbtn.is-active{
  width: 46px;
  background: rgba(255,255,255,.92);
}
.dotbtn:hover{ opacity:.9; }

.scrollhint{
  position:absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  opacity: .65;
}
.mouse{
  width: 24px; height: 40px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.24);
  display:flex;
  justify-content:center;
  padding-top: 8px;
}
.wheel{
  width: 4px; height: 8px;
  border-radius: 99px;
  background: rgba(255,255,255,.6);
  animation: wheel 1.3s infinite ease-in-out;
}
@keyframes wheel{
  0%{ transform: translateY(0); opacity:.6; }
  50%{ transform: translateY(8px); opacity:.2; }
  100%{ transform: translateY(0); opacity:.6; }
}

/* =========================
   WOW benzeri animasyon altyapısı
========================= */
.wow{ opacity: 0; transform: translateX(0); }
.wow.is-inview{ opacity: 1; }

@keyframes slideInLeft{
  from{ opacity:0; transform: translateX(-50px); }
  to{ opacity:1; transform: translateX(0); }
}
@keyframes slideInRight{
  from{ opacity:0; transform: translateX(50px); }
  to{ opacity:1; transform: translateX(0); }
}
.wow.slideInLeft.is-inview{ animation: slideInLeft .7s ease both; }
.wow.slideInRight.is-inview{ animation: slideInRight .7s ease both; }

/* resim soft fade (istersen kalsın) */
#heroImg{
  transition: opacity .25s ease;
}
#heroImg.is-fading{ opacity: 0; }

/* =========================
   Kenardan gelsin (EDGE-IN)
   (JS replayHeroAnimation() edge-in basacak)
========================= */
@keyframes slideFromRightEdge{
  from { opacity: 0; transform: translateX(40vw); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideFromLeftEdge{
  from { opacity: 0; transform: translateX(-40vw); }
  to   { opacity: 1; transform: translateX(0); }
}
#heroRight.edge-in{
  animation: slideFromRightEdge .75s cubic-bezier(.2,.8,.2,1) both;
}
#heroLeft.edge-in{
  animation: slideFromLeftEdge .75s cubic-bezier(.2,.8,.2,1) both;
}
@media (max-width: 900px){
  @keyframes slideFromRightEdge{
    from { opacity: 0; transform: translateX(18vw); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes slideFromLeftEdge{
    from { opacity: 0; transform: translateX(-18vw); }
    to   { opacity: 1; transform: translateX(0); }
  }
}

/* =========================
   PRODUCTS (light)
========================= */
.products{
  background: radial-gradient(900px 520px at 18% 10%, rgba(124,58,237,.10), transparent 60%),
              radial-gradient(900px 520px at 82% 30%, rgba(255,79,216,.08), transparent 58%),
              #ffffff;
}
.sectionhead{
  text-align:center;
  padding-top: 10px;
}
.sectionpill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(124,58,237,.10);
  color: rgba(124,58,237,.90);
  font-weight: 800;
  font-size: 12px;
}
.sectionhead h2{
  margin: 16px 0 8px;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 52px;
  letter-spacing:-.02em;
  color: rgba(96, 16, 86, .92);
}
.sectionhead p{
  margin:0 auto;
  max-width: 760px;
  color: rgba(18,24,38,.62);
  font-size: 16px;
}

.cards{
  margin-top: 44px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card{
  position:relative;
  overflow:hidden;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(16,24,40,.08);
  box-shadow: var(--soft);
  padding: 26px 26px 22px;
  min-height: 210px;
}
.card__num{
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--accent);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(0,0,0,.14);
}
.card h3{
  margin: 16px 0 4px;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  letter-spacing:.2px;
  font-size: 26px;
}
.card__sub{ font-weight: 700; color: rgba(18,24,38,.75); font-size: 13px; margin-top: 10px; }
.card__desc{ color: rgba(18,24,38,.55); font-size: 12.5px; margin-top: 14px; }
.card__link{
  display:inline-flex;
  gap: 10px;
  margin-top: 18px;
  font-weight: 800;
  font-size: 12px;
  color: var(--accent);
}
.card__link span{ font-size: 14px; margin-top: -1px; }

.blob{
  position:absolute;
  width: 180px; height: 180px;
  border-radius: 999px;
  background: var(--tint);
  opacity: .65;
  pointer-events:none;
}
.blob--a{ right: -70px; top: 20px; }
.blob--b{ right: -40px; bottom: -90px; width: 240px; height: 240px; opacity:.42; }

.products__cta{
  display:flex;
  justify-content:center;
  padding-top: 40px;
}
.btn--ctaWide{
  min-width: 260px;
  text-align:center;
  padding: 16px 26px;
  border-radius: 14px;
  background: radial-gradient(900px 520px at 20% 10%, rgba(0,0,0,.15), transparent 10%),
              radial-gradient(900px 520px at 85% 20%, rgba(255,79,216,.10), transparent 55%),
              linear-gradient(115deg, #0b0a16 0%, #517F5A 10%, #1F7F3F 75%, #7b175f 110%);
  border: 0;
  color:#fff;
  box-shadow: 0 18px 44px rgba(124,58,237,.20);
}
.btn--ctaWide:hover{ transform: translateY(-1px); }

/* =========================
   Stub sections
========================= */
.stub{
  background: #fff;
  border-top: 1px solid rgba(16,24,40,.06);
}
.stub h2{
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  color: rgba(18,24,38,.88);
  margin:0;
}
.stub p{ color: rgba(18,24,38,.62); }

/* =========================
   Footer (dark)
========================= */
.footer{

  background: #ffffff !important;
}

.footer__bg{
  position:absolute;
  inset:0;
  background: radial-gradient(900px 520px at 20% 10%, rgba(0,0,0,.15), transparent 10%),
              radial-gradient(900px 520px at 85% 20%, rgba(255,79,216,.10), transparent 55%),
              linear-gradient(115deg, #0b0a16 0%, #517F5A 10%, #1F7F3F 75%, #7b175f 110%);
}
.footer__top{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 26px;
  align-items:start;
}
.brand--footer .brand__mark{ width: 44px; height: 44px; border-radius: 14px; box-shadow:none; }
.fmuted{ color: rgba(255,255,255,.76); font-size: 13px; line-height:1.6; }
/*ekledim*/


.fcol h3{
  margin: 0 0 12px;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 18px;
}
.social{ display:flex; gap: 10px; margin-top: 14px; }
.sbtn{
  width: 38px; height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  display:grid;
  place-items:center;
}
.sbtn svg{ width: 18px; height: 18px; opacity:.92; }

.contactlist{
  list-style:none;
  padding:0;
  margin: 0;
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.contactlist li{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height:1.45;
}
.miniico{
  width: 34px; height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  display:grid;
  place-items:center;
  flex: 0 0 auto;
}
.miniico svg{ width: 18px; height: 18px; opacity:.9; }

.newsletter{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 10px 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.12);
}
.newsletter input{
  flex: 1 1 auto;
  border:0;
  outline:none;
  background: transparent;
  color: rgba(255,255,255,.92);
  font-size: 13px;
}
.newsletter input::placeholder{ color: rgba(255,255,255,.55); }
.send{
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 0;
  cursor:pointer;
  background: linear-gradient(135deg, #7c3aed 0%, #ff4fd8 100%);
  color:#fff;
  display:grid;
  place-items:center;
}
.send svg{ width: 18px; height: 18px; }

.tiny{ margin-top: 10px; font-size: 12px; color: rgba(255,255,255,.75); min-height: 18px; }

.mapwrap{ position:relative; margin-top: 26px; }
.mapbox{
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.10);
  overflow:hidden;
  box-shadow: 0 18px 48px rgba(0,0,0,.24);
  background: rgba(255,255,255,.05);
}
.mapbox iframe{
  width: 100%;
  height: 320px;
  border: 0;
  display:block;
}

.footer__bottom{
  position:relative;
  margin-top: 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 14px;
  color: rgba(255,255,255,.74);
  font-size: 13px;
}
.footlinks{ display:flex; gap: 18px; }
.footlinks a{ color: rgba(255,255,255,.74); }
.footlinks a:hover{ color:#fff; }

/* =========================
   Modal
========================= */
.modal{ position:fixed; inset:0; z-index: 90; }
.modal__backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.55); }
.modal__panel{
  position:absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100% - 32px));
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  color: rgba(18,24,38,.88);
  box-shadow: 0 40px 90px rgba(0,0,0,.38);
  border: 1px solid rgba(16,24,40,.10);
}
.modal__head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(16,24,40,.08);
}
.modal__title{
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 800;
}
.modal__close{
  width: 40px; height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(16,24,40,.10);
  background: #fff;
  cursor:pointer;
}
.modal__body{ padding: 16px; color: rgba(18,24,38,.70); }
.modal__cta{ display:flex; gap: 12px; margin-top: 12px; flex-wrap:wrap; }

/* =========================
   Responsive
========================= */
@media (max-width: 1100px){
  .contactpill{ display:none; }
  .burger{ display:flex; }
  .pillnav{ display:none; }
  .section{ padding-top: 110px; }
  .hero{ padding-top: 130px; }
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .footer__top{ grid-template-columns: 1fr; }
}
@media (max-width: 640px){
  .wrap{ width: min(1160px, calc(100% - 28px)); }
  .topbar{ height: 72px; }
  .topbar__inner{ height: 72px; }
  .hero__title{ letter-spacing: .05em; }
  .sectionhead h2{ font-size: 40px; }
  .cards{ grid-template-columns: 1fr; }
}
/* HERO ortalama */
.hero{
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding-top: 140px; /* üst bar için */
}
.hero__inner{ position:relative; z-index:1; width:min(1240px, 92vw); }

/* BANNER layout (tek sistem) */
.banner-content{ width:100%; }
.banner-row{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items:center;
  gap: clamp(22px, 4vw, 90px);
}

/* sağ görsel büyük + responsive */
.banner-img figure{ margin:0; }
.banner-img img{
  width: 100%;
  max-width: 680px;
  height: auto;
  display:block;
  border-radius: 22px;
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
  margin-left:auto;
}

/* butonlar ve dotlar masaüstünde sola, mobilde ortalı */
.hero__actions{ justify-content:flex-start; }
.sliderdots{ justify-content:flex-start; }

@media (max-width: 992px){
  .banner-row{ grid-template-columns:1fr; text-align:center; }
  .banner-img img{ margin: 18px auto 0; }
  .hero__actions{ justify-content:center; }
  .sliderdots{ justify-content:center; }
}
.jost-medium{
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
 color:#fff;
}
.heroTitle{
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
 color:#fff;	
}
.herosubtitle{
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
 color:#fff;	
}
.hero-title-img{
  height: auto;
  width: auto;
  vertical-align: middle;
  margin-right: 14px;
  background: transparent;
}
@media (max-width: 992px){
  .hero-title-img{ height: 56px; margin-right: 10px; }
}
/* Transparan PNG'lerde "kutu gibi" görünmeyi engelle */
#heroImg,
.hero-title-img{
  background: transparent !important;
  box-shadow: none !important;     /* KUTU gölgesini kapat */
  border-radius: 0 !important;     /* istersen 0/8px yap */
  display: inline-block;
}

/* Transparanı bozmadan gölge istiyorsan: drop-shadow */
#heroImg{
  filter: drop-shadow(0 22px 70px rgba(0,0,0,.28));
}

.hero-title-img{
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.22));
  
}
/* Sağdaki büyük görsel: yumuşak köşe */
#heroImg{
  border-radius: 32px !important;   /* 18-32 arası deneyebilirsin */
  overflow: hidden;                  /* bazı tarayıcılarda iyi olur */
  align-items:left;
  
}
#heroImg.is-fading{ opacity: 0; }


/* ekledim. */
.footer .brand.brand--footer {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  transform: translateX(-33px);
}

.footer .brand.brand--footer img {
  display: block !important;
  height: 80px !important;
  width: auto !important;
  flex-shrink: 0 !important;
}

.footer .brand.brand--footer .brand__text {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  margin-left: -15px !important;
  line-height: 1.1 !important;
}

.footer .brand.brand--footer .brand__name {
  display: block !important;
  font-size: 15px;
  font-weight: 700;
}

.footer .brand.brand--footer .brand__tag {
  display: block !important;
  font-size: 12px;
  font-weight: 400;
  margin-top: 3px;
}
/* =========================
   HERO dinamik slider arka planı
========================= */

@property --hero-a {
  syntax: "<color>";
  inherits: true;
  initial-value: #06152b;
}

@property --hero-b {
  syntax: "<color>";
  inherits: true;
  initial-value: #0b3a78;
}

@property --hero-c {
  syntax: "<color>";
  inherits: true;
  initial-value: #1267c8;
}

@property --hero-glow-a {
  syntax: "<color>";
  inherits: true;
  initial-value: rgba(59,130,246,.28);
}

@property --hero-glow-b {
  syntax: "<color>";
  inherits: true;
  initial-value: rgba(255,255,255,.12);
}

.hero {
  --hero-a: #06152b;
  --hero-b: #0b3a78;
  --hero-c: #1267c8;
  --hero-glow-a: rgba(59,130,246,.28);
  --hero-glow-b: rgba(255,255,255,.12);

  transition:
    --hero-a 800ms ease,
    --hero-b 800ms ease,
    --hero-c 800ms ease,
    --hero-glow-a 800ms ease,
    --hero-glow-b 800ms ease;
}

.hero .hero__bg {
  background:
    radial-gradient(1100px 600px at 18% 25%, var(--hero-glow-b), transparent 60%),
    radial-gradient(900px 520px at 84% 40%, var(--hero-glow-a), transparent 58%),
    linear-gradient(115deg, var(--hero-a) 0%, var(--hero-b) 52%, var(--hero-c) 112%) !important;
}
/* =========================
   HERO LOGO BOYUT KONTROLÜ
   Commentum / Pago eşitleme
========================= */

.hero-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

#heroTitleImg.hero-title-img {
  display: block !important;
  width: auto !important;
  height: 82px !important;
  max-width: min(360px, 82vw) !important;
  object-fit: contain !important;
  margin: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.22));
}

/* COMMENTUM yatay uzun olduğu için genişliği kontrollü */
#heroTitleImg.logo-commentum {
  height: 52px !important;
  max-width: min(360px, 82vw) !important;
}

/* ORIGO yatay uzun olduğu için genişliği kontrollü */
#heroTitleImg.logo-origo {
  height: 122px !important;
  max-width: min(360px, 82vw) !important;
}

/* RIPACS yatay uzun olduğu için genişliği kontrollü */
#heroTitleImg.logo-ripacs {
  height: 52px !important;
  max-width: min(360px, 82vw) !important;
}

/* VITALIS yatay uzun olduğu için genişliği kontrollü */
#heroTitleImg.logo-vitalis {
  height: 52px !important;
  max-width: min(360px, 82vw) !important;
}

/* REDIMO yatay uzun olduğu için genişliği kontrollü */
#heroTitleImg.logo-redimo {
  height: 62px !important;
  max-width: min(360px, 82vw) !important;
}

/* PAGO daha kısa/genişliği az olduğu için aynı yükseklikte tutuluyor */
#heroTitleImg.logo-pago {
  height: 52px !important;
  max-width: 240px !important;
}

@media (max-width: 992px) {
  .hero-head {
    align-items: center;
  }

  #heroTitleImg.hero-title-img {
    height: 44px !important;
    max-width: 78vw !important;
  }

  #heroTitleImg.logo-commentum {
    height: 44px !important;
    max-width: 82vw !important;
  }

  #heroTitleImg.logo-pago {
    height: 44px !important;
    max-width: 220px !important;
  }
}

@media (max-width: 480px) {
  #heroTitleImg.hero-title-img {
    height: 38px !important;
    max-width: 84vw !important;
  }
}
/* Slider değişirken yeni içeriğin bir anlık görünmesini engeller */
#heroLeft.is-swapping,
#heroRight.is-swapping {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Edge-in animasyon sırasında görünür olsun */
#heroLeft.edge-in,
#heroRight.edge-in {
  visibility: visible !important;
}
/* =========================
   PRODUCT CARD LOGOLARI
========================= */

.product-logo {
  display: block;
  width: auto;
  height: 46px;
  max-width: 190px;
  object-fit: contain;
  margin: 18px 0 10px;
}

/* Uzun yatay logolar */
.product-logo-commentum,
.product-logo-ripacs,
.product-logo-vitalis {
  height: 52px;
  max-width: 220px;
}

/* Pago daha kompakt */
.product-logo-pago {
  height: 42px;
  max-width: 150px;
}

/* Redimo */
.product-logo-redimo {
  height: 42px;
  max-width: 190px;
}

/* Origo görseli büyükse dengele */
.product-logo-origo {
  height: 58px;
  max-width: 190px;
  margin-top: 8px;
  margin-bottom: 2px;
}

/* Kart başlığı olarak kullanılan eski h3 boşluklarına uyum */
.card .product-logo + .card__sub {
  margin-top: 8px;
}

@media (max-width: 640px) {
  .product-logo {
    margin-inline: auto;
  }

  .card {
    text-align: center;
  }

  .card__num {
    margin-inline: auto;
  }
}
/* =========================
   PRODUCT CARD ORTALAMA
========================= */

.card {
  display: flex;
  flex-direction: column;
  align-items: center;        /* yatay ortalama */
  justify-content: center;    /* dikey ortalama */
  text-align: center;
}

.card__num {
  margin-inline: auto;
}

.product-logo {
  display: block;
  margin: 18px auto 12px;     /* logo yatay ortalı */
}

.card__sub,
.card__desc,
.card__link {
  text-align: center;
}

.card__link {
  justify-content: center;
  align-items: center;
}
/* =========================
   ÜRÜN KART LOGO BOYUTLARI
========================= */

/* Genel logo ayarı */
.product-logo {
  display: block;
  width: auto;
  object-fit: contain;
  margin: 18px auto 12px;
}

/* ALIS */
.product-logo-alis {
  height: 58px !important;
  max-width: 210px !important;
}

/* COMMENTUM */
.product-logo-commentum {
  height: 46px !important;
  max-width: 240px !important;
}

/* PAGO */
.product-logo-pago {
  height: 55px !important;
  max-width: 180px !important;
}

/* REDIMO */
.product-logo-redimo {
  height: 52px !important;
  max-width: 210px !important;
}

/* VITALIS */
.product-logo-vitalis {
  height: 50px !important;
  max-width: 220px !important;
}

/* RİPACS */
.product-logo-ripacs {
  height: 38px !important;
  max-width: 230px !important;
}

/* ORIGO */
.product-logo-origo {
  height: 80px !important;
  max-width: 230px !important;
}
/* ORDO */
.product-logo-ordo {
  height: 60px !important;
  max-width: 230px !important;
}
/* CATENA */
.product-logo-catena {
  height: 80px !important;
  max-width: 230px !important;
}
#heroLeft.is-swapping,
#heroRight.is-swapping {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

#heroLeft.edge-in,
#heroRight.edge-in {
  opacity: 1 !important;
  visibility: visible !important;
}
/* =========================
   PRODUCT DETAIL PAGES
========================= */

.product-detail-page {
  background: #eaf6ff;
}

.product-detail-hero {
  position: relative;
  min-height: 82vh;
  padding: 190px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(59,130,246,.18), transparent 60%),
    radial-gradient(900px 520px at 82% 28%, rgba(147,197,253,.22), transparent 58%),
    linear-gradient(135deg, #eaf6ff 0%, #dbeeff 55%, #cfe8ff 100%);
}

.product-detail-hero__inner {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: clamp(30px, 5vw, 90px);
}

.product-detail-logo {
  display: block;
  width: auto;
  height: 78px;
  max-width: min(380px, 82vw);
  object-fit: contain;
  margin-bottom: 28px;
  filter: drop-shadow(0 12px 22px rgba(16,24,40,.14));
}

.product-detail-hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: clamp(40px, 4.5vw, 68px);
  line-height: 1.06;
  letter-spacing: -.04em;
  color: rgba(18,24,38,.92);
}

.product-detail-hero p {
  margin: 22px 0 0;
  max-width: 680px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(18,24,38,.68);
}

.product-detail-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.product-detail-actions .btn--ghost {
  color: rgba(18,24,38,.84);
  border-color: rgba(18,24,38,.16);
  background: rgba(255,255,255,.72);
}

.product-detail-hero__image img {
  display: block;
  width: 100%;
  max-width: 680px;
  height: auto;
  margin-left: auto;
  border-radius: 32px;
  filter: drop-shadow(0 24px 54px rgba(16,24,40,.20));
}

.product-detail-section {
  padding: 100px 0;
  background: #eaf6ff;
}

.product-detail-section--light {
  background:
    radial-gradient(700px 420px at 12% 20%, rgba(59,130,246,.12), transparent 60%),
    #dbeeff;
}

.product-detail-head {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 46px;
}

.product-detail-head span {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(136,160,62,.12);
  color: rgba(90,110,34,.95);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.product-detail-head h2 {
  margin: 18px 0 0;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  color: rgba(18,24,38,.90);
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-feature-card {
  min-height: 210px;
  padding: 30px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(16,24,40,.08);
  box-shadow: var(--soft);
}

.product-feature-card h3 {
  margin: 0 0 12px;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 22px;
  color: rgba(18,24,38,.90);
}

.product-feature-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(18,24,38,.62);
}

.product-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.product-two-col h2 {
  margin: 0 0 16px;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 34px;
  color: rgba(18,24,38,.90);
}

.product-two-col p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(18,24,38,.64);
}

.product-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.product-check-list li {
  position: relative;
  padding: 14px 16px 14px 46px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(16,24,40,.08);
  color: rgba(18,24,38,.72);
  font-weight: 700;
}

.product-check-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 12px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(136,160,62,.16);
  color: #6b7f2f;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 992px) {
  .product-detail-hero {
    padding-top: 140px;
    text-align: center;
  }

  .product-detail-hero__inner {
    grid-template-columns: 1fr;
  }

  .product-detail-logo {
    margin-inline: auto;
  }

  .product-detail-actions {
    justify-content: center;
  }

  .product-detail-hero__image img {
    margin: 10px auto 0;
  }

  .product-feature-grid,
  .product-two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .product-detail-hero {
    padding-bottom: 70px;
  }

  .product-detail-logo {
    height: 58px;
  }

  .product-feature-card {
    padding: 24px;
  }
}
/* =========================
   NAVBAR ÜRÜNLER DROPDOWN
========================= */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nav-dropdown__arrow {
  font-size: 15px;
  line-height: 1;
  opacity: .8;
  margin-left: -4px;
  transform: translateY(-1px);
}

.nav-dropdown__menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(16,24,40,.08);
  box-shadow: 0 24px 60px rgba(16,24,40,.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.nav-dropdown__menu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(18,24,38,.82);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .2px;
  line-height: 1;
}

.nav-dropdown__menu a:hover {
  background: rgba(136,160,62,.12);
  color: rgba(18,24,38,.95);
}

/* Mevcut pillnav a stilleri dropdown içini bozmasın */
.pillnav .nav-dropdown__menu a {
  justify-content: flex-start;
  gap: 0;
}

/* Mobilde pillnav zaten gizlendiği için dropdown da gizli kalır */
@media (max-width: 1100px) {
  .nav-dropdown {
    display: none;
  }
}
.drawer-products {
  margin: 4px 0 10px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(136,160,62,.08);
}

.drawer-products a {
  font-size: 13px;
  padding: 10px 12px !important;
  color: rgba(18,24,38,.70);
}
/* =========================
   ÜRÜNLER DROPDOWN - SADECE HOVER'DA AÇILSIN
========================= */

.pillnav .nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.pillnav .nav-dropdown__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pillnav .nav-dropdown__menu {
  position: absolute !important;
  left: 50%;
  top: calc(100% + 16px);
  transform: translateX(-50%) translateY(10px);

  min-width: 230px;
  padding: 10px;
  border-radius: 20px;

  background: rgba(255,255,255,.96);
  border: 1px solid rgba(16,24,40,.08);
  box-shadow: 0 24px 60px rgba(16,24,40,.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;

  transition:
    opacity .18s ease,
    transform .18s ease,
    visibility .18s ease;

  z-index: 999;
}

/* Üzerine gelince aç */
.pillnav .nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0);
}

/* Menü ile başlık arasında boşluk olsa bile hover kopmasın */
.pillnav .nav-dropdown__menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

/* Dropdown içindeki linkler */
.pillnav .nav-dropdown__menu a {
  display: flex !important;
  align-items: center;
  justify-content: flex-start !important;

  padding: 12px 14px !important;
  border-radius: 14px;

  color: rgba(18,24,38,.82) !important;
  background: transparent !important;

  font-size: 13px !important;
  font-weight: 850 !important;
  letter-spacing: .2px;
  line-height: 1;
  white-space: nowrap;
}

.pillnav .nav-dropdown__menu a:hover {
  background: rgba(136,160,62,.14) !important;
  color: rgba(18,24,38,.96) !important;
}

/* Ok işareti */
.nav-dropdown__arrow {
  font-size: 15px;
  opacity: .8;
  margin-left: -4px;
  transform: translateY(-1px);
}

/* Mobilde zaten pillnav gizleniyor */
@media (max-width: 1100px) {
  .pillnav .nav-dropdown__menu {
    display: none !important;
  }
}
/* =========================
   ÇÖZÜMLERİMİZ - ÜRÜN LOGO BOYUT SABİTLEME
   Sadece ürün kartlarını etkiler
========================= */

.products .card .product-logo {
  display: block !important;
  width: auto !important;
  height: var(--product-logo-h, 52px) !important;
  max-width: var(--product-logo-w, 220px) !important;
  max-height: var(--product-logo-h, 52px) !important;
  object-fit: contain !important;
  margin: 18px auto 14px !important;
  flex: 0 0 auto !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Tek tek logo boyutları */
.products .product-logo-alis {
  --product-logo-h: 54px;
  --product-logo-w: 210px;
}

.products .product-logo-commentum {
  --product-logo-h: 42px;
  --product-logo-w: 240px;
}

.products .product-logo-pago {
  --product-logo-h: 52px;
  --product-logo-w: 170px;
}

.products .product-logo-redimo {
  --product-logo-h: 48px;
  --product-logo-w: 210px;
}

.products .product-logo-vitalis {
  --product-logo-h: 48px;
  --product-logo-w: 220px;
}

.products .product-logo-ripacs {
  --product-logo-h: 36px;
  --product-logo-w: 230px;
}

.products .product-logo-origo {
  --product-logo-h: 68px;
  --product-logo-w: 230px;
}

.products .product-logo-ordo {
  --product-logo-h: 58px;
  --product-logo-w: 230px;
}

.products .product-logo-catena {
  --product-logo-h: 66px;
  --product-logo-w: 230px;
}

/* Kart içeriği yine ortalı kalsın */
.products .card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  min-height: 230px;
}

.products .card__sub,
.products .card__link {
  text-align: center;
}

.products .card__link {
  justify-content: center;
  align-items: center;
}
/* =========================
   NAVBAR MENÜ FONT RENGİ SİYAH
========================= */

.pillnav,
.pillnav a,
.pillnav span,
.pillnav svg {
  color: #111827 !important;
  stroke: #111827 !important;
}

.pillnav[data-theme="dark"],
.pillnav[data-theme="light"] {
  color: #111827 !important;
}

/* Dropdown içi zaten siyaha yakın ama netleştirelim */
.pillnav .nav-dropdown__menu a {
  color: #111827 !important;
}

.pillnav .nav-dropdown__menu a:hover {
  color: #000000 !important;
}

/* =========================
   ORTAK HEADER / NAV DROPDOWN
========================= */

.pillnav,
.pillnav a,
.pillnav span,
.pillnav svg {
  color: #111827 !important;
  stroke: #111827 !important;
}

.pillnav[data-theme="dark"],
.pillnav[data-theme="light"] {
  color: #111827 !important;
}

.pillnav .nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.pillnav .nav-dropdown__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .25px;
  line-height: 1;
}

.pillnav .nav-dropdown__menu {
  position: absolute !important;
  left: 50%;
  top: calc(100% + 16px);
  transform: translateX(-50%) translateY(10px);
  min-width: 240px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(16,24,40,.08);
  box-shadow: 0 24px 60px rgba(16,24,40,.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 999;
}

.pillnav .nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0);
}

.pillnav .nav-dropdown__menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.pillnav .nav-dropdown__menu a {
  display: flex !important;
  align-items: center;
  justify-content: flex-start !important;
  padding: 12px 14px !important;
  border-radius: 14px;
  color: #111827 !important;
  background: transparent !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  letter-spacing: .2px;
  line-height: 1;
  white-space: nowrap;
}

.pillnav .nav-dropdown__menu a:hover {
  background: rgba(136,160,62,.14) !important;
  color: #000000 !important;
}

.nav-dropdown__arrow {
  font-size: 15px;
  opacity: .8;
  margin-left: -4px;
  transform: translateY(-1px);
}

.drawer-products {
  margin: 4px 0 10px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(136,160,62,.08);
}

.drawer-products a {
  font-size: 13px;
  padding: 10px 12px !important;
  color: rgba(18,24,38,.70);
}

@media (max-width: 1100px) {
  .pillnav .nav-dropdown__menu {
    display: none !important;
  }
}
/* =========================
   BASINDA VENTURA MEDYA ALANI
========================= */

.press-media-section {
  padding-top: 96px;
}

.press-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.press-video-card,
.press-newspaper-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(16,24,40,.08);
  box-shadow: 0 18px 48px rgba(16,24,40,.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.press-video-card::after,
.press-newspaper-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(168,85,247,.18), transparent 70%);
  pointer-events: none;
}

.press-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 30% 20%, rgba(168,85,247,.18), transparent 45%),
    linear-gradient(135deg, #111827, #334155);
}

.press-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.press-newspaper-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(168,85,247,.10), rgba(77,163,255,.12)),
    #f8fafc;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.press-newspaper-img img {
  width: 80%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.press-video-content {
  position: relative;
  z-index: 1;
  padding: 24px 26px 28px;
}

.press-video-content span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(168,85,247,.12);
  color: #7e22ce;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.press-video-content h3 {
  margin: 0 0 10px;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 24px;
  line-height: 1.2;
  color: rgba(16,24,40,.94);
}

.press-video-content p {
  margin: 0;
  color: rgba(16,24,40,.64);
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .press-media-grid {
    grid-template-columns: 1fr;
  }
}
.press-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border: 0;
}
.press-newspaper-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.press-newspaper-link:hover .press-video-content h3 {
  color: #7e22ce;
}

.press-newspaper-link:hover img {
  transform: scale(1.035);
}

.press-newspaper-img img {
  transition: transform .25s ease;
}
/* =========================
   MP4 VIDEO TITREME DÜZELTME
========================= */

.press-video-frame {
  position: relative;
  overflow: hidden;
  background: #000;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.press-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain; /* cover yerine contain daha stabil */
  background: #000;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: auto;
}

/* Video kartında hover/scale varsa videoyu etkilemesin */
.press-video-card:hover,
.press-video-card:hover video,
.press-video-card:hover .press-video-frame {
  transform: none !important;
}

/* Kartın içindeki pseudo efekt videonun üstüne binmesin */
.press-video-card::after {
  pointer-events: none;
  z-index: 0;
}

.press-video-frame,
.press-video-content {
  position: relative;
  z-index: 1;
}

/* =========================
   MINIMAL FIX: dropdown kapalı gelsin + slider flicker önleme
========================= */

.pillnav {
  overflow: visible !important;
}

.pillnav .nav-dropdown__menu {
  display: block !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.pillnav .nav-dropdown:hover .nav-dropdown__menu,
.pillnav .nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

#heroLeft,
#heroRight {
  will-change: transform, opacity;
}

#heroImg,
#heroTitleImg {
  backface-visibility: hidden;
  transform: translateZ(0);
}

#heroLeft.is-swapping,
#heroRight.is-swapping {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

#heroLeft.edge-in,
#heroRight.edge-in {
  opacity: 1 !important;
  visibility: visible !important;
}

/* =========================
   MOBIL DRAWER ALT MENU - FINAL FIX
   Mobil drawer içinde nav-dropdown gizlenmesin; alt menü tıklayınca açılsın
========================= */

@media (max-width: 1100px) {
  .drawer .nav-dropdown,
  .drawer__panel .nav-dropdown {
    display: block !important;
  }

  .drawer .nav-dropdown__menu,
  .drawer__panel .nav-dropdown__menu {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 4px 0 10px !important;
    padding: 8px !important;
    border-radius: 16px !important;
    background: rgba(136,160,62,.08) !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .drawer .nav-dropdown.is-open .nav-dropdown__menu,
  .drawer__panel .nav-dropdown.is-open .nav-dropdown__menu,
  .drawer .nav-dropdown__menu.is-open,
  .drawer__panel .nav-dropdown__menu.is-open {
    display: grid !important;
    gap: 4px !important;
  }

  .drawer .nav-dropdown__menu a,
  .drawer__panel .nav-dropdown__menu a,
  .drawer .drawer-products a,
  .drawer__panel .drawer-products a {
    display: block !important;
    justify-content: flex-start !important;
    padding: 10px 12px !important;
    border-radius: 12px !important;
    color: rgba(18,24,38,.72) !important;
    background: transparent !important;
    font-size: 13px !important;
    font-weight: 750 !important;
    line-height: 1.2 !important;
  }

  .drawer .drawer-products,
  .drawer__panel .drawer-products,
  .drawer-products {
    display: none !important;
    margin: 4px 0 10px !important;
    padding: 8px !important;
    border-radius: 16px !important;
    background: rgba(136,160,62,.08) !important;
  }

  .drawer .drawer-products.is-open,
  .drawer__panel .drawer-products.is-open,
  .drawer-products.is-open {
    display: grid !important;
    gap: 4px !important;
  }

  .drawer-submenu-toggle,
  .drawer .nav-dropdown__trigger,
  .drawer__panel .nav-dropdown__trigger {
    position: relative !important;
    cursor: pointer !important;
    padding-right: 36px !important;
  }

  .drawer-submenu-toggle::after,
  .drawer .nav-dropdown__trigger::after,
  .drawer__panel .nav-dropdown__trigger::after {
    content: "⌄";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    transition: transform .18s ease;
    opacity: .72;
  }

  .drawer-submenu-toggle.is-open::after,
  .drawer .nav-dropdown.is-open .nav-dropdown__trigger::after,
  .drawer__panel .nav-dropdown.is-open .nav-dropdown__trigger::after {
    transform: translateY(-50%) rotate(180deg);
  }
}
.info-card--bank {
  grid-column: auto;
}

.info-card--bank .bank-detail {
  grid-template-columns: 1fr;
}

.info-card--bank .bank-item summary {
  padding: 16px 18px;
}

.info-card--bank .bank-name {
  font-size: 15px;
}

.info-card--bank .bank-currency {
  font-size: 10px;
}

@media (max-width: 1100px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}
.bank-accordion {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.bank-item {
  border-radius: 20px;
  background:
    radial-gradient(260px 140px at 90% 0%, rgba(136,160,62,.12), transparent 60%),
    rgba(248,250,252,.96);
  border: 1px solid rgba(16,24,40,.07);
  overflow: hidden;
}

.bank-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
}

.bank-item summary::-webkit-details-marker {
  display: none;
}

.bank-item summary::after {
  content: "⌄";
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(136,160,62,.14);
  color: #5d6f2c;
  font-size: 16px;
  font-weight: 900;
  transition: transform .18s ease;
}

.bank-item[open] summary::after {
  transform: rotate(180deg);
}

.bank-name {
  color: rgba(16,24,40,.92);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;
}

.bank-currency {
  margin-left: auto;
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(136,160,62,.14);
  color: #5d6f2c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.bank-detail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 20px 20px;
}

.bank-detail div {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(16,24,40,.05);
}

.bank-detail small {
  color: rgba(16,24,40,.48);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bank-detail strong {
  color: rgba(16,24,40,.82);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .bank-item summary {
    align-items: flex-start;
  }

  .bank-detail {
    grid-template-columns: 1fr;
  }
}
.map-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  padding: 22px;
  border-radius: 34px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(16,24,40,.08);
  box-shadow: 0 22px 56px rgba(16,24,40,.09);
}

.map-media {
  width: 100%;
  height: 450px;
  border-radius: 26px;
  overflow: hidden;
  background: #eef2f7;
}

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

.map-media img {
  object-fit: cover;
}
@media (max-width: 900px) {
  .map-panel {
    grid-template-columns: 1fr;
  }

  .map-media {
    height: 320px;
  }
}
/* =========================
   NAV RENK - TEMA BAZLI FINAL
   Koyu üstte beyaz, açık üstte siyah
========================= */

/* Varsayılan: koyu alan üstündeyse beyaz */
.pillnav[data-theme="dark"] > a,
.pillnav[data-theme="dark"] > a > span,
.pillnav[data-theme="dark"] > a .pillnav__ico,
.pillnav[data-theme="dark"] > .nav-dropdown > .nav-dropdown__trigger,
.pillnav[data-theme="dark"] > .nav-dropdown > .nav-dropdown__trigger > span,
.pillnav[data-theme="dark"] > .nav-dropdown > .nav-dropdown__trigger .pillnav__ico,
.pillnav[data-theme="dark"] > .nav-dropdown > .nav-dropdown__trigger .nav-dropdown__arrow {
  color: #ffffff !important;
}

.pillnav[data-theme="dark"] > a svg,
.pillnav[data-theme="dark"] > .nav-dropdown > .nav-dropdown__trigger svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

/* Açık alan üstündeyse siyah */
.pillnav[data-theme="light"] > a,
.pillnav[data-theme="light"] > a > span,
.pillnav[data-theme="light"] > a .pillnav__ico,
.pillnav[data-theme="light"] > .nav-dropdown > .nav-dropdown__trigger,
.pillnav[data-theme="light"] > .nav-dropdown > .nav-dropdown__trigger > span,
.pillnav[data-theme="light"] > .nav-dropdown > .nav-dropdown__trigger .pillnav__ico,
.pillnav[data-theme="light"] > .nav-dropdown > .nav-dropdown__trigger .nav-dropdown__arrow {
  color: #111827 !important;
}

.pillnav[data-theme="light"] > a svg,
.pillnav[data-theme="light"] > .nav-dropdown > .nav-dropdown__trigger svg {
  color: #111827 !important;
  stroke: #111827 !important;
}

/* Scroll sonrası her zaman siyah */
body.is-scrolled .pillnav > a,
body.is-scrolled .pillnav > a > span,
body.is-scrolled .pillnav > a .pillnav__ico,
body.is-scrolled .pillnav > .nav-dropdown > .nav-dropdown__trigger,
body.is-scrolled .pillnav > .nav-dropdown > .nav-dropdown__trigger > span,
body.is-scrolled .pillnav > .nav-dropdown > .nav-dropdown__trigger .pillnav__ico,
body.is-scrolled .pillnav > .nav-dropdown > .nav-dropdown__trigger .nav-dropdown__arrow {
  color: #111827 !important;
}

body.is-scrolled .pillnav > a svg,
body.is-scrolled .pillnav > .nav-dropdown > .nav-dropdown__trigger svg {
  color: #111827 !important;
  stroke: #111827 !important;
}

/* Dropdown içi her zaman siyah */
.pillnav .nav-dropdown__menu a,
.pillnav .nav-dropdown__menu a span,
.pillnav .nav-dropdown__menu a svg {
  color: #111827 !important;
  stroke: #111827 !important;
}
.fancy-title {
  --fancy-a: #101828;
  --fancy-b: #517F5A;
  --fancy-c: #88A03E;

  margin: 22px 0 18px;
  max-width: 860px;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -.055em;
  color: rgba(16,24,40,.96);
}

.fancy-title span {
  display: block;
  background: linear-gradient(135deg, var(--fancy-a) 15%, var(--fancy-b) 58%, var(--fancy-c) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.card__sub {
  width: 100%;
  margin-top: 10px;
}

.card__sub .fancy-title--card {
  margin: 8px auto 10px;
}

.fancy-title--card {
  --title-accent: #88A03E;

  max-width: 100%;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.12;
  letter-spacing: -.035em;
  text-align: center;
  color: rgba(16,24,40,.94);
}

.fancy-title--card span {
  display: block;
  background: linear-gradient(
    135deg,
    #101828 8%,
    var(--title-accent) 58%,
    color-mix(in srgb, var(--title-accent) 65%, #ffffff) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* HERO SUBTITLE FONT FINAL */
#heroSubtitle.hero__subtitle,
.hero-head #heroSubtitle {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif !important;
  font-size: clamp(22px, 2.3vw, 34px) !important;
  line-height: 1.12 !important;
  letter-spacing: -.03em !important;
  font-weight: 800 !important;
}

#heroSubtitle.hero__subtitle span,
.hero-head #heroSubtitle span {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif !important;
}
/* HERO SAĞDAN GELEN GÖRSEL BOYUTU */
#heroImg {
  width: 100% !important;
  max-width: 820x !important; /* büyüt/küçült */
  height: auto !important;
  object-fit: contain !important;
}
.footer__top {
  grid-template-columns: 1.05fr 1fr .9fr 1fr;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.footer-menu a {
  display: inline-flex;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 650;
  transition: color .18s ease, transform .18s ease;
}

.footer-menu a:hover {
  color: #fff;
  transform: translateX(3px);
}

@media (max-width: 1100px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}
/* =========================
   COOKIE CONSENT
========================= */

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  z-index: 99999;
  width: min(980px, calc(100% - 32px));
  padding: 18px;
  border-radius: 26px;
  background:
    radial-gradient(420px 180px at 10% 0%, rgba(136,160,62,.18), transparent 62%),
    rgba(255,255,255,.94);
  border: 1px solid rgba(16,24,40,.10);
  box-shadow: 0 28px 80px rgba(16,24,40,.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #101828;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.cookie-consent__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.cookie-consent__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(136,160,62,.12);
  color: #5d6f2c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.cookie-consent h3 {
  margin: 0 0 6px;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  color: rgba(16,24,40,.96);
}

.cookie-consent p {
  margin: 0;
  max-width: 720px;
  color: rgba(16,24,40,.64);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 600;
}

.cookie-consent__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 15px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 850;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}

.cookie-btn:active {
  transform: translateY(1px);
}

.cookie-btn--accept {
  color: #fff;
  background: linear-gradient(135deg, #517F5A, #88A03E);
  box-shadow: 0 14px 30px rgba(81,127,90,.24);
}

.cookie-btn--reject {
  color: rgba(16,24,40,.78);
  background: rgba(16,24,40,.06);
}

.cookie-btn--policy {
  color: #517F5A;
  background: rgba(136,160,62,.12);
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .cookie-consent {
    bottom: 14px;
    padding: 15px;
    border-radius: 22px;
  }

  .cookie-consent__inner {
    grid-template-columns: 1fr;
  }

  .cookie-consent__actions {
    justify-content: flex-start;
  }

  .cookie-btn {
    flex: 1 1 auto;
  }
}
/* TR HEADER EN DIL BUTONU */
.language-switch{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  height:42px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
  font-weight:900;
  font-size:13px;
  letter-spacing:.08em;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.topbar.is-light .language-switch{
  color:#111827;
  border-color:rgba(16,24,40,.12);
  background:rgba(255,255,255,.72);
}

@media(max-width:640px){
  .language-switch{
    height:40px;
    min-width:40px;
    font-size:12px;
  }
}
/* HERO SAĞ GÖRSEL PARLAKLIK EFEKTİ */
.banner-img figure {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

.banner-img figure::after {
  content: "";
  position: absolute;
  top: -35%;
  left: -75%;
  width: 42%;
  height: 170%;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,0) 28%,
    rgba(255,255,255,.42) 48%,
    rgba(255,255,255,.14) 58%,
    rgba(255,255,255,0) 76%,
    transparent 100%
  );
  transform: rotate(10deg);
  opacity: 0;
}

.banner-img.is-shining figure::after {
  animation: heroImageShineOnce 2.45s ease-out both;
}

@keyframes heroImageShineOnce {
  0% {
    left: -75%;
    opacity: 0;
  }

  12% {
    opacity: .95;
  }

  100% {
    left: 135%;
    opacity: 0;
  }
}
/* Mobilde Destek Merkezi butonunu küçült */
@media (max-width: 768px) {
  .topbar__right .btn--cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;

    min-height: 42px !important;
    height: 42px !important;
    max-width: 104px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;

    font-size: 13px !important;
    line-height: 1.12 !important;
    font-weight: 800 !important;
    white-space: normal !important;
  }
}