:root{
  --bg:#f6f7fba8;
  --bg2:#eef1f894;

  --text:#0F172A;
  --muted:#475569;

  --line:#0F172A1F;
  --line2:#0F172A14;

  --shadow:0 10px 20px #0206171A;
  --shadow2:0 10px 20px #02061714;
  --shadow3:0 5px 10px #02061708;
  --shadow4:0 5px 10px #3a486459;
  --shadow5:0 5px 10px #b9d2e242;

  --radius:18px;
  --radius2:26px;

  --max:1120px;
  --pad:20px;

  --cta:#2563EB;
  --cta2:#06B6D4;

  --headerH:72px;

  --link:#0369A1;
  --linkHover:#075985;
}

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

html{
  background:
    radial-gradient(1400px 820px at 12% 0%, #25a6eb1c, #00000000 62%),
    radial-gradient(1200px 760px at 88% 8%, #06b6d412, #00000000 64%),
    radial-gradient(1100px 720px at 60% 110%, #a855f70f, #00000000 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  background-repeat:no-repeat;
  background-attachment:fixed;
}

body{
  margin:0;
  background:transparent;
  color:var(--text);
  font:16px/1.55 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  padding-top:var(--headerH);
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding-left:calc(var(--pad) + env(safe-area-inset-left)) !important;
  padding-right:calc(var(--pad) + env(safe-area-inset-right)) !important;
}

.muted{color:var(--muted)}

.text-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--link);
  font-weight:600;
  font-size:14px;
  letter-spacing:.1px;
  margin-top:12px;
}

.text-link:hover{color:var(--linkHover)}

.inTextLink {
  color: var(--link);
  font-weight: 600;
}

.inTextLink:hover {
  color:var(--linkHover);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#FFFFFFB8;
  color:var(--text);
  box-shadow:var(--shadow2);
  transition:transform .15s ease,border-color .15s ease,background .15s ease,box-shadow .15s ease;
  cursor:pointer;
  white-space:nowrap;
}
.btn:hover{
  transform:translateY(-2px);
  border-color:#0F172A2E;
  background:#FFFFFFF2;
  box-shadow:var(--shadow);
}
.btn.primary{background:#2563EBF2;color:#FFFFFF;}
.btn.primary:hover{background:#2563EB;}

.btn.apps{
  border: 1px solid #5e656838;
  background: #e3e7e97a;
  color: var(--text);
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow5);
}

.btn.apps:hover{background:#ffffff;}

.btn.cta-alt{
  padding:13px 18px;
  border-radius:16px;
  font-weight:600;
  letter-spacing:.15px;
  border-color: #0e96e95c;
  background: #0ee9e02e;
  color:#083044;
}

.btn.cta-alt:hover{
  border-color:#0e96e982;
  background:#00fff542;
  box-shadow:0 18px 40px #0206171F;
}

.btn.whatsapp{
  border:none;
  background:linear-gradient(180deg, #00D64F 0%, #00AC40 46%, #008C35 100%);
  color:#FFFFFF;
  text-shadow:0 1px 1px #0000004D;
  position:relative;
  overflow:hidden;
  box-shadow:0 2px 5px #16A34A33, 0 10px 22px #02061714;
}

.btn.whatsapp:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(140px 140px at 18% 0%, #FFFFFF4D, #00000000 60%),
    radial-gradient(180px 180px at 85% 110%, #FFFFFF1F, #00000000 65%);
  pointer-events:none;
  opacity:.95;
}

.btn.whatsapp:hover{
  background:linear-gradient(180deg, #00EF58 0%, #00B443 46%, #00B243 100%);
  box-shadow:0 5px 10px #16A34A57, 0 10px 22px #02061714;
}

.wa-ic{width:18px;height:18px;fill:#FFFFFF;opacity:1;}
.apply-btn{
  font-weight:800;
  letter-spacing:.2px;
  padding:10px 18px;
  border-radius:16px;
  box-shadow:0 14px 30px #0206171F;
}
.apply-btn:hover{box-shadow:0 18px 40px #02061729;}

.pill{
  display:inline-flex;
  text-transform:uppercase;
  font-size:12px;
  font-weight:700;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border:1px solid var(--line2);
  border-radius:10px;
  color:#0F172AA8;
  background:#FFFFFFC7;
  backdrop-filter:blur(10px);
}

.pill .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#22C55E;
  box-shadow:0 0 0 0 #22C55E80;
  animation:live-pulse 1.6s ease-out infinite;
}

@keyframes live-pulse{
  0%{box-shadow:0 0 0 0 #22C55E80}
  70%{box-shadow:0 0 0 7px #22C55E00}
  100%{box-shadow:0 0 0 0 #22C55E00}
}

@media (prefers-reduced-motion:reduce){
  .pill .dot{animation:none;box-shadow:0 0 0 4px #22C55E29}
}

.header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:60;
  background:#ffffffbd;
  backdrop-filter:blur(16px);
  border-bottom:1px solid #FFFFFF14;
  overflow:hidden;
  box-shadow:0 2px 15px #325E562E;
}
.header:before{
  content:"";
  position:absolute;
  inset:-60px -90px -70px -90px;
  background:
    radial-gradient(820px 260px at 14% 0%, #22D3EE2E, #00000000 62%),
    radial-gradient(860px 280px at 88% 0%, #10B98124, #00000000 64%),
    radial-gradient(900px 320px at 55% 120%, #3B82F61A, #00000000 62%),
    linear-gradient(180deg, #FFFFFF4D, #FFFFFF00);
  pointer-events:none;
  opacity:.95;
  filter:saturate(1.05);
}

.nav{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding:14px 0;
  min-height:var(--headerH);
  flex-wrap:wrap;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}
.logo-box{
  width: 45px;
}
.logo-img{
  width:100%;
  height:100%;
}
.brand-text{font-size:15px}

.menu{
  display:flex;
  align-items:center;
  margin-left:auto;
  justify-content:flex-end;
  flex-wrap:wrap;
}
.menu a{
  color:#0F172AAD;
  font-size:14px;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
}
.menu a:hover{
  color:var(--text);
  border-color:var(--line2);
  background:#FFFFFFC7;
}

.nav-cta{
  display:flex;
  align-items:center;
  gap:10px;
}

.mobile-toggle{display:none}

.mobile-drawer{display:none;}
.mobile-menu[hidden]{display:none !important}

.menu-overlay{
  position:fixed;
  inset:0;
  background:#0206174D;
  z-index:50;
  display:none;
}
.menu-overlay.show{display:block}

section{padding:22px 0}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:14px;
}
.section-head h2{margin: 0 0 5px 0;font-size:28px;line-height:1.2}
.section-head p{margin:0;color:#0F172AA8;}

.hero{padding:30px 0 18px}

.hero-shell{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:0;
  align-items:stretch;

  border-radius:var(--radius2);
  border-bottom: 1px solid #007ca936;
  overflow:hidden;
  box-shadow:var(--shadow3);

  background: radial-gradient(640px 420px at 18% 20%, #ffa66966, #00000000 60%), radial-gradient(640px 420px at 78% 86%, #18d8ff66, #00000000 62%), radial-gradient(600px 400px at 55% 18%, #2fffdd2b, #00000000 60%), linear-gradient(180deg, #ffffff, #ffffff);
  position: relative;
}

.hero-left{
  padding:26px;
  position:relative;
  overflow:hidden;
}

.hero-left h1{
  margin:12px 0 12px;
  font-size:44px;
  line-height:1.08;
  letter-spacing:-.4px;
}
.hero-left .sub{
  margin:0 0 16px;
  color:var(--text);
  max-width:62ch;
  font-size:16px;
}
.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:18px 0 6px;
}
.btn.hero-main,
.btn.hero-secondary{
  min-width:220px;
  padding:13px 18px;
  border-radius:16px;
  font-weight:900;
  letter-spacing:.15px;
}
.btn.hero-secondary{
  font-weight:800;
}

.hero-right{
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.hero-cards{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  padding:14px;
  height:100%;
}

.choice{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:14px;
  padding:14px;
  border-radius:18px;
  border:1px solid var(--line2);
  background:#FFFFFFD1;
  transition:transform .15s ease,border-color .15s ease,background .15s ease,box-shadow .15s ease;
  box-shadow:0 10px 22px #0206170F;
  align-items:stretch;
}
.choice:hover{
  transform:translateY(-1px);
  border-color:#ffffff;
  background:#ffffff;
}

.choice-media{
  border-radius:16px;
  overflow:hidden;
  display:grid;
  place-items:center;
}

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

.choice-body{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.choice h3{margin:0 0 6px;font-size:18px}
.choice p{margin:0 0 10px;color:#0F172A9E;font-size:14px;max-width:44ch}
.choice-link{color:var(--link);font-size:15px;font-weight:700}
.choice:hover .choice-link{color:var(--linkHover)}

.trust{padding:10px 0 18px}
.trust-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.trust-item{
  flex:1 1 200px;
  display:flex;
  gap:10px;
  align-items:center;
  padding:14px;
  border-radius:18px;
  background:#FFFFFFD1;
  box-shadow:var(--shadow3);
}
.trust-ic{font-size:18px}
.trust-item strong{display:block;font-size:13px}
.trust-item p{margin:0;color:#0F172A9E;font-size:12px}

.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:14px;
}
.step{
  padding:18px;
  border-radius:var(--radius);
  background:#FFFFFFD6;
  box-shadow:var(--shadow3);
}
.step-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:8px;
}
.step-ic{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  border:1px solid var(--line2);
  background:#FFFFFFEB;
  font-size:18px;
  flex:0 0 auto;
}
.step h3{margin:0;font-size:16px}
.step p{margin:0;color:#0F172A9E}

.app-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  column-gap: 12px;
  row-gap: 24px;
}
.app-card{
  padding:16px;
  border-radius:var(--radius);
  background:#FFFFFFDB;
  box-shadow:var(--shadow3);
}
.app-head{
  display:flex;
  gap:12px;
  align-items:center;
}
.app-icon{
  width:44px;
  height:44px;
  border-radius:16px;
  border:1px solid var(--line2);
  background:#FFFFFFBF;
  overflow:hidden;
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.app-icon-img{
  width:100%;
  height:100%;
  border-radius: 10px;
  object-fit:cover;
  display:block;
}
.app-head h3{margin:0;font-size:16px}
.app-desc{
  margin:10px 0 0;
  color:#0F172A9E;
  font-size:13px;
}
.app-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
  margin-top:12px;
}
.app-actions .text-link{margin-top:0}
.app-actions .btn{width:100%;justify-content:center;}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.why-card{
  padding:18px;
  border-radius:var(--radius);
  background:#FFFFFFDB;
  box-shadow:var(--shadow3);
}
.why-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:8px;
}
.why-ic{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  border:1px solid var(--line2);
  background:#FFFFFFEB;
  font-size:18px;
  flex:0 0 auto;
}
.why-card h3{margin:0;font-size:16px}
.why-card p{margin:0;color:#0F172A9E}

.post-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.post-card{
  padding:16px;
  border-radius:var(--radius);
  background:#FFFFFFDB;
  box-shadow:var(--shadow3);
}

.post-thumb{
  height:140px;
  border-radius:var(--radius);
  background:#FFFFFFC7;
  margin-bottom:12px;
  overflow:hidden;
  display:block;
}

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

.post-thumb:hover{
  border-color:#0F172A2E;
  box-shadow: var(--shadow4)
}

.post-card h3{margin:0 0 6px;font-size:16px}
.post-card p{margin:0;color:#0F172A9E}

.faq-list{display:grid;gap:10px}
.faq-item{
  padding:14px 16px;
  border-radius:var(--radius);
  background:#FFFFFFE0;
  box-shadow:var(--shadow3);
}
.faq-item summary{cursor:pointer;font-weight:700}
.faq-item p{margin:10px 0 0;color:#0F172A9E}

.footer{
  padding:26px 0 18px;
  border-top:1px solid var(--line2);
  background:#FFFFFF99;
  backdrop-filter:blur(10px);
  font-size: 13px;
}
.footer-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:22px;
}
.footer-brand{max-width:460px}
.footer-brand p{margin:10px 0 0;color:#0F172A9E}
.footer-cols{
  display:flex;
  justify-content:flex-end;
  gap:64px;
  margin-left:auto;
}
.footer-links{
  display:grid;
  gap:8px;
  align-content:start;
  min-width:200px;
}
.footer-links strong{font-size:13px}
.footer-links a{color:#0F172AAD;font-size:13px;}
.footer-links a:hover{color:var(--text)}

.footer-social{
  display:flex;
  gap:10px;
  margin-top:14px;
}
.social-link{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  border:1px solid var(--line2);
  background:#FFFFFFDB;
  transition:transform .15s ease,border-color .15s ease,background .15s ease,box-shadow .15s ease;
  box-shadow:0 10px 22px #0206170F;
}
.social-link:hover{
  transform:translateY(-1px);
  border-color:#0F172A2E;
  background:#FFFFFFFC;
}
.social-link svg{
  width:18px;
  height:18px;
  fill:var(--text);
  opacity:.85;
}

.footer-bottom{
  padding-top:12px;
  margin-top:20px;
  border-top:1px solid var(--line2);
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}
.footer-bottom a{
  color:inherit;
  text-decoration:underline;
  text-underline-offset:2px;
}
.footer-bottom a:hover{color:var(--link)}
.footer-lang{
  display:flex;
  align-items:center;
  gap:10px;
}
.footer-lang-select{
  padding:10px 46px 10px 14px;
  border-radius:14px;
  border:1px solid var(--line2);
  background-color:#FFFFFFF0;
  color:var(--text);
  font-size:14px;
  box-shadow:0 10px 22px #0206170D;

  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;

  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%230f172a' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
  background-size:16px 16px;
}

.staticHead{
  padding: 0 5px 10px 5px;
  width:100%;
}

.staticHead h1{
  margin: 0.2em 0 !important;
}

.blog-intro{max-width:100%}
.blog-intro p{
  margin:0 0 12px;
  color:var(--text);
  font-size:16px;
  line-height:1.7;
}
.blog-intro p:last-child{margin-bottom:0}

.belowContent {
  color: #0F172AA8;
}

.belowContent p {
  margin-block-end: 0;
  margin-block-start: 1.5em;
}

@media (max-width:980px){
  :root{--headerH:66px;}

  .menu{display:none}
  .mobile-toggle{display:inline-flex}

  .nav{
    flex-wrap:nowrap;
    justify-content:space-between;
    gap:10px;
  }

  .brand{flex:0 0 auto;}
  .brand-text{display:none}

  .nav-cta{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-left:0;
  }

  .apply-btn{
    flex:1;
    max-width:360px;
    justify-content:center;
    padding:12px 18px;
    margin: 0 15px;
  }

  .mobile-toggle{
    flex: 0 0 auto;
    width: 45px;
    font-size: 20px;
    padding: 11px 0;
    box-shadow: var(--shadow3);
    border-color: #626e894f;
  }

  .mobile-drawer{
    display:block;
    position:fixed;
    left:0;
    right:0;
    top:var(--headerH);
    z-index:70;
    pointer-events:none;
  }

  .mobile-drawer .container{pointer-events:none;}
  .mobile-drawer .mobile-menu{pointer-events:auto;}

  .mobile-menu{
    display:grid;
    gap:6px;
    width:100%;
    margin-top:30px;
    padding:12px;
    border-radius:18px;
    border:1px solid var(--line2);
    background:#FFFFFFF0;
    backdrop-filter:blur(12px);
    box-shadow:var(--shadow2);
  }

  .mobile-menu a{
    padding:12px 12px;
    border-radius:14px;
    border:1px solid var(--line2);
    background:#FFFFFFF0;
    color:var(--text);
    font-size:14px;
  }

  .mobile-menu a:hover{
    border-color:#0F172A2E;
    background:#FFFFFF;
  }

  .hero-left{
    text-align: center;
    padding: 26px 26px 10px 26px;
    overflow: visible;
  }
  .hero-cta{justify-content:center;gap:12px;}
  .btn.hero-main,.btn.hero-secondary{min-width:240px}

  .hero-shell{grid-template-columns:1fr;}

  .hero-left h1{font-size:36px}

  .trust-item{flex-basis:calc(50% - 5px)}
  .steps{grid-template-columns:1fr}
  .app-grid{grid-template-columns:repeat(2,1fr)}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .post-grid{grid-template-columns:1fr}

  .section-head{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .choice{grid-template-columns:1fr;}
  .choice-media{height:170px;}

  .footer-top{
    display:flex;
    flex-direction:column !important;
    align-items:center;
    justify-content:flex-start !important;
    gap:18px;
    text-align:center;
  }

  .footer-brand{
    order:1;
    max-width:520px;
    width:100%;
    display:grid;
    justify-items:center;
  }

  .footer-social{justify-content:center;}

  .footer-cols{
    order:2;
    width:100%;
    margin-left:0 !important;
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:18px 22px;
    justify-items:center;
    text-align:center;
  }

  .footer-links{
    min-width:unset;
    justify-items:center;
  }

  .footer-bottom{
    justify-content:center;
    text-align:center;
    padding-top:20px;
  }

  .footer-lang{
    justify-content:center;
    width:100%;
  }
}

@media (max-width:520px){
  :root{--pad:15px;}

  /* H1 telefonda tek satırda kalsın: kapsayıcıya (container 15px + hero-left 26px = 82px) sığacak akışkan boyut.
     Font system-ui olduğundan bölen 10; en dar telefonlarda bile (~320px) sığarken H2'den (22px) belirgin büyük kalır. */
  .hero-left h1{
    font-size:min(40px, calc((100vw - 82px) / 10));
    white-space:nowrap;
    line-height:1.12;
  }

  .app-grid{grid-template-columns:1fr}
  .trust-item{flex-basis:100%}
  /* Footer sütunları mobilde de yan yana kalsın */
  .footer-cols{grid-template-columns:repeat(2, minmax(0, 1fr));gap:16px}

  .apply-btn{max-width:unset;width:100%;}
  .btn.hero-main,.btn.hero-secondary{min-width:unset;width:100%;}
  .hero-cta{width:100%;}
}

.static{
  padding:40px 0 10px;
}

.static-card{
  background:#FFFFFF;
  border:1px solid var(--line2);
  border-radius:var(--radius2);
  box-shadow:var(--shadow3);
  padding: 30px 25px;
}

.static-card hr{
  border: 1px dashed #36516557;
  border-bottom: 0;
  margin: 15px 0 15px;
}

.static h1{
  margin:0 0 12px;
  font-size:40px;
  line-height:1.1;
  letter-spacing:-.4px;
}

.static h2{
  margin:22px 0 10px;
  font-size:22px;
  line-height:1.25;
  letter-spacing:-.2px;
}

.static p{
  margin:0 0 12px;
  color:var(--text);
  font-size:16px;
}

@media (max-width:980px){
  .static h1{font-size:32px}
}

.page{padding:0 0 20px}

.hero-one{
  position:relative;
  grid-template-columns:1fr;
}

.hero-one .hero-left{
  padding:26px;
  max-width:760px;
  position:relative;
  z-index:2;
}

.hero-two{
  display: flex;
  padding: 26px;
  z-index: 2;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.hero-two h1{
  margin:12px 0 12px;
  font-size:44px;
  line-height:1.08;
  letter-spacing:-.4px;
  text-align: center;
}
.hero-two .sub{
  margin:0 0 12px;
  color:var(--text);
  font-size:16px;
  text-align: center;
}

.hero-two-cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin: 6px 0;
}

.app-iconBig {
  background: white;
  width: 75px;
  height: 75px;
  padding: 5px;
  border: 1px solid #40546933;
  box-shadow: 0 0px 10px #5e9bb230;
  margin-top: 12px;
}

.hero-art{
  position:absolute;
  right:0;
  bottom:-5px;
  width:min(54%, 640px);
  height:auto;
  z-index:1;
  pointer-events:none;
  filter:drop-shadow(0 18px 40px #0206171F);
  opacity:.98;
}

.hero-art-img{
  width:100%;
  height:auto;
  display:block;
}

.hero-art-mobile{
  display:none;
  position:absolute;
  right: 0px;
  bottom: -20px;
  width:min(54%, 640px);
  height:auto;
  z-index:1;
  pointer-events:none;
  filter:drop-shadow(0 18px 40px #0206171F);
  opacity:.98;
}

.hero-art-mobile-img{
  width:100%;
  height:auto;
  display:block;
}

.hero-notes{
  margin: 12px 0 12px;
  font-size:14px;
}

.stream-body{padding: 5px 0 10px;}
.stream-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:14px;
  align-items:start;
}
.stream-main{min-width:0}
.stream-block{
  padding: 30px 25px;
  border-radius:var(--radius2);
  background:#FFFFFFDB;
  box-shadow: var(--shadow3);
  margin-bottom:12px;
}
.stream-block h2{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.25;
  letter-spacing:-.2px;
}
.stream-block p{
  margin:0 0 12px;
  color:var(--text);
  font-size:16px;
}
.stream-block p:last-child{margin-bottom:0}

.stream-inline-cta{display:flex;gap:10px;flex-wrap:wrap;margin-top:8px}

.stream-side{position:sticky;top:calc(var(--headerH) + 14px)}
.academy-card{
  padding: 30px 25px;
  border-radius:var(--radius2);
  background:#FFFFFFDB;
  box-shadow: var(--shadow3);
}
.academy-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}
.academy-ic{
  width:46px;
  height:46px;
  border-radius:16px;
  display:grid;
  place-items:center;
  border:1px solid var(--line2);
  background:#FFFFFFEB;
  font-size:20px;
  flex:0 0 auto;
}
.academy-head strong{display:block;font-size:16px}
.academy-head p{margin:2px 0 0;font-size:13px}

.academy-btn{width:100%;justify-content:center;border-radius:16px;font-weight:900}

.academy-mini{
  margin-top: 25px;
  padding-top: 20px;
  border-top:1px solid var(--line2);
}
.academy-mini strong{display:block;font-size:13px}
.academy-mini p{margin:6px 0 8px;font-size:13px;color:#0F172A9E}
.academy-links{display:grid;gap:6px}
.academy-links .text-link{margin-top:0}

.imgArticlesDesktop {
  padding-bottom: 25px;
}

.imgArticlesMobile {
  padding-bottom: 15px;
  display: none;
}

@media (max-width:980px){
  .hero-one .hero-left{max-width:unset;text-align:center;padding:26px 26px 14px}
  .hero-one .hero-cta{justify-content:center}
  .hero-art{display:none;}
  .hero-art-mobile{display:block;}

  .stream-grid{grid-template-columns:1fr}
  .stream-side{position:static}
  .noMobile{display: none;}
  .minHeigh{min-height: 550px;}
  .imgArticlesDesktop {
    display: none;
  }
  .imgArticlesMobile {
    display: block;
  }
}

@media (max-width:520px){
  .hero-one .hero-left{padding:22px 18px 12px}
  .hero-art{width:100%}
  .hero-art-mobile{width:100%}
}

.calculator{padding:22px 0}
.calc-card{
  padding:25px;
  border-radius:var(--radius2);
  background:#FFFFFFDB;
  box-shadow:0 10px 22px #0206170F;
}

.calc-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:25px;
  align-items:start;
}

.calc-form{
  display:grid;
  gap:12px;
}

.calc-field label{
  display: block;
  font-weight: 800;
  font-size: 16px;
  margin: 0 0 10px 3px;
  color: #0F172ADF;
}

.calc-select{
  width:100%;
  padding: 15px 44px 15px 15px;
  border-radius:14px;
  border:1px solid var(--line2);
  background-color:#FFFFFFF0;
  color:var(--text);
  font-size:14px;
  box-shadow: 0 2px 5px #0206170D;
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%230f172a' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  background-size:16px 16px;
}

.calc-actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:6px;
}

.btn.calc-btn{
  width:100%;
  justify-content:center;
  padding:13px 18px;
  border-radius:16px;
  font-weight:900;
  letter-spacing:.15px;
}

.calc-side{
  padding: 0 25px;
  border-left: 1px solid var(--line2);
  height: -webkit-fill-available;
}

.calc-side h3{margin:0;font-size:16px}
.calc-side p{margin:0;color:#0F172A9E;font-size:14px;padding-top:10px;}

.calc-result{
  display:none;
  min-height:220px;
  border-radius:18px;
  border:1px solid var(--line2);
  background:#d7ffe63b;
  padding: 18px 18px 30px 18px;
}

.calc-result.show{
  display:grid;
  place-items:center;
  text-align:center;
}

.calc-result .res-title{
  margin:0 0 8px;
  font-size:18px;
  letter-spacing:-.2px;
}

.calc-result .res-text{
  margin: 15px 0;
  color: #0F172AA8;
  font-size: 15px;
}

.calc-result .res-range{
  margin: 15px 0;
  font-size: 35px;
  line-height:1.1;
  font-weight:900;
  letter-spacing:-.6px;
}

.calc-result .res-meta{
  margin: 10px 0;
  color:#0F172A9E;
  font-size:13px;
}

.calc-reset{
  margin-top:14px;
  width:100%;
  justify-content:center;
}

.calc-hide{display:none !important}

@media (max-width:980px){
  .calc-grid{grid-template-columns:1fr}
  .calc-side{
    padding: 20px 0 0;
    border-top: 1px solid var(--line2);
    border-left: 0;
  }
}
/* Hero görseli (sağ sütun) */
.hero-visual{
  position:relative;
  overflow:hidden;
  min-height:340px;
}
.hero-visual img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  /* Üste kaydırma: kadraj yukarıdan başlar, böylece özne/yüz aşağıda kalır.
     Metin uzayıp görsel yükseldiğinde yüzün tepeye kaçmasını önler. */
  object-position:center 20%;
  display:block;
  /* Sol kenar yumuşakça saydamlaşıp arkadaki hero gradyanına karışsın (keskin çizgi olmasın) */
  -webkit-mask-image:linear-gradient(to right, transparent 0, #000 32%);
  mask-image:linear-gradient(to right, transparent 0, #000 32%);
}

@media (max-width:980px){
  .hero-visual{
    order:-1;
    min-height:unset;
    height:320px;
    border-radius:var(--radius2) var(--radius2) 0 0;
  }
  /* Mobilde kadraj ortada kalsın ve kenar erimesi olmasın (görsel üstte tam genişlik) */
  .hero-visual img{object-position:center;-webkit-mask-image:none;mask-image:none}
  /* Rozet mobilde sol üst köşede çapraz bant */
  .hero-left{position:static;}
  .hero-left .pill{
    position:absolute;
    top:34px;
    left:-58px;
    width:230px;
    justify-content:center;
    transform:rotate(-45deg);
    z-index:3;
    border-radius:0;
    padding:8px 0;
    box-shadow:0 2px 10px #02061733;
    white-space:nowrap;
  }
}

/* Yeni logolar */
.logo-yatay{height:42px;width:auto;display:block}
.logo-mobil{display:none;height:40px;width:auto}
.footer .logo-yatay{height:36px}
@media (max-width:980px){
  .header .logo-yatay{display:none}
  .header .logo-mobil{display:block}
}

/* Blog yazısı sayfası */
.post-hero-img{
  width:100%;
  height:auto;
  border-radius:var(--radius2);
  box-shadow:var(--shadow3);
}

/* Menü linkleri daha belirgin */
.menu a{
  color:var(--text);
  font-size:15px;
  font-weight:700;
}
.menu a:hover{
  border-color:var(--line2);
  background:#FFFFFFC7;
}

/* ---- Laravel tema ekleri ---- */
.breadcrumb{font-size:13px;margin-bottom:14px}
.breadcrumb a{color:var(--link)}
.breadcrumb a:hover{color:var(--linkHover)}

.toc-box{
  margin:18px 0 22px;
  border:1px solid var(--line2);
  border-radius:var(--radius);
  background:#f3f6fa9e;
  overflow:hidden;
}
/* Varsayılan kapalı; başlığa tıklayınca açılır */
.toc-box>summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:14px 20px;
  font-size:14px;
  font-weight:700;
  color:var(--text);
  user-select:none;
}
.toc-box>summary::-webkit-details-marker{display:none}
.toc-box>summary:hover{color:var(--link)}
.toc-box .toc-caret{
  width:18px;height:18px;flex:none;
  fill:none;stroke:currentColor;stroke-width:2.2;
  stroke-linecap:round;stroke-linejoin:round;
  opacity:.7;
  transition:transform .2s ease;
}
.toc-box[open] .toc-caret{transform:rotate(180deg)}
.toc-box nav{padding:0 20px 16px}
.toc-box ol{margin:0;padding-left:20px;display:grid;gap:5px}
.toc-box li{font-size:14px}
.toc-box li.toc-l3{margin-left:16px;list-style-type:circle}
.toc-box a{color:var(--link);font-weight:600}
.toc-box a:hover{color:var(--linkHover)}
@media (prefers-reduced-motion:reduce){.toc-box .toc-caret{transition:none}}

.post-content h2{margin:22px 0 10px;font-size:22px;line-height:1.25;letter-spacing:-.2px;scroll-margin-top:calc(var(--headerH) + 14px)}
.post-content h3{margin:18px 0 8px;font-size:18px;scroll-margin-top:calc(var(--headerH) + 14px)}
.post-content p{margin:0 0 12px;color:var(--text);font-size:16px}
.post-content ul,.post-content ol{margin:0 0 12px;padding-left:22px;color:var(--text)}
.post-content li{margin-bottom:6px}
.post-content img{border-radius:var(--radius);margin:10px 0}
.post-content a{color:var(--link);font-weight:600}
.post-content a:hover{color:var(--linkHover)}

.blog-pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-top:26px;
}
.blog-pagination .btn[aria-disabled="true"]{opacity:.45;pointer-events:none}

.related-posts{margin-top:26px}

/* Hero zengin metin alanı (eski site tarzı: ara başlık + paragraflar) */
.hero-text h2{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.3;
  letter-spacing:-.2px;
  color:var(--text);
}
.hero-text h3{
  margin:0 0 8px;
  font-size:18px;
  color:var(--text);
}
.hero-text p{
  margin:0 0 10px;
  color:var(--text);
  font-size:16px;
}
.hero-text p:last-child{margin-bottom:0}
.hero-text strong{color:var(--text)}
.hero-text a{color:var(--link);font-weight:600}
.hero-text a:hover{color:var(--linkHover)}

/* Sağ alt sabit, belirgin, pulse'lu WhatsApp butonu */
.wa-float{
  position:fixed;
  right:40px;
  bottom:42px;
  z-index:45;
  width:66px;
  height:66px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 30px rgba(37,211,102,.45),0 4px 10px rgba(15,23,42,.18);
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}
.wa-float svg{
  position:relative;
  z-index:2;
  width:36px;
  height:36px;
  fill:#fff;
}
.wa-float:hover{
  background:#1FB855;
  transform:scale(1.07);
  box-shadow:0 16px 38px rgba(37,211,102,.55),0 6px 14px rgba(15,23,42,.22);
}
.wa-float:active{transform:scale(1.02)}
/* Genişleyip sönümlenen çift pulse halkası — canlı "çevrimiçi" hissi */
.wa-float-ping,
.wa-float::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  background:#25D366;
  z-index:1;
  animation:wa-ping 2.1s cubic-bezier(0,0,.2,1) infinite;
}
.wa-float::before{animation-delay:1.05s;opacity:.4}
@keyframes wa-ping{
  0%{transform:scale(1);opacity:.5}
  70%{transform:scale(2.1);opacity:0}
  100%{transform:scale(2.1);opacity:0}
}
@media (max-width:520px){
  .wa-float{width:58px;height:58px;right:22px;bottom:26px}
  .wa-float svg{width:31px;height:31px}
}
@media (prefers-reduced-motion:reduce){
  .wa-float-ping,.wa-float::before{animation:none;opacity:0}
  .wa-float:hover{transform:none}
}

/* ============ Yayıncı Ekipmanları sayfası (Kupon/Bilet tasarımı) ============ */
.plans,
.equip{
  --brand:#B02132;
  --brand-2:#D8455A;
  --brand-deep:#7E1420;
  --brand-ink:#5E0E18;
  --gold:#FFD36B;
  --ink:#0F172A;
  --ink-2:#1E2433;
  --muted:#475569;
  --coupon-bg:#F8F1F1;
  --hair:#ECDCDF;
}

/* ---- Kota / planlar: hediye kuponu ---- */
.plans{
  position:relative;
  padding:60px 0 46px;
  background:var(--coupon-bg);
  isolation:isolate;
}
.plans::before{
  content:"";
  position:absolute;inset:0;z-index:-1;pointer-events:none;
  background:
    radial-gradient(56% 42% at 50% -6%, rgba(176,33,50,.10), transparent 70%),
    radial-gradient(44% 40% at 88% 4%, rgba(14,165,233,.05), transparent 72%);
}
.plans .container{position:relative}

.plans-head{text-align:center;margin-bottom:40px}
.plans-rule{
  display:inline-block;width:60px;height:4px;border-radius:6px;
  background:linear-gradient(90deg,var(--brand),var(--brand-2));
  margin-bottom:16px;
  box-shadow:0 2px 10px rgba(176,33,50,.32);
}
.plans-head h2{
  margin:0;
  font-size:clamp(20px,3.2vw,27px);
  letter-spacing:.12em;text-transform:uppercase;
  color:var(--ink);line-height:1.28;font-weight:900;
}

.plans-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:40px 30px;
  align-items:start;
  max-width:840px;margin:0 auto;
}

.plan-card{
  position:relative;isolation:isolate;
  display:flex;flex-direction:column;padding:0;
  background:#fff;border-radius:22px;overflow:visible;
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 18px 42px -22px rgba(24,10,30,.42),
    0 2px 6px rgba(24,10,30,.05);
  transition:transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s;
}
.plan-card:hover{
  transform:translateY(-6px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 30px 60px -26px rgba(24,10,30,.5),
    0 4px 10px rgba(24,10,30,.06);
}

.plan-top{
  position:relative;overflow:hidden;text-align:center;
  padding:34px 26px 26px;border-radius:22px 22px 0 0;color:#fff;
  background:linear-gradient(160deg,#C22638 0%,#9A1A28 58%,var(--brand-deep) 100%);
}
.plan-top::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(120% 90% at 16% 0%, rgba(255,255,255,.22), transparent 55%);
}
.plan-star{
  position:relative;z-index:1;display:inline-block;
  font-size:24px;line-height:1;color:var(--gold);
  text-shadow:0 2px 8px rgba(0,0,0,.28);margin-bottom:8px;
}
.plan-top h3{
  position:relative;z-index:1;margin:0;
  font-size:13px;font-weight:800;letter-spacing:.18em;text-transform:uppercase;
  color:rgba(255,255,255,.9);line-height:1.4;
}
.plan-sub{
  position:relative;z-index:1;margin-top:8px;
  font-size:clamp(28px,5vw,36px);font-weight:900;letter-spacing:.4px;
  color:#fff;line-height:1.05;text-shadow:0 2px 10px rgba(0,0,0,.18);
}

.plan-features{
  position:relative;list-style:none;margin:0;padding:26px 26px 16px;
  border-top:2px dashed #E4BFC4;
}
.plan-features::before,
.plan-features::after{
  content:"";position:absolute;top:-14px;
  width:26px;height:26px;border-radius:50%;
  background:var(--coupon-bg);
  box-shadow:inset 0 1px 2px rgba(24,10,30,.14);
}
.plan-features::before{left:-14px}
.plan-features::after{right:-14px}

.plan-features li{
  position:relative;text-align:left;
  font-weight:600;color:var(--ink-2);font-size:15px;
  padding:13px 4px 13px 34px;border-top:1px dashed var(--hair);
}
.plan-features li:first-child{border-top:none}
.plan-features li::before{
  content:"\2713";
  position:absolute;left:0;top:50%;transform:translateY(-50%);
  width:22px;height:22px;line-height:22px;text-align:center;
  color:#fff;font-weight:900;font-size:12px;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  border-radius:50%;
  box-shadow:0 2px 6px rgba(176,33,50,.4);
}

.plan-btn{
  position:relative;overflow:hidden;margin:auto 26px 28px;
  display:flex;align-items:center;justify-content:center;gap:8px;text-align:center;
  color:#fff;font-weight:800;letter-spacing:.05em;text-transform:uppercase;font-size:14px;
  padding:16px 20px;border-radius:12px;
  background:linear-gradient(180deg,var(--brand-2),var(--brand));
  box-shadow:0 14px 26px -12px rgba(176,33,50,.72);
  transition:transform .2s, box-shadow .2s, filter .2s;
}
.plan-btn::after{content:"\2192";font-size:16px;transition:transform .2s ease}
.plan-btn:hover{
  filter:brightness(1.05);transform:translateY(-2px);
  box-shadow:0 20px 34px -12px rgba(176,33,50,.82);
}
.plan-btn:hover::after{transform:translateX(4px)}

.plan-card--popular{
  z-index:2;transform:translateY(-14px);
  box-shadow:
    0 0 0 3px rgba(176,33,50,.16),
    0 34px 64px -24px rgba(126,20,32,.55),
    0 3px 8px rgba(24,10,30,.08);
}
.plan-card--popular:hover{
  transform:translateY(-20px);
  box-shadow:
    0 0 0 3px rgba(176,33,50,.24),
    0 42px 74px -26px rgba(126,20,32,.6),
    0 4px 10px rgba(24,10,30,.1);
}
.plan-card--popular .plan-top{
  background:linear-gradient(160deg,#B02132 0%,#8A1826 55%,#6E0F1A 100%);
}
.plan-card--popular::before{
  content:"\2605  EN POPÜLER";
  position:absolute;z-index:5;top:-15px;left:50%;transform:translateX(-50%);
  white-space:nowrap;
  font-size:11.5px;font-weight:900;letter-spacing:.14em;
  padding:8px 18px;border-radius:999px;
  color:#fff;background:linear-gradient(90deg,var(--brand-deep),var(--brand));
  border:1px solid rgba(255,255,255,.28);
  box-shadow:0 10px 22px -8px rgba(126,20,32,.7);
}
.plan-card--popular .plan-star{transform:scale(1.12)}

/* ---- Ekipman: editoryal magazin kartları ---- */
.equip{
  position:relative;padding:52px 0 60px;background:#fff;isolation:isolate;
}
.equip::before{
  content:"";position:absolute;inset:0;z-index:-1;pointer-events:none;
  background:radial-gradient(50% 40% at 50% 0%, rgba(176,33,50,.05), transparent 70%);
}

.equip .section-head{text-align:center;max-width:640px;margin:0 auto 36px}
.equip .section-head h2{
  margin:0;font-size:clamp(20px,3.2vw,26px);font-weight:900;
  letter-spacing:.06em;text-transform:uppercase;color:var(--ink);line-height:1.25;
}

.equip-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:30px;
}

.equip-card{
  position:relative;display:flex;flex-direction:column;
  background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:24px;overflow:hidden;
  box-shadow:0 14px 38px -20px rgba(24,10,30,.4);
  transition:transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s, border-color .3s;
}
.equip-card:hover{
  transform:translateY(-7px);
  border-color:rgba(176,33,50,.28);
  box-shadow:
    0 28px 56px -22px rgba(24,10,30,.5),
    0 0 42px -24px rgba(176,33,50,.4);
}

.equip-img{
  order:1;position:relative;margin:0;border-radius:0;overflow:hidden;
  background:#F3EEF0;aspect-ratio:16/10;
}
.equip-img img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .5s cubic-bezier(.2,.7,.2,1);
}
.equip-card:hover .equip-img img{transform:scale(1.06)}
.equip-img::before{
  content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:linear-gradient(180deg,transparent 58%,rgba(15,23,42,.14));
}
.equip-img::after{
  content:"ÜCRETSİZ";position:absolute;z-index:2;top:14px;left:14px;
  font-size:11px;font-weight:900;letter-spacing:.1em;padding:7px 12px;border-radius:999px;
  color:#fff;background:linear-gradient(180deg,var(--brand-2),var(--brand-deep));
  box-shadow:0 8px 16px -6px rgba(176,33,50,.6);
}

.equip-head{
  order:2;position:relative;z-index:2;
  display:flex;align-items:center;gap:13px;
  margin:16px 18px 0;padding:16px 18px;
  background:#fff;border-radius:16px;
  box-shadow:0 12px 30px -14px rgba(24,10,30,.42);
}
.equip-card:has(.equip-img) .equip-head{margin-top:-40px}
.equip-ic{
  flex:0 0 auto;width:50px;height:50px;display:grid;place-items:center;
  font-size:26px;line-height:1;border-radius:15px;
  background:linear-gradient(160deg,#fff,#FBEAEC);
  box-shadow:0 8px 18px -10px rgba(176,33,50,.5), 0 0 0 1px rgba(176,33,50,.1);
}
.equip-head h3{
  margin:0;font-size:19px;font-weight:800;color:var(--ink);line-height:1.3;
}

.equip-card p{
  order:3;margin:0;padding:16px 22px 26px;
  color:var(--ink-2);font-size:15px;line-height:1.75;
}

@media(max-width:820px){
  .equip-grid{grid-template-columns:1fr}
}
@media(max-width:560px){
  .plans{padding:44px 0 34px}
  .plans-grid{grid-template-columns:1fr;gap:48px;max-width:420px}
  .plan-card--popular{transform:none}
  .plan-card--popular:hover{transform:translateY(-6px)}
  .equip{padding:38px 0 46px}
  .equip-card:has(.equip-img) .equip-head{margin-top:-34px}
}
@media (prefers-reduced-motion:reduce){
  .plan-card,.plan-btn,.plan-btn::after,.equip-card,.equip-img img{transition:none}
  .plan-card:hover,.plan-card--popular:hover,.equip-card:hover{transform:none}
  .plan-btn:hover::after{transform:none}
  .equip-card:hover .equip-img img{transform:none}
}

/* ============ Ana sayfa: Tanıtım (görsel + metin) + partnerler ============ */
.intro{padding:28px 0 10px}
.intro-shell{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:0;
  align-items:stretch;
  background:#FFFFFFDB;
  border-radius:var(--radius2);
  box-shadow:var(--shadow3);
  overflow:hidden;
}
.intro-visual{
  position:relative;
  overflow:hidden;
  min-height:300px;
  background:transparent;
}
.intro-visual img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  /* Sağ kenar (metne doğru) yavaşça silinsin — herodaki gibi */
  -webkit-mask-image:linear-gradient(to left, transparent 0, #000 34%);
  mask-image:linear-gradient(to left, transparent 0, #000 34%);
}
.intro-body{
  align-self:center;
  padding:28px 34px;
  min-width:0;
}
.intro-body h2{margin:0 0 16px;font-size:30px;line-height:1.22;letter-spacing:-.4px}
.intro-text p{margin:0 0 14px;color:var(--text);font-size:16px;line-height:1.75}
.intro-text p:last-child{margin-bottom:0}
.intro-text strong{color:var(--text);font-weight:700}
.intro-text a{color:var(--link);font-weight:600}

.partners{
  margin-top:34px;
  padding-top:24px;
  border-top:1px solid var(--line2);
  display:flex;
  align-items:stretch;
  gap:16px;
  flex-wrap:wrap;
}
/* Başlık de logolarla aynı kart; kart görünümünü .partners-item veriyor, burada sadece metin */
.partners-title{
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:13px;
  color:var(--muted);
  white-space:nowrap;
}
.partners-row{
  flex:1;
  min-width:0;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
/* Her logo eşit boyutlu kart: aynı yükseklik/genişlik, ortalanmış, contain ile taşmasız */
.partners-item{
  flex:1 1 150px;
  min-width:0;
  height:74px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px 20px;
  background:#fff;
  border:1px solid var(--line2);
  border-radius:14px;
  box-shadow:var(--shadow3);
  transition:transform .2s ease, box-shadow .2s ease;
}
.partners-item:hover{transform:translateY(-4px);box-shadow:var(--shadow4)}
.partners-item img{max-height:44px;max-width:100%;width:auto;object-fit:contain;display:block}
/* Başlık kartı: logolardan hafif ayrışan marka tonlu tasarım */
.partners-item.partners-title{
  background:linear-gradient(135deg, #B02132, #7d1624);
  border-color:#B0213200;
  color:#fff;
  box-shadow:0 10px 24px #B0213233;
}
.partners-item.partners-title:hover{box-shadow:0 14px 30px #B0213240}

@media (max-width:820px){
  .intro-shell{grid-template-columns:1fr;gap:0}
  .intro-visual{min-height:unset;height:220px}
  .intro-visual img{-webkit-mask-image:none;mask-image:none}
  .intro-body{padding:22px}
  .intro-body h2{font-size:24px}
  .partners{gap:14px}
  .partners-item{flex:1 1 130px;height:64px;padding:10px 14px}
  .partners-item img{max-height:38px}
}

/* ============ Erişilebilirlik: içeriğe geç bağlantısı ============ */
.skip-link{
  position:absolute;left:8px;top:-52px;z-index:100;
  background:#B02132;color:#fff;padding:10px 16px;border-radius:10px;
  font-weight:700;box-shadow:0 8px 20px rgba(0,0,0,.2);
  transition:top .16s ease;
}
.skip-link:focus{top:8px;color:#fff;outline:2px solid #fff;outline-offset:2px}
/* Makale içi linkler renkten bağımsız da ayırt edilsin (erişilebilirlik) */
.post-content a{text-decoration:underline;text-underline-offset:2px}

/* Ekran-okuyucu için görünür, gözle gizli (başlık hiyerarşisi vb.) */
.visually-hidden{
  position:absolute !important;
  width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

/* ============ Blog yazısı içi "İlginizi çekebilir" öneri kartı ============ */
.reco-inline{margin:28px 0}
.reco-card{
  display:flex;
  gap:18px;
  align-items:center;
  padding:16px;
  border-radius:18px;
  background:linear-gradient(135deg,#ffffff,#fdf2f3);
  border:1px solid #B0213226;
  box-shadow:0 16px 36px -20px rgba(176,33,50,.45), var(--shadow3);
  transition:transform .2s ease, box-shadow .2s ease;
}
/* Makale linklerine eklenen alt çizgi bu karta uygulanmasın */
.post-content a.reco-card{text-decoration:none}
.reco-card:hover{transform:translateY(-3px);box-shadow:0 22px 46px -20px rgba(176,33,50,.55), var(--shadow3)}
.reco-media{
  flex:0 0 auto;
  width:140px;height:104px;
  border-radius:12px;overflow:hidden;background:#f3f6fa;
}
.reco-media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s ease}
.reco-card:hover .reco-media img{transform:scale(1.06)}
.reco-body{display:flex;flex-direction:column;gap:5px;min-width:0}
.reco-eyebrow{
  display:inline-flex;align-items:center;gap:6px;
  font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:#B02132;
}
.reco-eyebrow::before{content:"✨"}
.reco-title{
  font-weight:800;font-size:18px;color:var(--text);line-height:1.3;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.reco-ex{
  color:var(--muted);font-size:14px;line-height:1.5;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.reco-cta{
  margin-top:2px;display:inline-flex;align-items:center;gap:6px;
  font-weight:700;font-size:14px;color:#B02132;
}
.reco-cta::after{content:"→";transition:transform .2s ease}
.reco-card:hover .reco-cta::after{transform:translateX(4px)}
@media (max-width:560px){
  .reco-card{flex-direction:column;align-items:stretch;gap:12px;padding:14px}
  .reco-media{width:100%;height:180px}
  .reco-title{font-size:17px}
}
@media (prefers-reduced-motion:reduce){
  .reco-card,.reco-media img,.reco-cta::after{transition:none}
  .reco-card:hover{transform:none}
  .reco-card:hover .reco-media img{transform:none}
}
