/* ===========================
   HASTV.CHAT — SOFT LIGHT UI
   =========================== */

:root{
  --bg: #fbfbff;
  --text: #101828;
  --muted: rgba(16,24,40,.65);
  --card: rgba(255,255,255,.72);
  --stroke: rgba(255,255,255,.55);
  --shadow: 0 18px 55px rgba(20, 26, 50, .10);
  --shadow2: 0 10px 28px rgba(20, 26, 50, .08);

  --a1: #7c3aed;   /* violet */
  --a2: #06b6d4;   /* cyan */
  --a3: #fb7185;   /* rose */
  --a4: #f59e0b;   /* amber */

  --radius: 24px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1200px 600px at 10% 10%, rgba(124,58,237,.11), transparent 60%),
              radial-gradient(1200px 600px at 90% 15%, rgba(6,182,212,.12), transparent 55%),
              radial-gradient(1200px 600px at 80% 80%, rgba(251,113,133,.12), transparent 60%),
              var(--bg);
  overflow-x:hidden;
}

.container{
  width:min(1120px, calc(100% - 40px));
  margin-inline:auto;
}

/* Background blobs */
.bg-blobs{ position:fixed; inset:0; pointer-events:none; z-index:-1; }
.blob{
  position:absolute;
  width:520px; height:520px;
  filter: blur(40px);
  opacity:.65;
  border-radius: 40% 60% 55% 45% / 60% 40% 60% 40%;
  transform: translate3d(0,0,0);
  animation: floaty 14s ease-in-out infinite;
}
.b1{ left:-160px; top:-120px; background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.60), rgba(124,58,237,0)); }
.b2{ right:-180px; top:60px; background: radial-gradient(circle at 40% 40%, rgba(6,182,212,.55), rgba(6,182,212,0)); animation-delay: -4s; }
.b3{ left:45%; bottom:-240px; background: radial-gradient(circle at 35% 35%, rgba(251,113,133,.55), rgba(251,113,133,0)); animation-delay: -8s; }

@keyframes floaty{
  0%,100%{ transform: translateY(0) translateX(0) rotate(0deg); }
  50%{ transform: translateY(24px) translateX(16px) rotate(6deg); }
}

/* Topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(255,255,255,.6);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:inherit;
}
.brand__mark{
  width:44px; height:44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  font-weight:900;
  letter-spacing:.02em;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.75), rgba(255,255,255,.3)),
    linear-gradient(135deg, rgba(124,58,237,.95), rgba(6,182,212,.95));
  box-shadow: var(--shadow2);
  color:white;
}
.brand__text strong{
  display:block;
  font-size: 15px;
  line-height: 1.1;
}
.brand__text small{
  display:block;
  margin-top:2px;
  color: var(--muted);
  font-size: 12px;
}

.topbar__actions{
  display:flex; gap:10px; flex-wrap:wrap;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 10px 26px rgba(20,26,50,.06);
  color: rgba(16,24,40,.85);
  text-decoration:none;
  font-weight: 650;
  font-size: 12px;
}
.chip--ghost{
  background: rgba(255,255,255,.4);
}

/* Hero */
.hero{
  padding: 28px 0 26px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 22px;
  align-items: stretch;
}
.hero__copy{
  padding: 20px 6px 6px;
}
.hero__pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 10px 26px rgba(20,26,50,.06);
  color: rgba(16,24,40,.78);
  font-weight: 650;
  font-size: 13px;
}
.dot{
  width:10px; height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--a3), var(--a2));
  box-shadow: 0 0 0 6px rgba(6,182,212,.12);
}

.hero h1{
  margin: 14px 0 10px;
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.accent{
  background: linear-gradient(135deg, var(--a1), var(--a2), var(--a3));
  -webkit-background-clip: text;
  background-clip:text;
  color: transparent;
}
.hero p{
  margin: 0 0 16px;
  max-width: 62ch;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
}

.hero__cta{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin: 14px 0 18px;
}

.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 13px 16px;
  border-radius: 16px;
  text-decoration:none;
  font-weight: 800;
  letter-spacing: .02em;
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: var(--shadow2);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  user-select:none;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(20,26,50,.12);
}
.btn:active{
  transform: translateY(0px) scale(.99);
}
.btn--primary{
  color: white;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.35), transparent 40%),
    linear-gradient(135deg, rgba(124,58,237,.98), rgba(6,182,212,.98), rgba(251,113,133,.98));
  overflow:hidden;
}
.btn__shine{
  position:absolute;
  inset:-40% -20%;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.45) 50%, transparent 60%);
  transform: translateX(-40%);
  animation: shine 2.4s ease-in-out infinite;
  pointer-events:none;
}
@keyframes shine{
  0%{ transform: translateX(-45%); opacity:.25; }
  35%{ opacity:.45; }
  65%{ opacity:.25; }
  100%{ transform: translateX(45%); opacity:.25; }
}
.btn--soft{
  color: rgba(16,24,40,.92);
  background: rgba(255,255,255,.66);
}

.btn--block{ width:100%; }

.hero__mini{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.stat{
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 10px 26px rgba(20,26,50,.06);
  min-width: 140px;
}
.stat strong{ display:block; font-size: 13px; }
.stat span{ display:block; margin-top:3px; font-size: 12px; color: var(--muted); }

/* Right hero card */
.heroCard{
  background: var(--card);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  backdrop-filter: blur(14px);
  height: 100%;
  display:flex;
  flex-direction:column;
}
.heroCard__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.65);
}
.badge{
  font-weight: 850;
  font-size: 12px;
  letter-spacing:.02em;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
}
.spark{
  width:34px; height:34px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(245,158,11,.9), rgba(251,113,133,.9));
  color:white;
  box-shadow: 0 10px 22px rgba(251,113,133,.18);
}
.heroCard__screen{
  position:relative;
  height: 210px;
  background:
    radial-gradient(140px 140px at 25% 30%, rgba(124,58,237,.22), transparent 55%),
    radial-gradient(160px 160px at 70% 40%, rgba(6,182,212,.18), transparent 55%),
    radial-gradient(200px 200px at 45% 80%, rgba(251,113,133,.18), transparent 60%),
    rgba(255,255,255,.35);
  overflow:hidden;
}
.screen__ring{
  position:absolute;
  width:220px; height:220px;
  left:50%; top:50%;
  transform: translate(-50%,-50%);
  border-radius: 999px;
  border: 2px dashed rgba(16,24,40,.12);
  opacity:.7;
  animation: spin 16s linear infinite;
}
@keyframes spin{ to{ transform: translate(-50%,-50%) rotate(360deg); } }

.screen__user{
  position:absolute;
  width:72px; height:72px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.85), rgba(255,255,255,.45)),
    linear-gradient(135deg, rgba(124,58,237,.85), rgba(6,182,212,.85));
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 18px 40px rgba(20,26,50,.10);
}
.u1{ left:16px; top:22px; }
.u2{ right:16px; top:56px; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.85), rgba(255,255,255,.45)),
                linear-gradient(135deg, rgba(6,182,212,.85), rgba(251,113,133,.85)); }
.u3{ left:50%; bottom:18px; transform: translateX(-50%); background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.85), rgba(255,255,255,.45)),
                linear-gradient(135deg, rgba(245,158,11,.85), rgba(124,58,237,.85)); }

.screen__pulse{
  position:absolute;
  inset:auto;
  left:50%; top:50%;
  width:12px; height:12px;
  transform: translate(-50%,-50%);
  border-radius: 999px;
  background: rgba(6,182,212,.8);
  box-shadow: 0 0 0 0 rgba(6,182,212,.25);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(6,182,212,.22); }
  70%{ box-shadow: 0 0 0 26px rgba(6,182,212,0); }
  100%{ box-shadow: 0 0 0 0 rgba(6,182,212,0); }
}

.heroCard__content{
  padding: 16px;
  display:flex;
  flex-direction:column;
  gap: 8px;
}
.heroCard__content h3{ margin:0; font-size: 18px; }
.heroCard__content p{ margin:0; color: var(--muted); line-height:1.6; font-size: 13.5px; }
.hint{ margin:10px 0 0; color: rgba(16,24,40,.55); font-size: 12px; }

/* Sections */
.sectionHead{
  margin-bottom: 14px;
}
.sectionHead h2{
  margin:0 0 6px;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.sectionHead p{
  margin:0;
  color: var(--muted);
  line-height:1.65;
}

/* Features */
.features{
  padding: 26px 0 10px;
}
.featureGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.featureCard{
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 18px;
  backdrop-filter: blur(12px);
  position:relative;
  overflow:hidden;
}
.featureCard::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(400px 180px at 10% 0%, rgba(124,58,237,.18), transparent 60%),
              radial-gradient(400px 180px at 80% 10%, rgba(6,182,212,.16), transparent 60%),
              radial-gradient(400px 180px at 60% 100%, rgba(251,113,133,.12), transparent 60%);
  opacity:.9;
  pointer-events:none;
}
.featureCard > *{ position:relative; }
.iconBubble{
  width:54px; height:54px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 16px 36px rgba(20,26,50,.10);
  color: rgba(16,24,40,.88);
  margin-bottom: 12px;
}
.iconBubble svg{ width:28px; height:28px; }
.featureCard h3{ margin:0 0 6px; font-size: 18px; }
.featureCard p{ margin:0; color: var(--muted); line-height:1.65; font-size: 13.5px; }

.tagRow{
  display:flex; gap:8px; flex-wrap:wrap;
  margin-top: 12px;
}
.tag{
  font-size: 12px;
  font-weight: 750;
  color: rgba(16,24,40,.78);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.70);
}

/* Content area */
.content{
  padding: 18px 0 14px;
}
.content__grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 14px;
  align-items: start;
}
.contentBox, .sideCard{
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(12px);
}
.contentBox{
  padding: 18px;
}
.contentBox h2{ margin:0 0 8px; font-size: 24px; letter-spacing: -0.02em; }
.contentBox p{ margin:0 0 12px; color: var(--muted); line-height:1.7; }

.niceList{
  list-style:none;
  padding:0; margin: 0 0 14px;
  display:grid;
  gap:10px;
}
.niceList li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.72);
}
.bullet{
  width:28px; height:28px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  font-weight: 900;
  color:white;
  background: linear-gradient(135deg, var(--a2), var(--a3));
  box-shadow: 0 10px 20px rgba(6,182,212,.12);
}

.contentCtas{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Side card */
.sideCard{
  padding: 16px;
}
.sideCard__title{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom: 12px;
}
.sideCard__title h3{ margin:0; font-size: 16px; }
.miniPill{
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(16,24,40,.85);
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.72);
}
.meter__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom: 10px;
}
.meter__top span{ color: var(--muted); font-weight: 700; font-size: 12px; }
.meter__top strong{ font-size: 14px; }
.meter__bar{
  height: 12px;
  border-radius: 999px;
  background: rgba(16,24,40,.06);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.7);
}
.meter__fill{
  display:block;
  width: 92%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--a1), var(--a2), var(--a3));
  box-shadow: 0 10px 18px rgba(124,58,237,.12);
}
.quote{
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.72);
}
.quote p{ margin:0 0 8px; line-height:1.65; }
.quote span{ color: var(--muted); font-size: 12px; }

/* FAQ */
.faq{
  padding: 18px 0 22px;
}
.faqWrap{
  display:grid;
  gap: 10px;
}
.faqItem{
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(12px);
  overflow:hidden;
}
.faqItem summary{
  cursor:pointer;
  list-style:none;
  padding: 16px 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  position:relative;
}
.faqItem summary::-webkit-details-marker{ display:none; }
.faqItem summary::after{
  content:"+";
  position:absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width:32px; height:32px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.72);
  color: rgba(16,24,40,.72);
  font-weight: 950;
}
.faqItem[open] summary::after{ content:"–"; }
.faqBody{
  padding: 0 18px 16px;
  color: var(--muted);
  line-height:1.7;
}

/* Footer */
.footer{
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.45);
  backdrop-filter: blur(14px);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .6fr;
  gap: 14px;
  align-items:start;
}
.brand--footer .brand__mark{ width:46px; height:46px; }
.footer__links{
  display:grid;
  gap: 10px;
  justify-items:start;
}
.footer__links a{
  text-decoration:none;
  color: rgba(16,24,40,.78);
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.70);
  width: fit-content;
}
.footer__bottom{
  grid-column: 1 / -1;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px dashed rgba(16,24,40,.12);
  color: rgba(16,24,40,.72);
  font-weight: 750;
}
.muted{ color: var(--muted); }

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .content__grid{ grid-template-columns: 1fr; }
}
@media (max-width: 820px){
  .featureGrid{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .footer__bottom{ flex-direction:column; align-items:flex-start; }
}
/* Content full width */
.contentBox--full{
  width: 100%;
}
/* FAQ Icons (HTML'e dokunmadan) */
.faqItem summary{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Genel ikon stili */
.faqItem summary::before{
  content:"";
  width:34px;
  height:34px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  background: rgba(255,255,255,.65);
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}

/* 1. soru */
.faqItem:nth-child(1) summary::before{
  content:"💎";
}

/* 2. soru */
.faqItem:nth-child(2) summary::before{
  content:"🛡️";
}

/* 3. soru */
.faqItem:nth-child(3) summary::before{
  content:"📱";
}

/* 4. soru */
.faqItem:nth-child(4) summary::before{
  content:"🔗";
}

/* Content Image */
.contentImageWrap{
  display:flex;
  justify-content:center;
  margin: 26px 0 30px;
}

.contentImage{
  width: 100%;
  max-width: 60%; /* 👈 Desktop genişliği (70–85 arası oynayabilirsin) */
  height: auto;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 30px 70px rgba(20,26,50,.18);
  border: 1px solid rgba(255,255,255,.6);
  transition: transform .4s ease, box-shadow .4s ease;
}

/* Hover efekti (sadece desktop) */
@media (hover:hover){
  .contentImage:hover{
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 40px 90px rgba(20,26,50,.22);
  }
}

/* Mobilde tam genişlik */
@media (max-width: 768px){
  .contentImage{
    max-width: 100%;
    border-radius: 20px;
  }
}
/* Contact layout */
.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
.contactCard{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(20,26,50,.08);
  padding: 16px;
}
.contactCard h2{ margin:0 0 6px; font-size: 18px; }
.contactCard p{ margin:0 0 12px; color: rgba(16,24,40,.7); line-height:1.65; font-size: 13.5px; }

.contactLine{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.70);
  margin-bottom: 10px;
}
.contactLabel{ font-weight: 900; color: rgba(16,24,40,.78); }
.contactValue{ color: rgba(16,24,40,.82); text-decoration:none; font-weight: 800; }
.contactNote{
  margin-top: 10px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.70);
  color: rgba(16,24,40,.75);
  line-height:1.65;
  font-size: 13px;
}

/* Form */
.contactForm{ display:grid; gap: 10px; }
.formRow{ display:grid; gap: 6px; }
.formLabel{ font-weight: 900; color: rgba(16,24,40,.78); font-size: 13px; }
.formInput, .formTextarea{
  width:100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.75);
  background: rgba(255,255,255,.58);
  padding: 12px 12px;
  outline: none;
  box-shadow: 0 10px 22px rgba(20,26,50,.06);
  color: rgba(16,24,40,.9);
}
.formInput:focus, .formTextarea:focus{
  border-color: rgba(6,182,212,.55);
  box-shadow: 0 16px 34px rgba(6,182,212,.14);
}
.formTextarea{ resize: vertical; min-height: 140px; }

/* Policy */
.policyHead h1{
  margin: 0 0 8px;
  font-size: 34px;
  letter-spacing: -0.02em;
}
.policySec{ margin-top: 16px; }
.policySec h2{
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.policySec p{ margin: 0; color: rgba(16,24,40,.76); line-height: 1.75; }
.policySec .niceList{ margin-top: 10px; }
.policyFoot{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 18px;
}

/* Responsive */
@media (max-width: 900px){
  .contactGrid{ grid-template-columns: 1fr; }
}
