:root{
  --ink:#021b13;
  --muted:#4b7062;
  --bd:rgba(148, 227, 186, 0.45);
  --glass:rgba(255,255,255,0.78);
  --bg:#e6fff3;

  /* SVG ICON SİSTEMİ (WP) — tek yerden kilit */
  --ic:16px;
  --ic-sm:14px;
  --ic-lg:22px;
}

*{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(34,197,94,.16),transparent 55%),
    radial-gradient(circle at 100% 0,rgba(45,212,191,.16),transparent 55%),
    var(--bg);
  color:var(--ink);
}

/* =============== SVG ICON (Sprite Use) =============== */
.qt-ic{
  width:var(--ic);
  height:var(--ic);
  flex:0 0 var(--ic);
  display:block;
  fill:currentColor;
}

/* ikon boyutu kilitleri (konteyner bazlı) */
.h-icon .qt-ic{ width:var(--ic-lg); height:var(--ic-lg); flex-basis:var(--ic-lg); }
.btn-primary .qt-ic,
.verify-box .qt-ic,
.pi-copy .qt-ic,
.pi-link .qt-ic,
.cb-copy .qt-ic,
.cb-btn .qt-ic{
  width:var(--ic-sm);
  height:var(--ic-sm);
  flex-basis:var(--ic-sm);
}

/* 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(22px) saturate(170%);
  -webkit-backdrop-filter:blur(22px) saturate(170%);
  border:1px solid var(--bd);
  align-items:center;
  margin-bottom:22px;
}

.h-icon{
  width:46px;height:46px;
  display:grid;place-items:center;
  border-radius:16px;
  background:rgba(240,253,250,.95);
  border:1px solid rgba(74,222,128,.8);
  box-shadow:0 4px 14px rgba(15,23,42,.16);
  color:#047857; /* WhatsApp yeşili */
}

.h-text h1{
  margin:0;
  font-size:1.4rem;
  font-weight:900;
  letter-spacing:-.02em;
}
.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:#03241a;
}
.ios-form input,
.ios-form textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(187,247,208,.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,
.ios-form textarea:focus{
  outline:none;
  border-color:#22c55e;
  box-shadow:0 0 0 2px rgba(34,197,94,.25);
}

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

/* BUTTON */
.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,#16a34a,#22c55e);
  color:#f9fafb;
  cursor:pointer;
  width:100%;
  box-shadow:0 10px 24px rgba(22,163,74,.45);
  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(21,128,61,.55);
}

/* VERIFY BOX */
.verify-box{
  margin-top:4px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 11px;
  border-radius:14px;
  border:1px solid rgba(187,247,208,.95);
  background:#ecfdf5;
  font-size:.9rem;
  color:#064e3b;
}

/* PROGRESS + DONE */
.card-title{
  margin:0 0 6px;
  font-size:1.05rem;
  font-weight:800;
}
.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:#dcfce7;
  overflow:hidden;
  border:1px solid rgba(187,247,208,1);
}
.bar{
  height:100%;
  width:0%;
  background:linear-gradient(90deg,#16a34a,#22c55e,#22c55e,#4ade80);
  transition:width 1s linear;
}

/* Sayaç altı kupon + hızlı paket alanı */
.progress-cta{
  margin-top:14px;
  padding:10px 14px 12px;
  border-radius:14px;
  background:rgba(240,253,250,.96);
  border:1px solid rgba(134,239,172,.6);
}

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

/* Alt satır */
.progress-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
}

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

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

/* Kopyala butonu – sade */
.pi-copy{
  border:none;
  background:#d1fae5;
  border-radius:999px;
  padding:6px 12px;
  font-size:.85rem;
  font-weight:600;
  color:#064e3b;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.pi-copy.copied{
  background:#bbf7d0;
  color:#022c22;
}

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

/* COUPON BANNER */
.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);
}
.cb-text{
  font-size:.9rem;
  color:#022c22;
}
.cb-text b{ font-weight:800; }

.cb-code-box{
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:12px;
  background:#022c22;
  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:#16a34a;
  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{
    width:100%;
    margin-left:0;
    justify-content:center;
  }
  .progress-row{
    flex-direction:row;
    flex-wrap:wrap;
  }
  .pi-link{ margin-left:0; }
}

/* === SCROLL ARTICLE – Soft Premium (aynı, ikon bağımsız) === */
.scroll-article{
  max-width:95%;
  margin:40px auto;
  padding:36px;
  background:rgba(255, 255, 255, 0.85);
  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;
}
.scroll-article:hover{
  box-shadow:0 10px 32px rgba(100, 120, 160, 0.12);
}
.scroll-box{
  max-height:360px;
  overflow-y:auto;
  padding-right:14px;
  font-size:1rem;
  line-height:1.65;
  color:#394060;
}
.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); }

.scroll-article h2{
  font-size:1.5rem;
  font-weight:700;
  margin-bottom:18px;
  color:#2b2f47;
  line-height:1.35;
}
.scroll-box h3{
  font-size:1.2rem;
  font-weight:600;
  margin:18px 0 10px;
  color:#333a5c;
  line-height:1.4;
}
.scroll-box p{
  font-size:1rem;
  line-height:1.65;
  margin-bottom:12px;
  color:#4a4f70;
}
.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;
}

@media (max-width:1024px){
  .scroll-article{ padding:28px; }
  .scroll-box{
    max-height:280px;
    font-size:0.95rem;
    line-height:1.6;
  }
  .scroll-article h2{ font-size:1.4rem; }
  .scroll-box h3{ font-size:1.15rem; }
  .scroll-box ul li{ font-size:0.95rem; }
}

@media (max-width:768px){
  .scroll-article{
    max-width:95%;
    padding:22px;
  }
  .scroll-box{
    max-height:220px;
    font-size:0.9rem;
    line-height:1.55;
  }
  .scroll-article h2{ font-size:1.3rem; }
  .scroll-box h3{ font-size:1.05rem; }
  .scroll-box ul li{ font-size:0.9rem; }
}