/* ==========================================================
   QUANTAPS • Facebook Ücretsiz Araçlar
   iOS Soft-Glass Tema (FB Edition)
   ========================================================== */

:root{
  --ink:#0f172a;
  --muted:#667085;
  --bd:rgba(180,195,255,.32);
  --glass:rgba(255,255,255,.78);
  --bg:#e9f2ff;

  --fb-main:#1877F2;
  --fb-main-soft:#e0ebff;
  --fb-dark:#0b3c88;
}
*{box-sizing:border-box;}

body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  background:
    radial-gradient(circle at 0 0,rgba(24,119,242,.22),transparent 55%),
    radial-gradient(circle at 100% 0,rgba(24,119,242,.12),transparent 55%),
    #e9f2ff;
  color:var(--ink);
}

/* Genel wrap */
.tool-wrap{
  max-width:880px;
  margin:0 auto;
  padding:40px 16px 52px;
}

/* ========== HERO ========== */
.ios-hero{
  display:flex;
  gap:14px;
  padding:18px 18px;
  border-radius:24px;
  background:var(--glass);
  backdrop-filter:blur(20px) saturate(170%);
  -webkit-backdrop-filter:blur(20px) saturate(170%);
  border:1px solid var(--bd);
  align-items:center;
  margin-bottom:22px;
  box-shadow:0 14px 40px rgba(15,23,42,.12);
}
.h-icon{
  width:46px;height:46px;
  display:grid;place-items:center;
  border-radius:16px;
  background:#ffffff;
  border:1px solid rgba(180,195,255,.7);
  box-shadow:0 4px 14px rgba(15,23,42,.16);
  font-size:22px;
  color:var(--fb-main);
}
.h-text h1{
  margin:0;
  font-size:1.4rem;
  font-weight:900;
  letter-spacing:-.02em;
  color:#0b1220;
}
.h-text p{
  margin:4px 0 0;
  font-size:.92rem;
  color:var(--muted);
}

/* ========== CARDS ========== */
.ios-card{
  background:var(--glass);
  border-radius:22px;
  border:1px solid var(--bd);
  padding:20px 18px;
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:0 14px 40px rgba(15,23,42,.10);
  margin-bottom:22px;
}

/* ========== FORM ========== */
.ios-form{
  display:grid;
  gap:14px;
  position:relative;
}
.ios-form label{
  font-weight:700;
  font-size:.94rem;
  color:#111827;
}
.ios-form input{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(186,198,255,.95);
  padding:11px 12px;
  font-size:.95rem;
  background:#ffffff;
  color:var(--ink);
  transition:border-color .18s, box-shadow .18s, background .18s;
}
.ios-form input:focus{
  outline:none;
  border-color:var(--fb-main);
  box-shadow:0 0 0 2px rgba(24,119,242,.25);
}

/* Honeypot */
.hp{
  position:absolute;
  left:-9999px;
  top:-9999px;
}

/* ========== BUTON ========== */
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:11px 16px;
  border-radius:14px;
  border:none;
  font-weight:800;
  font-size:.95rem;
  background:linear-gradient(135deg,var(--fb-main),#1453b8);
  color:#fff;
  cursor:pointer;
  width:100%;
  box-shadow:0 10px 24px rgba(15,23,42,.35);
  transition:transform .12s, box-shadow .12s, opacity .12s;
}
.btn-primary:disabled{
  opacity:.7;
  box-shadow:none;
  cursor:default;
}
.btn-primary:not(:disabled):hover{
  transform:translateY(-1px);
  box-shadow:0 14px 30px rgba(15,23,42,.42);
}

/* ========== VERIFY BOX ========== */
.verify-box{
  margin-top:4px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 11px;
  border-radius:14px;
  border:1px solid rgba(186,198,255,.95);
  background:#f5f7ff;
  font-size:.9rem;
  color:#111827;
}

/* ========== PROGRESS & DONE ========== */
.card-title{
  margin:0 0 6px;
  font-size:1.05rem;
  font-weight:800;
  color:#0b1220;
}
.muted{
  margin:0;
  font-size:.9rem;
  color:var(--muted);
}
.timer{
  margin:10px 0 4px;
  text-align:center;
}
.time{
  font-size:1.9rem;
  font-weight:900;
  letter-spacing:.06em;
}
.bar-wrap{
  width:100%;
  height:9px;
  border-radius:999px;
  background:#e4e7ff;
  overflow:hidden;
  border:1px solid rgba(186,198,255,1);
}
.bar{
  height:100%;
  width:0%;
  background:linear-gradient(90deg,var(--fb-main),#54a3ff);
  transition:width 1s linear;
}

/* ========== PROGRESS CTA (Sayaç altı kupon alanı) ========== */
.progress-cta{
  margin-top:14px;
  padding:10px 14px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(148,163,255,.26);
}

/* Üst açıklama */
.progress-text{
  font-size:.9rem;
  color:#4b5563;
  margin-bottom:8px;
}

/* Alt satır: Kupon + Kopyala + Hızlı paket linki */
.progress-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
}

.pi-prefix{
  font-size:.9rem;
  font-weight:700;
  color:#111827;
}

.pi-code{
  font-family:SFMono-Regular,ui-monospace,Menlo,monospace;
  font-size:.9rem;
  font-weight:800;
  padding:4px 10px;
  border-radius:10px;
  background:#020617;
  color:#f9fafb;
}

/* Kopyala butonu – sade FB uyumlu */
.pi-copy{
  border:none;
  background:#e5edff;
  border-radius:999px;
  padding:6px 12px;
  font-size:.85rem;
  font-weight:600;
  color:#111827;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.pi-copy.copied{
  background:#22c55e;
  color:#f9fafb;
}

/* Hızlı Paketlere Git butonu */
.pi-link{
  text-decoration:none;
  font-size:.85rem;
  font-weight:700;
  padding:7px 12px;
  border-radius:999px;
  background:var(--fb-main);
  color:#f9fafb;
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-left:auto;
}
.pi-link i{font-size:.85rem;}

/* ========== KUPON BANNER (Sayfa altı) ========== */
.coupon-banner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  padding:13px 14px;
  border-radius:18px;
  background:var(--glass);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border:1px solid var(--bd);
  box-shadow:0 10px 28px rgba(15,23,42,.12);
}
.cb-text{
  font-size:.9rem;
  color:#111827;
}
.cb-text b{
  font-weight:800;
}
.cb-code-box{
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:12px;
  background:#020617;
  color:#f9fafb;
  font-size:.86rem;
}
.cb-code{
  font-weight:900;
  letter-spacing:.08em;
}
.cb-copy{
  border:none;
  background:transparent;
  color:#e5e7eb;
  font-size:.8rem;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:4px;
}
.cb-copy.copied{
  color:#4ade80;
}
.cb-btn{
  margin-left:auto;
  padding:7px 13px;
  border-radius:11px;
  border:none;
  text-decoration:none;
  background:var(--fb-main);
  color:#f9fafb;
  font-size:.85rem;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  transition:opacity .15s, transform .12s;
}
.cb-btn:hover{
  opacity:.9;
  transform:translateY(-1px);
}

/* ========== MOBİL ========== */
@media (max-width:640px){
  .ios-hero{
    padding:16px 14px;
    border-radius:20px;
  }
  .h-text h1{
    font-size:1.25rem;
  }
  .ios-card{
    padding:18px 14px;
  }
  .coupon-banner{
    align-items:flex-start;
  }
  .cb-btn{
    margin-left:0;
    width:100%;
    justify-content:center;
  }
  .progress-row{
    flex-direction:row;
    flex-wrap:wrap;
  }
  .pi-link{
    margin-left:0;
  }
}


/* === SCROLL ARTICLE – Soft Premium === */
.scroll-article {
  max-width: 95%;
  margin: 40px auto;
  padding: 36px;
  background: rgba(255, 255, 255, 0.85); /* Soft beyaz cam efekti */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(100, 120, 160, 0.08);
  border: 1px solid rgba(160, 180, 210, 0.12);
  transition: all 0.3s ease;
}

/* Hover’da hafif yükselme */
.scroll-article:hover {
  box-shadow: 0 10px 32px rgba(100, 120, 160, 0.12);
}

/* === İç Scroll Alanı === */
.scroll-box {
  max-height: 360px;
  overflow-y: auto;
  padding-right: 14px;

  /* Metin tipografisi */
  font-size: 1rem; /* ~16px masaüstü */
  line-height: 1.65;
  color: #394060;
}

/* Scrollbar – pastel mavi/lila tonlu */
.scroll-box::-webkit-scrollbar {
  width: 8px;
}
.scroll-box::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #aabdf7, #c7b7ff);
  border-radius: 6px;
  transition: background 0.3s ease;
}
.scroll-box::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #96abf5, #b8a7ff);
}
.scroll-box::-webkit-scrollbar-track {
  background: rgba(160, 180, 220, 0.08);
}

/* === Başlıklar === */
.scroll-article h2 {
  font-size: 1.5rem; /* ~24px desktop */
  font-weight: 700;
  margin-bottom: 18px;
  color: #2b2f47;
  line-height: 1.35;
}

.scroll-box h3 {
  font-size: 1.2rem; /* ~19px */
  font-weight: 600;
  margin: 18px 0 10px;
  color: #333a5c;
  line-height: 1.4;
}

/* Paragraflar */
.scroll-box p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 12px;
  color: #4a4f70;
}

/* Listeler */
.scroll-box ul {
  margin: 12px 0;
  padding-left: 20px;
}
.scroll-box ul li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #4a4f70;
}

/* === Tablet için === */
@media (max-width: 1024px) {
  .scroll-article {
    padding: 28px;
  }
  .scroll-box {
    max-height: 280px;
    font-size: 0.95rem; /* 15px */
    line-height: 1.6;
  }
  .scroll-article h2 {
    font-size: 1.4rem; /* ~22px */
  }
  .scroll-box h3 {
    font-size: 1.15rem; /* ~18px */
  }
  .scroll-box ul li {
    font-size: 0.95rem;
  }
}

/* === Mobil için === */
@media (max-width: 768px) {
  .scroll-article {
    max-width: 95%;
    padding: 22px;
  }
  .scroll-box {
    max-height: 220px;
    font-size: 0.9rem; /* 14px */
    line-height: 1.55; /* Daha kompakt mobil */
  }
  .scroll-article h2 {
    font-size: 1.3rem; /* ~20-21px */
  }
  .scroll-box h3 {
    font-size: 1.05rem; /* ~17px */
  }
  .scroll-box ul li {
    font-size: 0.9rem;
  }
}