.elementor-31496 .elementor-element.elementor-element-6db2ecb{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-31496 .elementor-element.elementor-element-95d2f03{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:10px;--padding-bottom:10px;--padding-left:10px;--padding-right:10px;}.elementor-31496 .elementor-element.elementor-element-c4aeb29{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:10px;--padding-bottom:10px;--padding-left:10px;--padding-right:10px;}@media(max-width:1024px){.elementor-31496 .elementor-element.elementor-element-c4aeb29{--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}@media(min-width:769px){.elementor-31496 .elementor-element.elementor-element-6db2ecb{--content-width:1600px;}.elementor-31496 .elementor-element.elementor-element-95d2f03{--width:25%;}.elementor-31496 .elementor-element.elementor-element-c4aeb29{--width:75%;}}/* Start custom CSS for html, class: .elementor-element-2bc5a20 *//* =========================
KEDO SIDEBAR (Compact)
- Sol sidebar için
- 20% genişlik kullanımına uygun kompakt ölçüler
========================= */

:root{
  --kedo-ink:#0F172A;
  --kedo-muted:#64748B;
  --kedo-line:rgba(15,23,42,.10);

  --kedo-accent:#16A34A;
  --kedo-accent2:#22C55E;

  --kedo-card:#FFFFFF;

  --kedo-shadow:0 14px 32px rgba(2,6,23,.10);
  --kedo-shadow2:0 8px 18px rgba(2,6,23,.08);

  --kedo-r:16px;
}

/* Wrap */
.kedo-sidebar{
  display:flex;
  flex-direction:column;
  gap:12px;
  color:var(--kedo-ink);

  /* 20% sidebar için kompakt limitler */
  max-width:360px;
}

/* Card */
.kedo-sb-card{
  background:var(--kedo-card);
  border:1px solid var(--kedo-line);
  border-radius:var(--kedo-r);
  box-shadow:var(--kedo-shadow2);
  padding:14px;
  overflow:hidden;
}

/* Head */
.kedo-sb-head{ margin-bottom:10px; }
.kedo-sb-title{
  margin:0;
  font-size:14px;
  line-height:1.2;
  letter-spacing:-.02em;
}
.kedo-sb-sub{
  margin:6px 0 0;
  font-size:12px;
  line-height:1.45;
  color:var(--kedo-muted);
}

/* Apps list */
.kedo-sb-nav{
  display:flex;
  flex-direction:column;
  gap:7px;
}
.kedo-sb-link{
  display:block;
  padding:10px 11px;
  border-radius:13px;
  border:1px solid rgba(15,23,42,.08);
  background:rgba(15,23,42,.02);
  color:var(--kedo-ink);
  font-size:12.5px;
  line-height:1.2;
  text-decoration:none;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.kedo-sb-link:hover{
  transform:translateY(-1px);
  border-color:rgba(34,197,94,.45);
  background:rgba(34,197,94,.08);
  box-shadow:0 10px 20px rgba(2,6,23,.08);
}

/* Active state */
.kedo-sb-link.is-active{
  background:rgba(34,197,94,.10);
  border-color:rgba(34,197,94,.55);
  box-shadow:0 12px 22px rgba(2,6,23,.10);
  position:relative;
}
.kedo-sb-link.is-active::before{
  content:"";
  position:absolute;
  left:8px; top:9px; bottom:9px;
  width:3px;
  border-radius:99px;
  background:linear-gradient(180deg,var(--kedo-accent),var(--kedo-accent2));
}

/* Product categories (vertical list, single line) */
.kedo-sb-cats{
  display:flex;
  flex-direction:column;
  gap:7px;
}

.kedo-sb-cat{
  display:block;
  padding:10px 11px;
  border-radius:13px;
  border:1px solid rgba(15,23,42,.08);
  background:rgba(255,255,255,.92);
  color:var(--kedo-ink);
  font-size:12.5px;
  line-height:1.2;
  text-decoration:none;

  /* tek satır */
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;

  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.kedo-sb-cat:hover{
  transform:translateY(-1px);
  border-color:rgba(34,197,94,.45);
  background:rgba(34,197,94,.08);
  box-shadow:0 10px 20px rgba(2,6,23,.08);
}

/* CTA */
.kedo-sb-cta{
  border-radius:calc(var(--kedo-r) + 4px);
  border:1px solid rgba(34,197,94,.22);
  background:rgba(255,255,255,.92);
  box-shadow:var(--kedo-shadow);
  padding:14px;
  position:relative;
  overflow:hidden;
}

.kedo-sb-cta__bg{
  position:absolute; inset:-2px;
  background:
    radial-gradient(820px 360px at 10% 0%, rgba(34,197,94,.22), transparent 55%),
    radial-gradient(620px 320px at 100% 20%, rgba(22,163,74,.18), transparent 55%),
    linear-gradient(180deg, rgba(15,23,42,.02), rgba(15,23,42,.00));
  pointer-events:none;
}

.kedo-sb-cta__title{
  margin:0;
  font-size:14px;
  line-height:1.2;
  letter-spacing:-.02em;
  position:relative;
  z-index:1;
}

.kedo-sb-cta__text{
  margin:7px 0 10px;
  font-size:12px;
  line-height:1.5;
  color:var(--kedo-muted);
  position:relative;
  z-index:1;
}

.kedo-sb-cta__btns{
  display:flex;
  gap:9px;
  flex-wrap:wrap;
  position:relative;
  z-index:1;
}

/* Buttons (strong reset to avoid theme conflicts) */
.kedo-btn{
  -webkit-appearance:none !important;
  appearance:none !important;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:13px;
  font-size:12.5px;
  line-height:1;
  text-decoration:none !important;
  border:1px solid transparent;
  background:transparent;
  box-shadow:none;
  outline:none;
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease, border-color .18s ease;
}

/* Primary */
.kedo-btn--primary{
  color:#fff !important;
  background:linear-gradient(135deg, var(--kedo-accent), var(--kedo-accent2)) !important;
  border-color:transparent !important;
  box-shadow:0 12px 24px rgba(22,163,74,.22);
}
.kedo-btn--primary:hover{
  transform:translateY(-1px);
  filter:saturate(1.05);
  box-shadow:0 16px 30px rgba(22,163,74,.26);
}

/* Ghost (İletişim) — çerçeve fix */
.kedo-btn--ghost{
  color:var(--kedo-ink) !important;
  background:rgba(255,255,255,.90) !important;
  border:1px solid rgba(15,23,42,.22) !important; /* net çerçeve */
}
.kedo-btn--ghost:hover{
  transform:translateY(-1px);
  border-color:rgba(34,197,94,.55) !important;
  background:rgba(34,197,94,.08) !important;
  box-shadow:0 10px 20px rgba(2,6,23,.08);
}

.kedo-sb-cta__note{
  margin-top:10px;
  display:flex;
  gap:8px;
  align-items:flex-start;
  font-size:11.5px;
  line-height:1.35;
  color:rgba(15,23,42,.78);
  position:relative;
  z-index:1;
}

.kedo-dot{
  width:8px; height:8px;
  border-radius:99px;
  margin-top:3px;
  background:linear-gradient(180deg, var(--kedo-accent), var(--kedo-accent2));
  box-shadow:0 10px 18px rgba(34,197,94,.20);
}

/* Responsive */
@media (max-width:1024px){
  .kedo-sidebar{ max-width:520px; } /* off-canvas içinde rahat */
}

@media (max-width:767px){
  .kedo-sb-card, .kedo-sb-cta{ padding:13px; }
  .kedo-btn{ width:100%; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3cbfb9c *//* =========================
BLOK 1 — KEDO Uygulama Hero (Scoped)
========================= */

.kedo-app-hero{
  padding:28px 16px;
}

.kedo-app-hero__wrap{
  max-width:1600px;
  margin:0 auto;
}

.kedo-app-hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:stretch;
}

.kedo-app-hero__content{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:22px;
  padding:26px 26px;
  box-shadow:0 14px 32px rgba(2,6,23,.08);
}

.kedo-app-hero__badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  font-size:12.5px;
  line-height:1;
  color:#0F172A;
  border:1px solid rgba(34,197,94,.35);
  background:rgba(34,197,94,.08);
  margin-bottom:14px;
}

.kedo-app-hero__title{
  margin:0;
  font-size:38px;
  line-height:1.1;
  letter-spacing:-.03em;
  color:#0F172A;
}

.kedo-app-hero__lead{
  margin:12px 0 16px;
  font-size:15.5px;
  line-height:1.7;
  color:rgba(15,23,42,.78);
  max-width:68ch;
}

.kedo-app-hero__bullets{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.kedo-app-hero__bullets li{
  position:relative;
  padding-left:16px;
  font-size:14px;
  line-height:1.55;
  color:rgba(15,23,42,.84);
}

.kedo-app-hero__bullets li::before{
  content:"";
  position:absolute;
  left:0;
  top:.6em;
  width:8px;
  height:8px;
  border-radius:999px;
  background:linear-gradient(135deg,#16A34A,#22C55E);
  box-shadow:0 10px 18px rgba(34,197,94,.20);
  transform:translateY(-50%);
}

.kedo-app-hero__cta{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.kedo-app-btn{
  -webkit-appearance:none;
  appearance:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  font-size:14px;
  line-height:1;
  text-decoration:none;
  border:1px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, filter .18s ease;
  white-space:nowrap;
}

.kedo-app-btn--primary{
  color:#fff;
  background:linear-gradient(135deg,#16A34A,#22C55E);
  box-shadow:0 14px 28px rgba(22,163,74,.22);
}

.kedo-app-btn--primary:hover{
  transform:translateY(-1px);
  filter:saturate(1.05);
  box-shadow:0 18px 34px rgba(22,163,74,.26);
}

.kedo-app-btn--ghost{
  color:#0F172A;
  background:rgba(255,255,255,.92);
  border-color:rgba(15,23,42,.22);
}

.kedo-app-btn--ghost:hover{
  transform:translateY(-1px);
  border-color:rgba(34,197,94,.55);
  background:rgba(34,197,94,.08);
  box-shadow:0 10px 22px rgba(2,6,23,.08);
}

/* Visual */
.kedo-app-hero__visual{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 14px 32px rgba(2,6,23,.08);
  position:relative;
  min-height:360px;
  background:
    radial-gradient(1000px 420px at 10% 0%, rgba(34,197,94,.22), transparent 55%),
    radial-gradient(800px 380px at 100% 25%, rgba(22,163,74,.18), transparent 55%),
    linear-gradient(135deg, rgba(15,23,42,.10), rgba(15,23,42,.35));
}

/* “Görsel” yerine bir image koyacaksan inner'ı absolute yapabilirsin */
.kedo-app-hero__visual-inner{
  position:absolute;
  inset:0;
  /* Placeholder “image feel” */
  background:
    linear-gradient(180deg, rgba(15,23,42,.10), rgba(15,23,42,.52)),
    radial-gradient(900px 520px at 30% 15%, rgba(34,197,94,.35), transparent 55%);
}

/* Responsive */
@media (max-width:1024px){
  .kedo-app-hero__grid{
    grid-template-columns:1fr;
  }
  .kedo-app-hero__visual{
    min-height:320px;
  }
  .kedo-app-hero__title{
    font-size:32px;
  }
}

@media (max-width:767px){
  .kedo-app-hero{
    padding:18px 12px;
  }
  .kedo-app-hero__content{
    padding:18px 16px;
    border-radius:18px;
  }
  .kedo-app-hero__visual{
    border-radius:18px;
    min-height:260px;
  }
  .kedo-app-hero__title{
    font-size:28px;
  }
  .kedo-app-btn{
    width:100%;
  }
}

/* =========================
KEDO APP HERO VISUAL FIX
========================= */

.kedo-app-hero__visual{
  position:relative;
  min-height:480px;
  border-radius:24px;
  overflow:hidden;
  background:#f5f7f9;
}

.kedo-app-hero__visual-inner{
  position:absolute;
  inset:0;
  background-image:url("https://kedosilicone.com.tr/wp-content/uploads/2026/01/kedo-uygulama-ev-mutfak-900x640-1.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  transition:transform .6s cubic-bezier(.22,.9,.18,1);
}

/* Premium hover effect */
.kedo-app-hero__visual:hover .kedo-app-hero__visual-inner{
  transform:scale(1.04);
}

/* Soft gradient overlay */
.kedo-app-hero__visual::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.25));
  pointer-events:none;
}

/* Responsive */
@media (max-width: 980px){
  .kedo-app-hero__visual{
    min-height:360px;
  }
}

@media (max-width: 640px){
  .kedo-app-hero__visual{
    min-height:280px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-12de50f *//* =========================
BLOK 2 — Kullanım Alanları Kartları (Scoped)
========================= */

.kedo-app-uses{
  padding:14px 16px 28px;
}

.kedo-app-uses__wrap{
  max-width:1600px;
  margin:0 auto;
}

.kedo-app-uses__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
  margin-bottom:14px;
}

.kedo-app-uses__title{
  margin:0;
  font-size:22px;
  line-height:1.2;
  letter-spacing:-.02em;
  color:#0F172A;
}

.kedo-app-uses__desc{
  margin:0;
  max-width:72ch;
  font-size:13.5px;
  line-height:1.6;
  color:rgba(15,23,42,.70);
}

/* Grid: 1 big + 2 small */
.kedo-app-uses__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  grid-auto-rows: 1fr;
  gap:14px;
}

.kedo-app-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 26px rgba(2,6,23,.08);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display:flex;
  flex-direction:column;
  min-height:220px;
}

.kedo-app-card:hover{
  transform:translateY(-2px);
  border-color:rgba(34,197,94,.40);
  box-shadow:0 16px 34px rgba(2,6,23,.10);
}

/* ===== Media Base ===== */
.kedo-app-card__media{
  height:140px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  background-color:#0F172A;
  background-image:
    radial-gradient(900px 380px at 20% 0%, rgba(34,197,94,.30), transparent 55%),
    linear-gradient(135deg, rgba(15,23,42,.12), rgba(15,23,42,.44));
  position:relative;
}

/* Premium overlay (her görselde aynı ton) */
.kedo-app-card__media::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(520px 260px at 18% 18%, rgba(47,163,107,.22), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.32));
}

/* ===== Görsel Bağlama ===== */
.kedo-app-card__media--screen{
  background-image:
    radial-gradient(900px 380px at 20% 0%, rgba(34,197,94,.18), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.28)),
    url("https://kedosilicone.com.tr/wp-content/uploads/2026/01/serigrafi-baski-silikonu.jpg?v=1");
}

.kedo-app-card__media--puff{
  background-image:
    radial-gradient(900px 380px at 80% 10%, rgba(34,197,94,.18), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.34)),
    url("https://kedosilicone.com.tr/wp-content/uploads/2026/01/gofre-kabartma-baski-silikonu.jpg?v=1");
}

.kedo-app-card__media--transfer{
  background-image:
    radial-gradient(900px 380px at 35% 10%, rgba(34,197,94,.18), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.34)),
    url("https://kedosilicone.com.tr/wp-content/uploads/2026/01/Etiket-Silikonu.jpg?v=1");
}

.kedo-app-card__body{
  padding:14px 14px 16px;
}

.kedo-app-card__title{
  margin:0 0 8px;
  font-size:15px;
  line-height:1.2;
  letter-spacing:-.02em;
  color:#0F172A;
}

.kedo-app-card__text{
  margin:0;
  font-size:13px;
  line-height:1.6;
  color:rgba(15,23,42,.74);
}

/* Big card spans two rows on desktop */
.kedo-app-card--big{
  grid-row: span 2;
  min-height:454px;
}

/* FIX — Big card görseli büyüt (boşluğu görsele taşı) */
.kedo-app-card--big .kedo-app-card__media{
  height:420px;
}

.kedo-app-card--big .kedo-app-card__body{
  padding:14px 16px 16px;
}

.kedo-app-card--big .kedo-app-card__title{
  font-size:16px;
}

/* Responsive */
@media (max-width:1024px){
  .kedo-app-uses__head{
    flex-direction:column;
    align-items:flex-start;
  }

  .kedo-app-uses__grid{
    grid-template-columns:1fr;
  }

  .kedo-app-card--big{
    grid-row:auto;
    min-height:unset;
  }

  /* Tablet: big kart görseli dolu kalsın */
  .kedo-app-card--big .kedo-app-card__media{
    height:300px;
  }
}

@media (max-width:767px){
  .kedo-app-uses{
    padding:12px 12px 22px;
  }

  .kedo-app-card{
    border-radius:18px;
  }

  .kedo-app-uses__title{
    font-size:20px;
  }

  /* Mobil: görsel biraz daha dengeli */
  .kedo-app-card__media{ height:150px; }
  .kedo-app-card--big .kedo-app-card__media{ height:220px; }
}

/* =========================
TABLET FULL FILL FIX
Sadece 1024px altı
Masaüstüne dokunmaz
========================= */

@media (max-width:1024px){

  /* Grid tek kolon zaten geliyor */
  .kedo-app-card{
    min-height:auto;
  }

  /* Tüm kart görselleri aynı dolulukta */
  .kedo-app-card__media{
    height:320px; /* serigrafi doluluğu */
    background-size:cover;
    background-position:center;
  }

  /* Big karta özel override kaldır */
  .kedo-app-card--big{
    min-height:auto;
  }

  .kedo-app-card--big .kedo-app-card__media{
    height:320px;
  }
}

@media (max-width:767px){
  .kedo-app-card__media{
    height:240px;
  }
}

/* BLOK 2 — EV/MUTFAK/SOFRA görsel bağlama (SAME DOMAIN) */
.kedo-app-card__media--kitchen{
  background-image:
    radial-gradient(900px 380px at 20% 0%, rgba(34,197,94,.18), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.34)),
    url("https://kedosilicone.com.tr/wp-content/uploads/2026/01/kedo-uygulama-ev-mutfak-900x640-1.png?v=3");
}

.kedo-app-card__media--mold{
  background-image:
    radial-gradient(900px 380px at 80% 10%, rgba(34,197,94,.18), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.38)),
    url("https://kedosilicone.com.tr/wp-content/uploads/2026/02/fabrika-5.jpg?v=3");
}

.kedo-app-card__media--sealhome{
  background-image:
    radial-gradient(900px 380px at 35% 10%, rgba(34,197,94,.18), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.38)),
    url("https://kedosilicone.com.tr/wp-content/uploads/2026/01/kedo-uygulama-endustri-900x640-1.png?v=3");
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2aaa112 *//* =========================
BLOK 3 — Kritik Performans Kriterleri (Scoped)
========================= */

.kedo-app-criteria{
  padding:10px 16px 26px;
}

.kedo-app-criteria__wrap{
  max-width:1600px;
  margin:0 auto;
}

.kedo-app-criteria__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
  margin-bottom:14px;
}

.kedo-app-criteria__title{
  margin:0;
  font-size:22px;
  line-height:1.2;
  letter-spacing:-.02em;
  color:#0F172A;
}

.kedo-app-criteria__desc{
  margin:0;
  max-width:80ch;
  font-size:13.5px;
  line-height:1.6;
  color:rgba(15,23,42,.70);
}

.kedo-app-criteria__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.kedo-app-crit{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:20px;
  box-shadow:0 12px 26px rgba(2,6,23,.08);
  padding:14px 14px 14px;
  position:relative;
  overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.kedo-app-crit:hover{
  transform:translateY(-2px);
  border-color:rgba(34,197,94,.40);
  box-shadow:0 16px 34px rgba(2,6,23,.10);
}

.kedo-app-crit__bar{
  position:absolute;
  left:0; top:0; bottom:0;
  width:4px;
  background:linear-gradient(180deg,#16A34A,#22C55E);
  box-shadow:0 10px 22px rgba(34,197,94,.22);
}

.kedo-app-crit__title{
  margin:0 0 8px 10px;
  font-size:15px;
  line-height:1.25;
  letter-spacing:-.02em;
  color:#0F172A;
}

.kedo-app-crit__text{
  margin:0 0 0 10px;
  font-size:13px;
  line-height:1.65;
  color:rgba(15,23,42,.74);
}

/* Responsive */
@media (max-width:1024px){
  .kedo-app-criteria__head{
    flex-direction:column;
    align-items:flex-start;
  }
  .kedo-app-criteria__grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:767px){
  .kedo-app-criteria{
    padding:8px 12px 22px;
  }
  .kedo-app-crit{
    border-radius:18px;
  }
  .kedo-app-criteria__title{
    font-size:20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ca55622 *//* =========================
BLOK 4 — Seçim Rehberi (Scoped)
========================= */

.kedo-app-select{
  padding:10px 16px 30px;
}

.kedo-app-select__wrap{
  max-width:1600px;
  margin:0 auto;
}

.kedo-app-select__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:14px;
  align-items:stretch;
}

.kedo-app-select__content{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:22px;
  box-shadow:0 12px 26px rgba(2,6,23,.08);
  padding:18px 18px;
}

.kedo-app-select__title{
  margin:0;
  font-size:22px;
  line-height:1.2;
  letter-spacing:-.02em;
  color:#0F172A;
}

.kedo-app-select__lead{
  margin:10px 0 14px;
  font-size:13.5px;
  line-height:1.7;
  color:rgba(15,23,42,.74);
  max-width:86ch;
}

.kedo-app-select__items{
  display:grid;
  gap:10px;
}

.kedo-app-selitem{
  border:1px solid rgba(15,23,42,.08);
  border-radius:18px;
  padding:12px 12px;
  background:rgba(15,23,42,.02);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.kedo-app-selitem:hover{
  transform:translateY(-1px);
  border-color:rgba(34,197,94,.35);
  background:rgba(34,197,94,.06);
  box-shadow:0 10px 20px rgba(2,6,23,.06);
}

.kedo-app-selitem__title{
  margin:0 0 6px;
  font-size:14px;
  line-height:1.2;
  letter-spacing:-.02em;
  color:#0F172A;
}

.kedo-app-selitem__text{
  margin:0;
  font-size:12.8px;
  line-height:1.6;
  color:rgba(15,23,42,.72);
}

.kedo-app-select__cta{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

/* Visual */
.kedo-app-select__visual{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 12px 26px rgba(2,6,23,.08);
  position:relative;
  min-height:420px;
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(34,197,94,.22), transparent 55%),
    radial-gradient(760px 380px at 100% 25%, rgba(22,163,74,.18), transparent 55%),
    linear-gradient(135deg, rgba(15,23,42,.12), rgba(15,23,42,.58));
}

.kedo-app-select__visual-inner{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(15,23,42,.10), rgba(15,23,42,.60)),
    radial-gradient(900px 520px at 35% 18%, rgba(34,197,94,.32), transparent 55%);
}

/* Floating stat */
.kedo-app-select__stat{
  position:absolute;
  left:16px;
  bottom:16px;
  right:16px;
  padding:12px 12px;
  border-radius:18px;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(255,255,255,.55);
  backdrop-filter:saturate(180%) blur(10px);
  -webkit-backdrop-filter:saturate(180%) blur(10px);
  box-shadow:0 16px 34px rgba(2,6,23,.14);
}

.kedo-app-select__stat-top{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:6px;
}

.kedo-app-select__stat-dot{
  width:9px; height:9px;
  border-radius:999px;
  background:linear-gradient(135deg,#16A34A,#22C55E);
  box-shadow:0 10px 18px rgba(34,197,94,.22);
}

.kedo-app-select__stat-title{
  font-size:13px;
  line-height:1.2;
  font-weight:600;
  color:#0F172A;
}

.kedo-app-select__stat-text{
  margin:0;
  font-size:12.5px;
  line-height:1.5;
  color:rgba(15,23,42,.72);
}

/* Responsive */
@media (max-width:1024px){
  .kedo-app-select__grid{
    grid-template-columns:1fr;
  }
  .kedo-app-select__visual{
    min-height:320px;
  }
}

@media (max-width:767px){
  .kedo-app-select{
    padding:8px 12px 24px;
  }
  .kedo-app-select__content,
  .kedo-app-select__visual{
    border-radius:18px;
  }
  .kedo-app-select__title{
    font-size:20px;
  }
  .kedo-app-btn{
    width:100%;
  }
}

/* =========================
SEÇİM REHBERİ – GÖRSEL BAĞLAMA
========================= */

.kedo-app-select__visual-inner{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.35)),
    radial-gradient(600px 320px at 20% 15%, rgba(34,197,94,.20), transparent 60%),
    url("https://kedosilicone.com.tr/wp-content/uploads/2026/02/fabrika-5.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c3e855c *//* =========================
BLOK 6 — SSS (details/summary) (Scoped)
========================= */

.kedo-app-faq{
  padding:10px 16px 34px;
}

.kedo-app-faq__wrap{
  max-width:1600px;
  margin:0 auto;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:22px;
  box-shadow:0 12px 26px rgba(2,6,23,.08);
  padding:18px;
}

.kedo-app-faq__head{
  margin-bottom:12px;
}

.kedo-app-faq__title{
  margin:0;
  font-size:22px;
  line-height:1.2;
  letter-spacing:-.02em;
  color:#0F172A;
}

.kedo-app-faq__desc{
  margin:10px 0 0;
  font-size:13.5px;
  line-height:1.7;
  color:rgba(15,23,42,.72);
  max-width:92ch;
}

.kedo-app-faq__link{
  color:#16A34A;
  text-decoration:none;
  border-bottom:1px solid rgba(34,197,94,.55);
  padding-bottom:2px;
}

.kedo-app-faq__list{
  display:grid;
  gap:10px;
}

.kedo-app-faq__item{
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  background:rgba(15,23,42,.02);
  overflow:hidden;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.kedo-app-faq__item[open]{
  background:rgba(34,197,94,.06);
  border-color:rgba(34,197,94,.35);
  box-shadow:0 10px 22px rgba(2,6,23,.06);
}

.kedo-app-faq__q{
  list-style:none;
  cursor:pointer;
  padding:13px 14px;
  font-size:13.5px;
  line-height:1.45;
  color:#0F172A;
  font-weight:600;
  position:relative;
}

.kedo-app-faq__q::-webkit-details-marker{ display:none; }

.kedo-app-faq__q::after{
  content:"+";
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  width:26px;
  height:26px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  color:#0F172A;
  background:#fff;
  border:1px solid rgba(15,23,42,.12);
}

.kedo-app-faq__item[open] .kedo-app-faq__q::after{
  content:"–";
  border-color:rgba(34,197,94,.35);
}

.kedo-app-faq__a{
  padding:0 14px 14px;
}

.kedo-app-faq__a p{
  margin:0;
  font-size:13px;
  line-height:1.7;
  color:rgba(15,23,42,.74);
}

/* Responsive */
@media (max-width:767px){
  .kedo-app-faq{
    padding:8px 12px 26px;
  }
  .kedo-app-faq__wrap{
    border-radius:18px;
    padding:14px;
  }
  .kedo-app-faq__title{
    font-size:20px;
  }
  .kedo-app-faq__q{
    padding:12px 12px;
  }
  .kedo-app-faq__q::after{
    right:12px;
  }
  .kedo-app-faq__a{
    padding:0 12px 12px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2f3d749 *//* =========================
BLOK 7 — Diğer Uygulama Alanları (Scoped)
========================= */

.kedo-app-more{
  padding:10px 16px 36px;
}

.kedo-app-more__wrap{
  max-width:1600px;
  margin:0 auto;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:22px;
  box-shadow:0 12px 26px rgba(2,6,23,.08);
  padding:18px;
}

.kedo-app-more__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  margin-bottom:14px;
}

.kedo-app-more__title{
  margin:0;
  font-size:22px;
  line-height:1.2;
  letter-spacing:-.02em;
  color:#0F172A;
}

.kedo-app-more__desc{
  margin:10px 0 0;
  font-size:13.5px;
  line-height:1.7;
  color:rgba(15,23,42,.72);
  max-width:92ch;
}

.kedo-app-more__cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Grid */
.kedo-app-more__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

/* Card */
.kedo-app-morecard{
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow:0 12px 26px rgba(2,6,23,.08);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  min-height:250px;
}

.kedo-app-morecard:hover{
  transform:translateY(-2px);
  border-color:rgba(34,197,94,.40);
  box-shadow:0 16px 34px rgba(2,6,23,.10);
}

.kedo-app-morecard__media{
  height:140px;
  background:
    radial-gradient(900px 380px at 20% 0%, rgba(34,197,94,.30), transparent 55%),
    linear-gradient(135deg, rgba(15,23,42,.12), rgba(15,23,42,.54));
}

/* Visual variations (placeholder) */
.kedo-app-morecard__media--shoe{
  background:
    radial-gradient(900px 380px at 75% 10%, rgba(34,197,94,.26), transparent 55%),
    linear-gradient(135deg, rgba(15,23,42,.10), rgba(15,23,42,.58));
}
.kedo-app-morecard__media--lingerie{
  background:
    radial-gradient(900px 380px at 25% 10%, rgba(34,197,94,.22), transparent 55%),
    linear-gradient(135deg, rgba(15,23,42,.10), rgba(15,23,42,.60));
}
.kedo-app-morecard__media--home{
  background:
    radial-gradient(900px 380px at 45% 10%, rgba(34,197,94,.20), transparent 55%),
    linear-gradient(135deg, rgba(15,23,42,.10), rgba(15,23,42,.62));
}
.kedo-app-morecard__media--industry{
  background:
    radial-gradient(900px 380px at 85% 10%, rgba(34,197,94,.22), transparent 55%),
    linear-gradient(135deg, rgba(15,23,42,.12), rgba(15,23,42,.66));
}
.kedo-app-morecard__media--rd{
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(34,197,94,.28), transparent 55%),
    radial-gradient(800px 360px at 100% 25%, rgba(22,163,74,.18), transparent 55%),
    linear-gradient(135deg, rgba(15,23,42,.12), rgba(15,23,42,.68));
}

.kedo-app-morecard__body{
  padding:14px 14px 16px;
}

.kedo-app-morecard__title{
  margin:0 0 8px;
  font-size:15px;
  line-height:1.25;
  letter-spacing:-.02em;
  color:#0F172A;
}

.kedo-app-morecard__text{
  margin:0 0 10px;
  font-size:13px;
  line-height:1.6;
  color:rgba(15,23,42,.74);
}

.kedo-app-morecard__link{
  font-size:13px;
  color:#16A34A;
  font-weight:600;
}

/* Wide card spans 2 columns on desktop */
.kedo-app-morecard--wide{
  grid-column: span 2;
  min-height:260px;
}
.kedo-app-morecard--wide .kedo-app-morecard__media{
  height:160px;
}

/* Footer */
.kedo-app-more__foot{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  margin-top:14px;
  flex-wrap:wrap;
}

.kedo-app-more__note{
  display:flex;
  gap:8px;
  align-items:flex-start;
  font-size:12.5px;
  line-height:1.45;
  color:rgba(15,23,42,.74);
  max-width:92ch;
}

.kedo-app-more__help{
  font-size:13px;
  color:#0F172A;
  text-decoration:none;
  border-bottom:1px solid rgba(15,23,42,.22);
  padding-bottom:2px;
  transition:border-color .18s ease, color .18s ease;
}

.kedo-app-more__help:hover{
  color:#16A34A;
  border-color:rgba(34,197,94,.70);
}

/* Responsive */
@media (max-width:1024px){
  .kedo-app-more__head{
    flex-direction:column;
  }
  .kedo-app-more__grid{
    grid-template-columns:1fr;
  }
  .kedo-app-morecard--wide{
    grid-column:auto;
  }
}

@media (max-width:767px){
  .kedo-app-more{
    padding:8px 12px 26px;
  }
  .kedo-app-more__wrap{
    border-radius:18px;
    padding:14px;
  }
  .kedo-app-more__title{
    font-size:20px;
  }
  .kedo-app-morecard{
    border-radius:18px;
  }
  .kedo-app-morecard__media{
    height:130px;
  }
  .kedo-app-btn{
    width:100%;
  }
}

/* =========================
KEDO - MORE APPS (ONLY IMAGES)
Yapıyı bozmaz: sadece background-image bağlar
========================= */

/* Ortak media davranışı (eğer zaten varsa sorun değil) */
.kedo-app-morecard__media{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 1) Shoe */
.kedo-app-morecard__media--shoe{
  background-image:url("https://kedosilicone.com.tr/wp-content/uploads/2026/01/kedo-uygulama-ayakkabi.jpg");
}

/* 2) Lingerie */
.kedo-app-morecard__media--lingerie{
  background-image:url("https://kedosilicone.com.tr/wp-content/uploads/2026/02/kedo-uygulama-icgiyimsutyen.png");
}

/* 3) Home */
.kedo-app-morecard__media--home{
  background-image:url("https://kedosilicone.com.tr/wp-content/uploads/2026/01/kedo-uygulama-ev-mutfak-900x640-1.png");
}

/* 4) Industry */
.kedo-app-morecard__media--industry{
  background-image:url("https://kedosilicone.com.tr/wp-content/uploads/2026/01/kedo-uygulama-endustri-900x640-1.png");
}

/* 5) R&D */
.kedo-app-morecard__media--rd{
  background-image:url("https://kedosilicone.com.tr/wp-content/uploads/2026/01/kedo-uygulama-arge.jpg");
}/* End custom CSS */