/* ============================================================
   Residentialproxy.tr — Light / Professional Design System
   Palette: soft white + light blue
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg:            #f4f8ff;
  --bg-soft:       #eef4fd;
  --surface:       #ffffff;
  --surface-2:     #f7fafe;
  --card:          #ffffff;
  --card-border:   #e3ecf9;
  --line:          #e8eef8;

  --text:          #0f1f3d;
  --text-soft:     #475a78;
  --text-mut:      #7e8ca6;

  --brand:         #2f6bff;
  --brand-2:       #38bdf8;
  --brand-deep:    #1d4ed8;
  --accent:        #6366f1;
  --good:          #16a34a;

  --grad:          linear-gradient(110deg, #2f6bff 0%, #38bdf8 100%);
  --grad-soft:     linear-gradient(135deg, #eaf2ff 0%, #e6f8ff 100%);
  --grad-text:     linear-gradient(110deg, #2f6bff 0%, #38bdf8 100%);
  --hero-tint:     linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);

  --radius:        18px;
  --radius-sm:     12px;
  --shadow-sm:     0 2px 10px rgba(24, 56, 120, 0.05);
  --shadow:        0 18px 44px -22px rgba(31, 78, 162, 0.30);
  --shadow-glow:   0 30px 70px -34px rgba(47, 107, 255, 0.45);
  --max:           1660px;
  --header-h:      74px;

  --font:          'Plus Jakarta Sans', system-ui, sans-serif;
  --font-alt:      'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Soft ambient tint */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(900px 480px at 82% -6%, rgba(56,189,248,.16), transparent 60%),
    radial-gradient(760px 460px at 4% 4%, rgba(47,107,255,.10), transparent 58%);
  z-index: -2; pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.wrap { width: 85%; max-width: var(--max); margin-inline: auto; padding-inline: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-alt);
  font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-deep);
  padding: 7px 14px; border-radius: 999px;
  background: #e7f0ff;
  border: 1px solid #d4e3ff;
}

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

section { position: relative; padding: 84px 0; }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.12; letter-spacing: -.02em; }
.section-head p { color: var(--text-soft); margin-top: 14px; font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 700; font-size: 15px;
  padding: 13px 24px; border-radius: 12px; cursor: pointer;
  border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 14px 30px -12px rgba(47,107,255,.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(47,107,255,.7); }
.btn-ghost { background: #fff; color: var(--brand-deep); border-color: #d4e3ff; box-shadow: var(--shadow-sm); }
.btn-ghost:hover { background: #f3f8ff; transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 16px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid var(--line);
}
.nav { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; letter-spacing: -.02em; color: var(--text); }
.brand .logo {
  width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--grad); color: #fff;
  box-shadow: 0 8px 20px -8px rgba(47,107,255,.7);
}
.brand .logo svg { width: 21px; height: 21px; }
.brand b { color: var(--brand); }

.menu { display: flex; align-items: center; gap: 4px; }
.menu > li { position: relative; }
.menu > li > a {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 10px;
  font-weight: 600; font-size: 15px; color: var(--text-soft);
  transition: color .15s, background .15s;
}
.menu > li > a:hover,
.menu > li.active > a { color: var(--brand-deep); background: #eef5ff; }
.menu .chev { width: 15px; height: 15px; transition: transform .2s; opacity: .65; }
.menu > li:hover .chev { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 330px; padding: 10px;
  background: #fff; border: 1px solid var(--card-border);
  border-radius: 16px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s;
}
.menu > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.dropdown a { display: flex; align-items: flex-start; gap: 12px; padding: 11px 12px; border-radius: 11px; transition: background .15s; }
.dropdown a:hover { background: #f1f7ff; }
.dropdown .di {
  flex: none; width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--grad-soft); border: 1px solid #dcebff; color: var(--brand);
}
.dropdown .di svg { width: 19px; height: 19px; }
.dropdown a > span:last-child { display: flex; flex-direction: column; gap: 3px; }
.dropdown .dt { display: block; font-weight: 700; font-size: 14.5px; color: var(--text); line-height: 1.25; }
.dropdown .dd { display: block; font-size: 12.5px; color: var(--text-mut); line-height: 1.4; }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.burger { display: none; width: 44px; height: 44px; border-radius: 11px; background: #fff; border: 1px solid var(--card-border); color: var(--text); cursor: pointer; place-items: center; box-shadow: var(--shadow-sm); }
.burger svg { width: 22px; height: 22px; }

/* Mobile panel */
.mobile-panel { display: none; position: fixed; inset: var(--header-h) 0 0 0; z-index: 99; background: rgba(255,255,255,.98); backdrop-filter: blur(10px); padding: 22px; overflow-y: auto; }
.mobile-panel.open { display: block; }
.mobile-panel a { display: block; padding: 13px 14px; border-radius: 11px; font-weight: 600; color: var(--text-soft); }
.mobile-panel a:hover { background: #eef5ff; color: var(--brand-deep); }
.mobile-panel .mgroup { margin: 6px 0; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.mobile-panel .mgroup > span { display: block; padding: 13px 14px; font-weight: 700; color: var(--brand); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; background: #f6faff; }
.mobile-panel .mgroup a { padding-left: 26px; }

/* ============================================================
   PRODUCT / PAGE HERO  (image-style layout)
   ============================================================ */
.phero { padding: 70px 0 60px; background: var(--hero-tint); border-bottom: 1px solid var(--line); }
.phero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 54px; align-items: start; }
.phero h1 { font-size: clamp(30px, 4.4vw, 46px); line-height: 1.1; letter-spacing: -.025em; margin: 16px 0 18px; }
.phero .lead { color: var(--text-soft); font-size: 17px; margin-bottom: 16px; }
.phero p { color: var(--text-soft); margin-bottom: 16px; }
.phero p strong { color: var(--text); }

.feat-title { font-size: 21px; font-weight: 800; margin: 30px 0 16px; letter-spacing: -.01em; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 26px; }
.feat-grid li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-soft); padding: 5px 0; }
.feat-grid .ck {
  flex: none; width: 22px; height: 22px; border-radius: 7px; margin-top: 1px;
  display: grid; place-items: center;
  background: #e3f6ec; color: var(--good); border: 1px solid #c4ebcf;
}
.feat-grid .ck svg { width: 13px; height: 13px; }

/* Summary card (right side) */
.summary-card {
  position: sticky; top: calc(var(--header-h) + 22px);
  background: #fff;
  border: 1px solid var(--card-border); border-radius: 22px;
  padding: 26px; box-shadow: var(--shadow-glow);
  overflow: hidden;
}
.summary-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px 220px at 80% -10%, rgba(56,189,248,.14), transparent 60%);
  pointer-events: none;
}
.sc-head { display: flex; align-items: center; gap: 13px; margin-bottom: 4px; position: relative; }
.sc-ic { width: 46px; height: 46px; border-radius: 13px; flex: none; display: grid; place-items: center; background: var(--grad); color: #fff; box-shadow: 0 10px 24px -10px rgba(47,107,255,.7); }
.sc-ic svg { width: 24px; height: 24px; }
.sc-head h3 { font-size: 19px; font-weight: 800; }
.sc-head span { font-size: 13px; color: var(--text-mut); }
.sc-rows { margin: 20px 0 22px; position: relative; }
.sc-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.sc-row:last-child { border-bottom: 0; }
.sc-row .k { color: var(--text-mut); font-size: 14px; }
.sc-row .v { font-weight: 700; font-size: 14.5px; text-align: right; color: var(--text); }
.summary-card .btn { width: 100%; position: relative; }
.sc-note { text-align: center; font-size: 12.5px; color: var(--text-mut); margin-top: 14px; position: relative; }

/* ---------- Image hero (home) ---------- */
.home-hero .phero-grid { grid-template-columns: 1.45fr 0.85fr; align-items: start; gap: 56px; }
.phero-visual { position: sticky; top: calc(var(--header-h) + 28px); }
.phero-visual .hero-img { width: 100%; max-width: 460px; height: auto; margin-inline: auto; }

/* Hero top row: eyebrow + trust bar (sit next to each other) */
.hero-top { display: flex; align-items: center; justify-content: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }

/* Hero trust / rating bar (clickable -> reviews) */
.hero-trust {
  display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 10px 18px;
  background: #fff; border: 1px solid var(--card-border); border-radius: 14px;
  box-shadow: var(--shadow-sm); color: inherit;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.hero-trust:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: #c3dbff; }
.hero-trust .ht-block { display: flex; flex-direction: column; gap: 2px; }
.ht-stars { display: flex; gap: 2px; color: #f5a623; }
.ht-stars svg { width: 16px; height: 16px; }
.ht-count b { font-size: 19px; font-weight: 800; color: var(--text); letter-spacing: -.01em; }
.ht-txt { font-size: 13px; color: var(--text-soft); }
.ht-txt b { color: var(--text); font-weight: 800; }
.ht-divider { width: 1px; align-self: stretch; min-height: 32px; background: var(--line); }
.ht-logos { display: flex; align-items: center; gap: 14px; }
.ht-logos img { height: 22px; width: auto; object-fit: contain; }

/* ============================================================
   GENERIC CARDS / GRIDS
   ============================================================ */
.cards { display: grid; gap: 22px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); border-color: #c3dbff; box-shadow: var(--shadow); }
.card .ic { width: 50px; height: 50px; border-radius: 14px; margin-bottom: 16px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid #dcebff; color: var(--brand); }
.card .ic svg { width: 25px; height: 25px; }
.card h3 { font-size: 18.5px; margin-bottom: 8px; letter-spacing: -.01em; }
.card p { color: var(--text-soft); font-size: 14.5px; }

/* Product cards */
.pcard { display: flex; flex-direction: column; }
.pcard .tag { font-size: 12px; color: var(--brand-deep); font-weight: 700; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 10px; }
.pcard h3 { font-size: 20px; }
.pcard ul { margin: 14px 0 20px; display: grid; gap: 8px; }
.pcard ul li { display: flex; gap: 9px; align-items: center; color: var(--text-soft); font-size: 14px; }
.pcard ul li svg { width: 16px; height: 16px; color: var(--good); flex: none; }
.pcard .price { margin-top: auto; display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px; }
.pcard .price b { font-size: 28px; letter-spacing: -.02em; color: var(--text); }
.pcard .price span { color: var(--text-mut); font-size: 14px; }
.pcard .btn { width: 100%; }

/* Residential ürün hero görseli (özet kartı yerine) */
.resi-visual { display: flex; justify-content: center; align-items: center; }
.resi-img { width: 100%; max-width: 660px; height: auto; }
@media (max-width: 1024px) { .resi-visual { max-width: 560px; margin-inline: auto; } }

/* Kurumsal hero — text left, image right */
.kurumsal-hero .phero-grid { grid-template-columns: 1.25fr 0.75fr; align-items: center; gap: 48px; margin-top: 16px; }
.kurumsal-hero h1 { margin: 12px 0 16px; }
.kurumsal-hero .kh { font-size: 20px; letter-spacing: -.01em; margin: 26px 0 8px; }
.kurumsal-visual { display: flex; justify-content: center; }
.kurumsal-img { width: 100%; max-width: 420px; height: auto; }
@media (max-width: 1024px) { .kurumsal-hero .phero-grid { grid-template-columns: 1fr; gap: 30px; } }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.stats.stats-3 { grid-template-columns: repeat(3,1fr); max-width: 880px; margin-inline: auto; }
.stat { text-align: center; padding: 26px 18px; background: #fff; border: 1px solid var(--card-border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.stat b { display: block; font-size: 38px; letter-spacing: -.03em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat span { color: var(--text-mut); font-size: 14px; font-weight: 500; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; counter-reset: s; }
.step { background: #fff; border: 1px solid var(--card-border); border-radius: var(--radius); padding: 26px; position: relative; box-shadow: var(--shadow-sm); }
.step .n { counter-increment: s; font-family: var(--font-alt); font-weight: 800; font-size: 15px; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--grad); color: #fff; margin-bottom: 14px; }
.step .n::before { content: "0" counter(s); }
.step h4 { font-size: 16.5px; margin-bottom: 6px; }
.step p { color: var(--text-soft); font-size: 14px; }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--card-border); border-radius: 14px; padding: 4px 20px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; list-style: none; padding: 17px 0; font-weight: 700; font-size: 16px; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--brand); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--text-soft); padding: 0 0 18px; font-size: 14.5px; }

/* Prose */
.prose { max-width: 760px; }
.prose h2 { font-size: 26px; margin: 36px 0 14px; letter-spacing: -.01em; }
.prose h3 { font-size: 20px; margin: 26px 0 10px; }
.prose p { color: var(--text-soft); margin-bottom: 16px; }
.prose ul { margin: 0 0 18px; display: grid; gap: 8px; }
.prose ul li { display: flex; gap: 10px; color: var(--text-soft); }
.prose ul li::before { content: ""; flex: none; width: 7px; height: 7px; margin-top: 10px; border-radius: 50%; background: var(--brand); }

/* CTA band */
.cta-band {
  background: var(--grad); color: #fff;
  border-radius: 26px; padding: 50px; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(47,107,255,.6);
}
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 240px at 50% -20%, rgba(255,255,255,.25), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(26px, 3.6vw, 38px); letter-spacing: -.02em; }
.cta-band .grad-text { -webkit-text-fill-color: #fff; color: #fff; background: none; }
.cta-band p { color: rgba(255,255,255,.9); margin: 14px auto 26px; max-width: 560px; }
.cta-band .btn-primary { background: #fff; color: var(--brand-deep); box-shadow: 0 14px 30px -10px rgba(0,0,0,.25); }
.cta-band .btn-ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.24); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page banner ---------- */
.page-banner { padding: 56px 0 10px; }
.page-banner h1 { font-size: clamp(30px, 4.4vw, 46px); letter-spacing: -.025em; margin: 14px 0 12px; }
.page-banner p { color: var(--text-soft); font-size: 17px; max-width: 640px; }
.breadcrumb { font-size: 13.5px; color: var(--text-mut); font-family: var(--font-alt); }
.breadcrumb a:hover { color: var(--brand); }

/* Blog list */
.post { display: grid; grid-template-columns: 200px 1fr; gap: 22px; align-items: center; background: #fff; border: 1px solid var(--card-border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm); transition: border-color .2s, transform .2s, box-shadow .2s; }
.post:hover { border-color: #c3dbff; transform: translateY(-3px); box-shadow: var(--shadow); }
.post .thumb { height: 130px; border-radius: 13px; background: var(--grad-soft); display: grid; place-items: center; color: var(--brand); }
.post .thumb svg { width: 42px; height: 42px; opacity: .8; }
.post .cat { font-size: 12px; color: var(--brand-deep); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.post h3 { font-size: 19px; margin: 8px 0; }
.post p { color: var(--text-soft); font-size: 14.5px; }
.post .meta { color: var(--text-mut); font-size: 13px; margin-top: 10px; font-family: var(--font-alt); }

/* Tools grid */
.tool { display: flex; gap: 16px; align-items: flex-start; }
.tool .ic { flex: none; margin-bottom: 0; }

/* ============================================================
   PRICING (premium, narrower + taller)
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; align-items: stretch; width: min(1300px, 92vw); margin: 24px 0 0; position: relative; left: 50%; transform: translateX(-50%); }
.plan-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--card-border); border-radius: 20px;
  padding: 28px 24px; box-shadow: var(--shadow-sm);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.plan-card:hover { transform: translateY(-5px); border-color: #bcd5ff; box-shadow: var(--shadow); }
.plan-card.featured { border: 1.5px solid var(--brand); box-shadow: var(--shadow-glow); }
.plan-ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; white-space: nowrap;
  font-size: 12px; font-weight: 700; letter-spacing: .02em;
  padding: 7px 16px; border-radius: 999px;
  box-shadow: 0 10px 22px -8px rgba(47,107,255,.6);
}
.plan-top h3 { font-size: 21px; font-weight: 800; letter-spacing: -.01em; color: var(--text-mut); }
.plan-top h3 .pt-type { color: var(--text); }
.plan-sub { color: var(--text-mut); font-size: 13.5px; margin-top: 5px; }
.plan-price { display: flex; align-items: baseline; gap: 3px; margin: 20px 0 12px; }
.plan-price b { font-size: 40px; font-weight: 800; letter-spacing: -.03em; color: var(--text); line-height: 1; }
.plan-price .pp-dec { font-size: 16px; font-weight: 700; color: var(--text); }
.plan-price .pp-per { font-size: 13px; color: var(--text-mut); margin-left: 5px; }
.plan-note { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; font-size: 12.5px; color: var(--text-soft); margin-bottom: 20px; }
.plan-note .pn-head { display: inline-flex; align-items: center; gap: 8px; }
.plan-note svg { width: 15px; height: 15px; color: var(--brand); flex: none; }
.plan-note em { font-style: normal; font-weight: 700; color: var(--brand-deep); background: #eef5ff; padding: 4px 10px; border-radius: 7px; white-space: nowrap; }
.plan-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 18px; border-radius: 12px;
  background: var(--text); color: #fff; font-weight: 700; font-size: 15px;
  transition: transform .18s, box-shadow .18s, filter .18s;
}
.plan-btn svg { width: 18px; height: 18px; }
.plan-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(15,31,61,.5); filter: brightness(1.08); }
.plan-card.featured .plan-btn { background: var(--grad); box-shadow: 0 14px 30px -12px rgba(47,107,255,.55); }
.plan-divider { display: flex; align-items: center; gap: 12px; margin: 22px 0 14px; }
.plan-divider::before, .plan-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.plan-divider span { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mut); }
.plan-feats { display: grid; }
.plan-feats li { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.plan-feats li:last-child { border-bottom: 0; }
.pf-l { display: flex; align-items: center; gap: 9px; color: var(--text-soft); min-width: 0; }
.pf-l svg { width: 16px; height: 16px; color: var(--text-mut); flex: none; }
.pf-v { font-weight: 700; color: var(--text); text-align: right; white-space: nowrap; }
.plan-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.plan-badges span { font-size: 11px; font-weight: 700; color: var(--text-mut); background: var(--surface-2); border: 1px solid var(--line); border-radius: 7px; padding: 5px 9px; }

/* country flags (featured card) */
.plan-flags { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.plan-card.featured .plan-badges { margin-top: 0; padding-top: 12px; border-top: 0; }
.flag-stack { display: flex; }
.flag-stack .flag { width: 27px; height: 27px; border-radius: 50%; overflow: hidden; border: 2px solid #fff; box-shadow: 0 1px 4px rgba(15,31,61,.22); margin-left: -9px; background: #fff; }
.flag-stack .flag:first-child { margin-left: 0; }
.flag-stack .flag svg { width: 100%; height: 100%; display: block; }
.plan-flags .more { font-size: 13px; font-weight: 700; color: var(--text-soft); }

/* operator logos row (in a plan card footer) */
.plan-logos { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: center; gap: 16px; }
.plan-logos img { height: 32px; width: auto; max-width: 34%; object-fit: contain; }

@media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); width: min(740px, 92vw); } }
@media (max-width: 620px) { .pricing-grid { grid-template-columns: 1fr; width: min(420px, 92vw); } }

/* ============================================================
   LONG CONTENT (Residential Proxy intro on home)
   ============================================================ */
.content-block { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 56px; align-items: start; }
.content-block .cb-text p { color: var(--text-soft); margin-bottom: 16px; }
.content-block .cb-text p strong { color: var(--text); }
.content-block h3 { font-size: 22px; margin: 26px 0 12px; letter-spacing: -.01em; }
.content-block h3:first-child { margin-top: 0; }
.content-block .cb-list { display: grid; gap: 12px; margin-top: 8px; }
.content-block .cb-list li { display: flex; gap: 13px; align-items: flex-start; }
.content-block .cb-list .ck { flex: none; width: 24px; height: 24px; border-radius: 8px; display: grid; place-items: center; background: #e3f6ec; color: var(--good); border: 1px solid #c4ebcf; margin-top: 2px; }
.content-block .cb-list .ck svg { width: 14px; height: 14px; }
.content-block .cb-list b { display: block; color: var(--text); font-size: 15.5px; }
.content-block .cb-list span { color: var(--text-soft); font-size: 14px; }
.cb-panel { background: var(--grad-soft); border: 1px solid var(--card-border); border-radius: 22px; padding: 30px; }

/* ============================================================
   SEO CONTENT ROWS (alternating text + visual)
   ============================================================ */
.seo-section .seo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.seo-section .seo-row + .seo-row { margin-top: 84px; }
.seo-row.reverse .seo-visual { order: -1; }
.seo-ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; background: var(--grad); color: #fff; box-shadow: 0 12px 26px -10px rgba(47,107,255,.6); margin-bottom: 14px; }
.seo-ic svg { width: 27px; height: 27px; }
.seo-row h2 { font-size: clamp(26px, 3.3vw, 36px); letter-spacing: -.02em; line-height: 1.15; margin: 12px 0 16px; }
.seo-row p { color: var(--text-soft); margin-bottom: 14px; }
.seo-row p strong { color: var(--text); }
.seo-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--brand-deep); margin-top: 6px; }
.seo-link svg { width: 18px; height: 18px; transition: transform .18s; }
.seo-link:hover svg { transform: translateX(4px); }

/* flow card */
.flow-card { background: #fff; border: 1px solid var(--card-border); border-radius: 22px; padding: 24px; box-shadow: var(--shadow); display: grid; gap: 10px; }
.flow-node { display: flex; align-items: center; gap: 14px; padding: 15px 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-2); }
.flow-node.accent { background: var(--grad-soft); border-color: #bcd5ff; }
.flow-node .fn-ic { flex: none; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: #fff; border: 1px solid #dcebff; color: var(--brand); }
.flow-node.accent .fn-ic { background: var(--grad); color: #fff; border-color: transparent; }
.flow-node .fn-ic svg { width: 21px; height: 21px; }
.flow-node b { display: block; font-size: 15px; color: var(--text); }
.flow-node span { font-size: 12.5px; color: var(--text-mut); }
.flow-arrow { display: grid; place-items: center; color: var(--brand); }
.flow-arrow svg { width: 22px; height: 22px; }

/* metric card */
.metric-card { background: #fff; border: 1px solid var(--card-border); border-radius: 22px; padding: 28px; box-shadow: var(--shadow); }
.mc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.mc-head b { font-size: 17px; }
.mc-live { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--good); }
.mc-live i { width: 8px; height: 8px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 4px rgba(22,163,74,.15); }
.mc-row { margin-bottom: 18px; }
.mc-row .mc-top { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-soft); margin-bottom: 8px; }
.mc-row .mc-top b { color: var(--text); font-weight: 700; }
.bar { height: 8px; border-radius: 999px; background: #eaf0fa; overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: 999px; background: var(--grad); }

/* gauge */
.gauge-wrap { display: grid; place-items: center; }
.gauge { position: relative; width: 240px; height: 240px; }
.gauge svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.gauge .g-num { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.gauge .g-num b { font-size: 42px; letter-spacing: -.02em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.gauge .g-num span { display: block; font-size: 13px; color: var(--text-mut); margin-top: 4px; max-width: 150px; }

/* checklist */
.seo-checks { display: grid; gap: 12px; margin-top: 4px; }
.seo-check { display: flex; align-items: flex-start; gap: 13px; background: #fff; border: 1px solid var(--card-border); border-radius: 14px; padding: 15px 18px; box-shadow: var(--shadow-sm); color: var(--text-soft); font-size: 14.5px; }
.seo-check .ck { flex: none; width: 24px; height: 24px; border-radius: 8px; display: grid; place-items: center; background: #e3f6ec; color: var(--good); border: 1px solid #c4ebcf; margin-top: 1px; }
.seo-check .ck svg { width: 14px; height: 14px; }

/* keyword pills */
.kw-pills { display: flex; flex-wrap: wrap; gap: 11px; justify-content: center; max-width: 900px; margin: 0 auto; }
.kw-pill { padding: 11px 18px; border: 1px solid var(--card-border); border-radius: 999px; background: #fff; color: var(--text-soft); font-size: 14px; font-weight: 600; box-shadow: var(--shadow-sm); transition: transform .15s, border-color .15s, color .15s; }
.kw-pill:hover { border-color: #bcd5ff; color: var(--brand-deep); transform: translateY(-2px); }

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.reviews-viewport { position: relative; margin-top: 8px; }
.reviews-track {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 14px max(7.5%, 22px) 26px;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  scroll-snap-align: start; flex: 0 0 372px; max-width: 372px;
  background: #fff; border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.rc-top { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.rc-avatar { flex: none; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 15px; font-family: var(--font-alt); }
.rc-avatar.grad-0 { background: linear-gradient(135deg, #2f6bff, #38bdf8); }
.rc-avatar.grad-1 { background: linear-gradient(135deg, #6366f1, #2f6bff); }
.rc-avatar.grad-2 { background: linear-gradient(135deg, #0ea5e9, #22d3ee); }
.rc-avatar.grad-3 { background: linear-gradient(135deg, #3b82f6, #6366f1); }
.rc-avatar.grad-4 { background: linear-gradient(135deg, #2563eb, #38bdf8); }
.rc-photo { flex: none; width: 46px; height: 46px; border-radius: 13px; object-fit: cover; border: 2px solid #fff; box-shadow: 0 2px 8px rgba(15,31,61,.18); background: #eef3fb; }
.rc-id { flex: 1; min-width: 0; }
.rc-id b { display: block; font-size: 15.5px; color: var(--text); line-height: 1.25; }
.rc-id span { display: block; font-size: 12.5px; color: var(--text-mut); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rc-verified { flex: none; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: #e9faf0; color: #16a34a; }
.rc-verified svg { width: 13px; height: 13px; }
.rc-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.rc-stars svg { width: 17px; height: 17px; }
.rc-stars svg.on { color: #f5a623; }
.rc-stars svg.off { color: #e2e8f3; }
.rc-text { color: var(--text-soft); font-size: 14.5px; line-height: 1.6; margin-bottom: 16px; }
.rc-date { margin-top: auto; color: var(--text-mut); font-size: 12.5px; font-family: var(--font-alt); }

.rev-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  background: #fff; border: 1px solid var(--card-border); color: var(--brand-deep);
  box-shadow: var(--shadow); display: grid; place-items: center;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.rev-nav:hover { background: var(--grad); color: #fff; transform: translateY(-50%) scale(1.06); }
.rev-nav svg { width: 22px; height: 22px; }
.rev-prev { left: max(2.5%, 12px); }
.rev-next { right: max(2.5%, 12px); }

/* Reviews page grid */
.reviews-grid { columns: 3 320px; column-gap: 22px; }
.reviews-grid .review-card { display: inline-flex; width: 100%; max-width: none; flex: none; margin: 0 0 22px; break-inside: avoid; }
.reviews-summary { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; background: #fff; border: 1px solid var(--card-border); border-radius: var(--radius); padding: 22px 28px; box-shadow: var(--shadow-sm); margin-bottom: 34px; }
.reviews-summary .big { font-size: 44px; font-weight: 800; letter-spacing: -.02em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.reviews-summary .rs-stars svg { width: 20px; height: 20px; color: #f5a623; }
.reviews-summary .rs-meta { color: var(--text-soft); font-size: 14.5px; }
.reviews-summary .rs-meta b { color: var(--text); }

/* ============================================================
   MEGA MENU (Lokasyonlar)
   ============================================================ */
.menu > li.has-mega .mega {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 400px; padding: 12px;
  background: #fff; border: 1px solid var(--card-border); border-radius: 16px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s;
}
.menu > li.has-mega:hover .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mega-item { display: flex; align-items: center; gap: 11px; padding: 10px 11px; border-radius: 11px; transition: background .15s; }
.mega-item:hover { background: #f1f7ff; }
.mega-item img { width: 30px; height: 22px; object-fit: cover; border-radius: 4px; box-shadow: 0 1px 3px rgba(15,31,61,.18); flex: none; }
.mega-item .mi-ic { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid #dcebff; color: var(--brand); flex: none; }
.mega-item .mi-ic svg { width: 17px; height: 17px; }
.mega-item .mt { font-weight: 700; font-size: 14px; color: var(--text); }
.mega-more { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 12px; padding: 13px 14px; border-radius: 12px; background: var(--grad-soft); border: 1px solid #dcebff; color: var(--brand-deep); font-weight: 700; font-size: 14px; transition: background .15s; }
.mega-more svg { width: 17px; height: 17px; flex: none; transition: transform .18s; }
.mega-more:hover { background: #e3effe; }
.mega-more:hover svg { transform: translateX(4px); }

/* ============================================================
   LOCATIONS (listing page)
   ============================================================ */
.loc-top { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 8px; }
.loc-top a { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 20px 12px; background: #fff; border: 1px solid var(--card-border); border-radius: 16px; box-shadow: var(--shadow-sm); transition: transform .18s, border-color .18s, box-shadow .18s; text-align: center; }
.loc-top a:hover { transform: translateY(-4px); border-color: #bcd5ff; box-shadow: var(--shadow); }
.loc-top img { width: 56px; height: 40px; object-fit: cover; border-radius: 7px; box-shadow: 0 2px 6px rgba(15,31,61,.2); }
.loc-top b { font-size: 14.5px; }
.loc-top span { font-size: 12px; color: var(--text-mut); }

.loc-search { position: relative; max-width: 520px; margin: 0 auto 34px; }
.loc-search input { width: 100%; padding: 15px 18px 15px 46px; border: 1px solid var(--card-border); border-radius: 14px; font-family: inherit; font-size: 15px; background: #fff; box-shadow: var(--shadow-sm); color: var(--text); }
.loc-search input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(47,107,255,.15); }
.loc-search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--text-mut); }

.loc-continent { background: #fff; border: 1px solid var(--card-border); border-radius: 18px; box-shadow: var(--shadow-sm); margin-bottom: 18px; overflow: hidden; }
.loc-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 22px 26px; background: none; border: 0; cursor: pointer; font-family: inherit; text-align: left; }
.loc-head b { font-size: 19px; color: var(--text); letter-spacing: -.01em; }
.loc-head .loc-count { font-size: 13px; color: var(--text-mut); font-weight: 600; margin-left: 10px; }
.loc-arrow { width: 30px; height: 30px; flex: none; display: grid; place-items: center; border-radius: 9px; background: #eef5ff; color: var(--brand-deep); transition: transform .3s, background .15s; }
.loc-arrow svg { width: 18px; height: 18px; }
.loc-continent.open .loc-arrow { transform: rotate(180deg); }
.loc-head:hover .loc-arrow { background: #e0ecff; }

.loc-grid { display: flex; flex-wrap: wrap; gap: 9px; padding: 0 26px 8px; max-height: 124px; overflow: hidden; transition: max-height .45s ease; position: relative; }
.loc-continent.open .loc-grid { max-height: 3000px; }
.loc-grid::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 46px; background: linear-gradient(transparent, #fff); pointer-events: none; transition: opacity .3s; }
.loc-continent.open .loc-grid::after { opacity: 0; }
.loc-grid-pad { width: 100%; height: 18px; }

.loc-chip { display: inline-flex; align-items: center; gap: 9px; padding: 8px 13px 8px 9px; border: 1px solid var(--card-border); border-radius: 999px; background: var(--surface-2); font-size: 13.5px; font-weight: 600; color: var(--text-soft); transition: border-color .15s, color .15s, background .15s, transform .15s; }
.loc-chip:hover { border-color: #bcd5ff; color: var(--brand-deep); background: #fff; transform: translateY(-1px); }
.loc-chip img { width: 24px; height: 17px; object-fit: cover; border-radius: 3px; box-shadow: 0 1px 2px rgba(15,31,61,.18); flex: none; }
.loc-empty { padding: 14px 26px 22px; color: var(--text-mut); font-size: 14px; }

/* country page — e-commerce / social chips inside panel */
.cb-panel h3:first-child { margin-top: 0; }
.ecom-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.ecom-chip { padding: 8px 13px; background: #fff; border: 1px solid var(--card-border); border-radius: 10px; font-weight: 700; font-size: 13px; color: var(--text-soft); box-shadow: var(--shadow-sm); }

/* country reviews — distinct quote-style cards */
.creview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 20px; }
.creview { position: relative; background: #fff; border: 1px solid var(--card-border); border-radius: 18px; padding: 26px 24px; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s; }
.creview:hover { transform: translateY(-4px); border-color: #c3dbff; box-shadow: var(--shadow); }
.creview::before { content: "\201C"; position: absolute; top: 4px; right: 22px; font-family: Georgia, "Times New Roman", serif; font-size: 82px; line-height: 1; color: #eaf1fb; pointer-events: none; }
.creview .rc-stars { margin-bottom: 12px; position: relative; }
.creview .cr-text { color: var(--text-soft); font-size: 14.5px; line-height: 1.62; position: relative; }
.creview .cr-foot { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.creview .cr-id b { display: block; font-size: 14.5px; color: var(--text); line-height: 1.25; }
.creview .cr-id span { font-size: 12.5px; color: var(--text-mut); }

/* country reviews v2 — sidebar + real-photo cards (DeHost style) */
.creviews2-grid { display: grid; grid-template-columns: 340px 1fr; gap: 46px; align-items: start; }
.cr2-side { position: sticky; top: calc(var(--header-h) + 24px); }
.cr2-side .cr2-title { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.12; letter-spacing: -.02em; margin: 14px 0 12px; }
.cr2-side .cr2-lead { color: var(--text-soft); font-size: 15.5px; }
.cr2-google { margin-top: 26px; background: #fff; border: 1px solid var(--card-border); border-radius: 18px; padding: 22px 24px; box-shadow: var(--shadow-sm); }
.cr2-google .g-top { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--text); font-size: 15px; }
.cr2-google .g-top img { height: 20px; width: auto; }
.cr2-google .g-score { font-size: 42px; font-weight: 800; letter-spacing: -.02em; margin: 14px 0 6px; color: var(--text); }
.cr2-google .g-score span { font-size: 18px; color: var(--text-mut); font-weight: 600; margin-left: 5px; }
.cr2-google .g-stars { display: flex; gap: 3px; }
.cr2-google .g-stars svg { width: 21px; height: 21px; color: #f5a623; }
.cr2-google .g-sub { color: var(--text-mut); font-size: 13px; margin-top: 9px; }

.cr2-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cr2-cards .creview2:first-child { grid-column: 1 / -1; }
.creview2 { position: relative; background: #fff; border: 1px solid var(--card-border); border-radius: 18px; padding: 26px; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s; }
.creview2:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #c3dbff; }
.creview2::after { content: "\201D"; position: absolute; right: 22px; bottom: -16px; font-family: Georgia, "Times New Roman", serif; font-size: 130px; line-height: 1; color: #eef3fb; pointer-events: none; }
.cr2-head { display: flex; align-items: center; gap: 13px; margin-bottom: 15px; position: relative; }
.cr2-av { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: none; border: 2px solid #fff; box-shadow: 0 2px 9px rgba(15,31,61,.2); background: #eef3fb; }
.cr2-head b { display: block; font-size: 15px; color: var(--text); line-height: 1.25; }
.cr2-head span { font-size: 12.5px; color: var(--text-mut); }
.creview2 .cr2-text { color: var(--text-soft); font-size: 14.5px; line-height: 1.62; position: relative; margin-bottom: 18px; }
.creview2 .rc-stars { position: relative; display: flex; gap: 2px; }
.creview2 .rc-stars svg { width: 17px; height: 17px; }

@media (max-width: 960px) {
  .creviews2-grid { grid-template-columns: 1fr; gap: 30px; }
  .cr2-side { position: static; }
  .cr2-cards { grid-template-columns: 1fr; }
  .cr2-cards .creview2:first-child { grid-column: auto; }
}

/* country page hero — text left, big flag right */
.loc-phero .phero-grid { align-items: center; }
.loc-flag-card { display: flex; justify-content: center; align-items: center; }
.loc-big-flag { width: 100%; max-width: 420px; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 22px; box-shadow: 0 34px 64px -26px rgba(15,31,61,.55); border: 1px solid var(--card-border); }
.loc-phero .breadcrumb { margin-bottom: 14px; }
.loc-phero h1 { margin: 14px 0 14px; }

@media (max-width: 1024px) { .loc-top { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) {
  .loc-top { grid-template-columns: repeat(2, 1fr); }
  .loc-hero { flex-direction: column; align-items: flex-start; gap: 16px; }
  .menu > li.has-mega .mega { width: 320px; }
}

/* ============================================================
   TOOLS (interactive widgets on Araçlar sub-pages)
   ============================================================ */
.tool-app { max-width: 760px; margin: 0 auto; }
.tool-box { background: #fff; border: 1px solid var(--card-border); border-radius: 22px; padding: 32px; box-shadow: var(--shadow); }
.tool-box .tb-head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 6px; }
.tool-box .tb-ic { flex: none; width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; background: var(--grad); color: #fff; box-shadow: 0 12px 26px -10px rgba(47,107,255,.6); }
.tool-box .tb-ic svg { width: 26px; height: 26px; }
.tool-box .tb-title { font-size: 22px; letter-spacing: -.01em; }
.tool-box .tb-desc { color: var(--text-soft); font-size: 14.5px; margin-top: 3px; }

.tool-controls { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 6px; }
.tool-input { flex: 1; min-width: 200px; padding: 13px 16px; border: 1px solid var(--card-border); border-radius: 12px; font-family: inherit; font-size: 15px; background: var(--surface-2); color: var(--text); transition: border-color .15s, box-shadow .15s; }
.tool-input::placeholder { color: var(--text-mut); }
.tool-input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(47,107,255,.15); background: #fff; }
.tool-select { cursor: pointer; }
.tool-run { flex: 0 0 auto; }

.tool-result { margin-top: 16px; }
.tool-result:empty { display: none; }
.tool-kv { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.tool-kv:last-child { border-bottom: 0; }
.tool-kv .k { color: var(--text-mut); flex: none; }
.tool-kv .v { font-weight: 700; color: var(--text); text-align: right; word-break: break-word; }
.tool-big { font-size: clamp(34px, 6vw, 46px); font-weight: 800; letter-spacing: -.03em; margin: 6px 0 16px; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.tool-big .unit { font-size: 20px; -webkit-text-fill-color: var(--text-mut); color: var(--text-mut); }
.tool-note { font-size: 13px; color: var(--text-mut); margin-top: 16px; line-height: 1.55; }
.tool-note a { color: var(--brand-deep); font-weight: 600; }
.tool-ua { background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; font-family: var(--font-alt); font-size: 13.5px; color: var(--text); word-break: break-all; margin-bottom: 8px; }

.tool-records { display: grid; gap: 10px; margin-top: 4px; }
.tool-rec { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; font-size: 14px; }
.tool-rec .rec-type { flex: none; font-weight: 800; color: var(--brand-deep); background: #e7f0ff; border-radius: 7px; padding: 3px 9px; font-size: 12px; }
.tool-rec .rec-data { flex: 1; font-weight: 600; color: var(--text); word-break: break-all; font-family: var(--font-alt); }
.tool-rec .rec-ttl { flex: none; color: var(--text-mut); font-size: 12px; }

.tool-verdict { padding: 13px 16px; border-radius: 12px; font-weight: 700; font-size: 14px; margin-bottom: 16px; }
.tool-verdict.ok { background: #e9faf0; color: #15803d; border: 1px solid #bbf0cd; }
.tool-verdict.warn { background: #fff3e6; color: #c2620a; border: 1px solid #ffd9a8; }

.tool-loading { display: flex; align-items: center; gap: 12px; color: var(--text-soft); font-size: 14.5px; padding: 8px 0; }
.tool-spin { width: 20px; height: 20px; border: 2.5px solid #dbe6f7; border-top-color: var(--brand); border-radius: 50%; animation: toolspin .7s linear infinite; flex: none; }
@keyframes toolspin { to { transform: rotate(360deg); } }
.tool-error { background: #fef2f2; color: #dc2626; border: 1px solid #fbd5d5; border-radius: 12px; padding: 14px 16px; font-size: 14px; font-weight: 500; }

/* proxy checker page hero — checker left (wider), text right (centered) */
.proxy-hero .phero-grid { grid-template-columns: 1.35fr 0.8fr; gap: 44px; align-items: center; margin-top: 16px; }
.proxy-hero h1 { font-size: clamp(26px, 2.8vw, 36px); margin: 12px 0 14px; }
.proxy-hero .px-text .seo-checks { margin-top: 20px; }
@media (max-width: 1024px) {
  .proxy-hero .phero-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* bulk proxy checker */
.tool-app.tool-wide { max-width: 980px; }
.px-cfg { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 12px; }
.px-list { width: 100%; min-height: 160px; resize: vertical; font-family: var(--font-alt); font-size: 13px; line-height: 1.6; }
.px-counts { font-size: 13.5px; color: var(--text-soft); margin-left: auto; align-self: center; }
.px-tablewrap { border: 1px solid var(--card-border); border-radius: 14px; overflow: hidden; }
.px-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.px-table th { text-align: left; padding: 12px 14px; background: var(--surface-2); color: var(--text-mut); font-weight: 700; font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; border-bottom: 1px solid var(--line); }
.px-table td { padding: 11px 14px; border-bottom: 1px solid var(--line); }
.px-table tr:last-child td { border-bottom: 0; }
.px-table .px-p { font-family: var(--font-alt); color: var(--text); word-break: break-all; }
.px-table .px-ms, .px-table .px-ip { font-family: var(--font-alt); color: var(--text-soft); white-space: nowrap; }
.px-ok { color: var(--good); font-weight: 800; }
.px-bad { color: #dc2626; font-weight: 800; }
.px-pending { color: var(--text-mut); }
.px-deadrow { background: #fdf3f3; }

.tool-disabled { text-align: center; padding: 24px 10px 8px; }
.tool-disabled .td-ic { display: inline-grid; place-items: center; width: 62px; height: 62px; border-radius: 18px; background: #f1f4f9; color: var(--text-mut); border: 1px solid var(--line); margin-bottom: 14px; }
.tool-disabled .td-ic svg { width: 30px; height: 30px; }
.tool-disabled h3 { font-size: 20px; margin-bottom: 8px; }
.tool-disabled p { color: var(--text-soft); font-size: 14.5px; max-width: 420px; margin: 0 auto 18px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); padding: 60px 0 30px; margin-top: 40px; background: #fff; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.foot-brand p { color: var(--text-mut); font-size: 14px; margin: 16px 0; max-width: 320px; }
.foot-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .08em; color: var(--text); margin-bottom: 16px; }
.foot-col a { display: block; width: fit-content; color: var(--text-mut); font-size: 14px; padding: 6px 0; transition: color .15s; }
.foot-brand .brand { width: fit-content; }
.foot-col a:hover { color: var(--brand); }
.foot-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--text-mut); font-size: 13.5px; }
.foot-pay { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.foot-pay span { padding: 5px 12px; border: 1px solid var(--card-border); border-radius: 8px; font-size: 12px; font-weight: 600; color: var(--text-soft); background: #f7fafe; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .phero-grid, .home-hero .phero-grid { grid-template-columns: 1fr; gap: 34px; }
  .summary-card { position: relative; top: 0; max-width: 480px; }
  .phero-visual { position: static; max-width: 460px; margin-inline: auto; }
  .cards-4 { grid-template-columns: repeat(2,1fr); }
  .stats, .steps { grid-template-columns: repeat(2,1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .menu, .nav-cta .btn { display: none; }
  .burger { display: grid; }
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .post { grid-template-columns: 1fr; }
  .post .thumb { height: 150px; }
  .content-block { grid-template-columns: 1fr; }
  .reviews-grid { columns: 1; }
  .rev-nav { display: none; }
  .seo-section .seo-row { grid-template-columns: 1fr; gap: 30px; }
  .seo-section .seo-row + .seo-row { margin-top: 54px; }
  .seo-row.reverse .seo-visual { order: 0; }
  section { padding: 60px 0; }
}
@media (max-width: 560px) {
  .stats, .steps { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 34px 22px; }
}

/* ============ Amaçlar mega menü ============ */
.menu > li.has-mega .mega.mega-amac { width: min(940px, 95vw); max-height: 76vh; overflow-y: auto; padding: 18px 20px; }
.amac-cols { column-count: 4; column-gap: 24px; }
.amac-col { break-inside: avoid; -webkit-column-break-inside: avoid; margin-bottom: 16px; display: inline-block; width: 100%; vertical-align: top; }
.amac-col h4 { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-deep); margin: 0 0 6px; padding: 0 8px; }
.amac-col a { display: block; padding: 6px 8px; border-radius: 8px; font-size: 13.5px; font-weight: 600; color: var(--text-soft); line-height: 1.2; transition: background .15s, color .15s; }
.amac-col a:hover { background: #f1f7ff; color: var(--brand-deep); }
@media (max-width: 1100px) { .amac-cols { column-count: 3; } }

/* ============ Amaçlar listeleme sayfası ============ */
.amac-listing { display: grid; gap: 30px; }
.amac-block h3 { font-size: 19px; font-weight: 800; margin: 0 0 14px; display: flex; align-items: center; gap: 10px; }
.amac-block h3 .cnt { font-size: 12px; font-weight: 700; color: var(--brand-deep); background: var(--grad-soft); border: 1px solid #dcebff; padding: 3px 10px; border-radius: 20px; }
.amac-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.amac-chips a { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: 11px; background: #fff; border: 1px solid var(--card-border); font-weight: 700; font-size: 14px; color: var(--text); transition: border-color .15s, transform .15s, box-shadow .15s, color .15s; }
.amac-chips a:hover { border-color: var(--brand); color: var(--brand-deep); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ============ Kurumsal iletişim formu ============ */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 26px; align-items: stretch; width: min(1000px, 94vw); margin: 26px auto 0; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.ci-card { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border: 1px solid var(--card-border); border-radius: 16px; background: #fff; transition: border-color .15s, transform .15s, box-shadow .15s; text-align: left; }
a.ci-card:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow); }
.ci-ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; flex: none; background: var(--grad-soft); border: 1px solid #dcebff; color: var(--brand); }
.ci-ic svg { width: 22px; height: 22px; }
.ci-card.ci-wa .ci-ic { background: #e7faf0; border-color: #c4f0d8; color: #1db954; }
.ci-body h4 { font-size: 15px; font-weight: 800; margin: 0 0 3px; color: var(--text); }
.ci-body p { font-size: 14px; margin: 0; color: var(--text-soft); }
.ci-link { display: inline-block; margin-top: 7px; font-size: 13px; font-weight: 700; color: var(--brand-deep); }
.ci-muted { display: inline-block; margin-top: 7px; font-size: 12.5px; color: var(--text-mut); }

.contact-form { padding: 24px; border: 1px solid var(--card-border); border-radius: 18px; background: #fff; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 15px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.cf-field { display: flex; flex-direction: column; gap: 7px; }
.cf-field label { font-size: 13px; font-weight: 700; color: var(--text-soft); }
.cf-field input, .cf-field select, .cf-field textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 11px; font: inherit; font-size: 14.5px; color: var(--text); background: #f8fbff; transition: border-color .15s, box-shadow .15s, background .15s; }
.cf-field input::placeholder, .cf-field textarea::placeholder { color: #9fb0c9; }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(47,107,255,.15); background: #fff; }
.cf-field textarea { min-height: 118px; resize: vertical; }
.btn-wa { background: #25d366; color: #fff; justify-content: center; box-shadow: 0 14px 30px -12px rgba(37,211,102,.6); }
.btn-wa svg { width: 19px; height: 19px; }
.btn-wa:hover { filter: brightness(1.05); transform: translateY(-2px); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } .cf-row { grid-template-columns: 1fr; } }

/* ============ Amaç sayfası — marka logosu rozeti ============ */
.sc-ic .sc-logo { width: 26px; height: 26px; display: block; }
.sc-ic .sc-mono { font-weight: 800; font-size: 22px; line-height: 1; color: #fff; font-family: 'Plus Jakarta Sans','Segoe UI',Arial,sans-serif; }

/* ============ Marka logosu (header & footer) ============ */
.brand .brand-logo { height: 34px; width: auto; display: block; }
.site-footer .brand .brand-logo { height: 32px; }
@media (max-width: 480px) { .brand .brand-logo { height: 29px; } }

/* ============ Blog ============ */
a.post { text-decoration: none; color: inherit; }
.post h3 { color: var(--text); }
.blog-list { display: grid; gap: 16px; max-width: 940px; }
.blog-visual { border-radius: 22px; background: var(--grad); display: grid; place-items: center; min-height: 300px; box-shadow: var(--shadow-glow); color: #fff; position: relative; overflow: hidden; }
.blog-visual::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120px 120px at 80% 15%, rgba(255,255,255,.18), transparent 70%); }
.blog-visual svg { width: 150px; height: 150px; opacity: .96; position: relative; }
.blog-prose { max-width: 820px; margin: 0 auto; }
.blog-prose .blog-intro { font-size: 18px; line-height: 1.75; color: var(--text-soft); font-weight: 500; }
.blog-prose h2 { font-size: 23px; margin: 30px 0 12px; letter-spacing: -.01em; }
.blog-prose p { font-size: 15.5px; line-height: 1.8; color: var(--text-soft); margin: 0 0 14px; }
.blog-prose a { color: var(--brand-deep); font-weight: 700; }
@media (max-width: 900px) { .blog-visual { min-height: 200px; } .blog-visual svg { width: 110px; height: 110px; } }

/* ============ Amaç sayfası — marka logosu + animasyonlu görsel ============ */
.amac-visual { display: flex; flex-direction: column; gap: 18px; align-items: center; }
.amac-brand-card { display: flex; align-items: center; gap: 14px; width: 100%; background: #fff; border: 1px solid var(--card-border); border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-sm); }
.amac-logo-badge { width: 52px; height: 52px; border-radius: 14px; flex: none; display: grid; place-items: center; background: var(--grad); box-shadow: 0 10px 24px -10px rgba(47,107,255,.7); }
.amac-logo-badge .sc-logo { width: 28px; height: 28px; display: block; }
.amac-logo-badge .sc-mono { font-weight: 800; font-size: 24px; color: #fff; font-family: 'Plus Jakarta Sans','Segoe UI',Arial,sans-serif; }
.amac-brand-txt b { display: block; font-size: 18px; font-weight: 800; color: var(--text); letter-spacing: -.01em; }
.amac-brand-txt span { font-size: 13px; color: var(--text-mut); }
.amac-illu { width: 100%; max-width: 560px; height: auto; display: block; margin-inline: auto; }

/* Amaç görsel — metin kaldırıldı, logo kompakt chip */
.amac-brand-card { width: auto; justify-content: center; padding: 16px; }
.amac-brand-card .amac-logo-badge { width: 60px; height: 60px; border-radius: 16px; }
.amac-brand-card .amac-logo-badge .sc-logo { width: 32px; height: 32px; }
.amac-brand-card .amac-logo-badge .sc-mono { font-size: 28px; }

/* ============ Blog listeleme — kart ızgarası ============ */
.blog-cat-title { font-size: 22px; font-weight: 800; letter-spacing: -.01em; margin: 44px 0 18px; display: flex; align-items: center; gap: 14px; color: var(--text); }
.blog-cat-title::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--card-border); border-radius: 18px; overflow: hidden; text-decoration: none; color: inherit; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #c3dbff; }
.bc-thumb { height: 132px; background: var(--grad-soft); display: grid; place-items: center; color: var(--brand); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.bc-thumb::after { content: ""; position: absolute; inset: 0; background: radial-gradient(90px 90px at 78% 22%, rgba(47,107,255,.10), transparent 70%); }
.bc-thumb svg { width: 44px; height: 44px; opacity: .85; position: relative; }
.bc-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bc-cat { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-deep); }
.blog-card h3 { font-size: 16.5px; line-height: 1.35; margin: 0; color: var(--text); }
.bc-body p { font-size: 13.5px; line-height: 1.6; color: var(--text-soft); margin: 0; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.bc-meta { font-size: 12px; color: var(--text-mut); margin-top: 4px; }
@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============ Marka: resi-mark görseli + yazı ============ */
.brand .brand-mark { height: 42px; width: auto; display: block; flex: none; }
.brand .brand-word { font-family: 'Plus Jakarta Sans','Segoe UI',Arial,sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -.025em; color: #0f1f3d; line-height: 1; }
.brand .brand-word b { font-weight: 800; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--brand); }
.brand .brand-word i { font-style: normal; color: #38bdf8; }
.site-footer .brand .brand-mark { height: 38px; }
@media (max-width: 480px) { .brand .brand-mark { height: 36px; } .brand .brand-word { font-size: 17px; } }

/* ============ Blog içi CTA + avantaj listesi ============ */
.blog-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin: 28px 0; padding: 22px 24px; border-radius: 16px; background: var(--grad-soft); border: 1px solid #dcebff; }
.blog-cta b { display: block; font-size: 17px; color: var(--text); }
.blog-cta span { font-size: 13.5px; color: var(--text-soft); }
.blog-cta .btn { white-space: nowrap; }
.blog-prose ul.blog-ul { list-style: none; padding: 0; margin: 8px 0 16px; display: grid; gap: 11px; }
.blog-prose ul.blog-ul li { position: relative; padding-left: 30px; font-size: 15px; color: var(--text-soft); line-height: 1.6; }
.blog-prose ul.blog-ul li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 6px; display: grid; place-items: center; font-size: 12px; font-weight: 800; color: #fff; background: var(--grad); }

/* ============ Yapay Zeka Sohbet Asistanı ============ */
.chat-launch { position: fixed; right: 22px; bottom: 22px; z-index: 9998; width: 60px; height: 60px; border: none; border-radius: 50%; background: var(--grad); color: #fff; cursor: pointer; display: grid; place-items: center; box-shadow: 0 16px 36px -10px rgba(47,107,255,.6); transition: transform .2s, box-shadow .2s; animation: chatPulse 2.6s ease-in-out infinite; }
.chat-launch:hover { transform: translateY(-3px) scale(1.05); }
.chat-launch svg { width: 27px; height: 27px; }
.chat-launch.hide { transform: scale(0); opacity: 0; pointer-events: none; }
@keyframes chatPulse { 0%,100% { box-shadow: 0 16px 36px -10px rgba(47,107,255,.6); } 50% { box-shadow: 0 16px 44px -8px rgba(47,107,255,.85); } }

.chat-panel { position: fixed; right: 22px; bottom: 22px; z-index: 9999; width: 372px; max-width: calc(100vw - 32px); height: 560px; max-height: calc(100vh - 40px); background: #fff; border: 1px solid var(--card-border); border-radius: 20px; box-shadow: 0 40px 90px -30px rgba(15,31,61,.55); display: flex; flex-direction: column; overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(24px) scale(.96); transform-origin: bottom right; transition: opacity .22s, transform .22s, visibility .22s; }
.chat-panel.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chat-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 16px; background: var(--grad); color: #fff; }
.ch-id { display: flex; align-items: center; gap: 11px; }
.ch-av { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.18); display: grid; place-items: center; font-weight: 800; font-size: 14px; letter-spacing: .04em; }
.ch-id b { display: block; font-size: 15px; font-weight: 800; line-height: 1.2; }
.ch-on { font-size: 12px; opacity: .9; }
.ch-close { background: rgba(255,255,255,.15); border: none; color: #fff; width: 30px; height: 30px; border-radius: 9px; cursor: pointer; display: grid; place-items: center; }
.ch-close svg { width: 16px; height: 16px; }
.ch-close:hover { background: rgba(255,255,255,.28); }
.chat-wa-bar { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 14px; background: #e7faf0; color: #128c4a; font-weight: 700; font-size: 13.5px; text-decoration: none; border-bottom: 1px solid #d4f0df; transition: background .15s; }
.chat-wa-bar:hover { background: #d8f6e6; }
.chat-wa-bar svg { width: 17px; height: 17px; }
.chat-msgs { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: #f6f9ff; }
.cm-msg { max-width: 84%; padding: 11px 14px; border-radius: 15px; font-size: 14px; line-height: 1.55; }
.cm-bot { align-self: flex-start; background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 5px; color: var(--text); }
.cm-user { align-self: flex-end; background: var(--grad); color: #fff; border-bottom-right-radius: 5px; }
.cm-bot a { color: var(--brand-deep); font-weight: 700; }
.cm-list { list-style: none; padding: 0; margin: 8px 0 2px; display: grid; gap: 8px; }
.cm-list li { font-size: 13px; line-height: 1.5; background: #f1f7ff; border: 1px solid #e0ecff; border-radius: 10px; padding: 8px 11px; }
.cm-list li span { color: var(--text-mut); font-size: 12px; }
.cm-wa { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; padding: 10px 14px; border-radius: 11px; background: #25d366; color: #fff !important; font-weight: 700; font-size: 13px; text-decoration: none; }
.cm-wa svg { width: 16px; height: 16px; }
.cm-typing { display: flex; gap: 4px; padding: 14px; }
.cm-typing span { width: 7px; height: 7px; border-radius: 50%; background: #b9c6dd; animation: cmDot 1.2s infinite; }
.cm-typing span:nth-child(2) { animation-delay: .2s; } .cm-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes cmDot { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.chat-chips { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 14px 6px; background: #f6f9ff; }
.cm-chip { border: 1px solid #cfe0ff; background: #fff; color: var(--brand-deep); font-weight: 700; font-size: 12.5px; padding: 7px 12px; border-radius: 20px; cursor: pointer; transition: background .15s, border-color .15s; }
.cm-chip:hover { background: var(--grad-soft); border-color: var(--brand); }
.chat-input { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--line); background: #fff; }
.chat-input input { flex: 1; border: 1.5px solid var(--line); border-radius: 11px; padding: 11px 13px; font: inherit; font-size: 14px; background: #f8fbff; }
.chat-input input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(47,107,255,.14); background: #fff; }
.chat-input button { flex: none; width: 44px; border: none; border-radius: 11px; background: var(--grad); color: #fff; cursor: pointer; display: grid; place-items: center; }
.chat-input button svg { width: 19px; height: 19px; }
@media (max-width: 480px) { .chat-panel { right: 12px; bottom: 12px; height: calc(100vh - 90px); } .chat-launch { right: 16px; bottom: 16px; } }

/* ============ Proxy checker — metin üstte sabit, checker tam genişlik ============ */
.proxy-hero .px-text { max-width: 980px; margin: 8px 0 26px; }
.proxy-hero .seo-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.proxy-hero .tool-box.px-checker { width: 100%; }
/* sonuç tablosu sabit çerçeve içinde yatay kayar; içerik uzunluğu kutuyu büyütmez */
.px-tablewrap { overflow-x: auto; overflow-y: hidden; }
.px-table { min-width: 720px; }
.px-table .px-host, .px-table .px-asn { white-space: nowrap; }
@media (max-width: 640px) { .proxy-hero .seo-checks { grid-template-columns: 1fr; } }

/* Proxy checker — checker üstte, açıklama yazısı altta */
.proxy-hero .wrap { display: flex; flex-direction: column; }
.proxy-hero .breadcrumb { order: 0; }
.proxy-hero .tool-box.px-checker { order: 1; }
.proxy-hero .px-text { order: 2; margin: 30px 0 4px; }

/* Proxy checker — adım numarası rozeti */
.card .ic.px-step { font-weight: 800; font-size: 21px; color: var(--brand); font-family: var(--font-alt, inherit); }

/* ============================================================
   MOBİL OPTİMİZASYON — kapsamlı kalite + performans katmanı
   ============================================================ */
img, svg, video, object { max-width: 100%; }
img { height: auto; }
body { overflow-x: clip; }                 /* sticky'yi bozmadan yatay kaymayı keser */
* { -webkit-tap-highlight-color: rgba(47,107,255,.18); }
a, button, summary, .btn, .cm-chip, .kw-pill, .amac-chips a { -webkit-tap-highlight-color: rgba(47,107,255,.18); }

@media (max-width: 1024px) {
  .wrap { width: 88%; }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .wrap { width: 90%; }
  .phero { padding-top: 24px; }
  .phero h1 { font-size: clamp(25px, 7vw, 34px); margin: 12px 0 14px; }
  .section-head h2 { font-size: clamp(23px, 6.2vw, 32px); }
  .prose h2 { font-size: 23px; } .prose h3 { font-size: 18px; }
  .phero .lead, .section-head p { font-size: 15px; line-height: 1.6; }
  .page-banner h1 { font-size: clamp(25px, 7vw, 34px); }
  /* CTA butonları mobilde tam genişlik ve alt alta */
  .cta-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-actions .btn, .cta-actions .btn-lg { width: 100%; justify-content: center; }
  .tool-controls { flex-wrap: wrap; gap: 10px; }
  .tool-controls .btn { flex: 1 1 auto; justify-content: center; }
  .px-counts { width: 100%; }
  /* dokunma hedefleri */
  .btn { min-height: 46px; }
}
@media (max-width: 560px) {
  .wrap { width: 92%; }
  section { padding: 44px 0; }
  .tool-box { padding: 22px 16px; border-radius: 18px; }
  .card { padding: 20px; }
  .plan-card { padding: 22px; }
  .blog-prose h2 { font-size: 20px; }
  .blog-cta { flex-direction: column; align-items: stretch; text-align: center; padding: 20px; }
  .blog-cta .btn { justify-content: center; }
  .foot-grid { gap: 26px; }
  .chat-launch { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .chat-launch svg { width: 24px; height: 24px; }
}
@media (max-width: 380px) {
  .phero h1, .page-banner h1 { font-size: 23px; }
  .section-head h2 { font-size: 21px; }
  .plan-price b { font-size: 34px; }
}

/* Mobil menü — okunaklı ve dokunması kolay */
@media (max-width: 860px) {
  .mobile-panel { padding: 16px 16px 34px; }
  .mobile-panel > a, .mobile-panel .mgroup a { font-size: 15.5px; padding-top: 14px; padding-bottom: 14px; }
  .mobile-panel .mgroup > span { font-size: 12px; }
  .mobile-panel .btn { font-size: 16px; padding: 15px; min-height: 50px; }
  .px-table { font-size: 12.5px; }
  .px-table th, .px-table td { padding: 9px 11px; }
}

/* Blog görseli — sosyal/seo illüstrasyonu (gradyan panel yerine şeffaf) */
.blog-visual.blog-illu { background: transparent; box-shadow: none; border: 0; min-height: 0; padding: 0; }
.blog-visual.blog-illu::after { display: none; }
.blog-visual.blog-illu img { width: 100%; height: auto; display: block; }

/* 3 sütunlu fiyatlandırma (sınırsız residential) */
@media (min-width: 1101px) { .pricing-grid.cols-3 { grid-template-columns: repeat(3, 1fr); width: min(1060px, 92vw); } }

/* Mobil proxy — Türkiye/Global geçişli fiyatlandırma */
.pricing-toggle { display: flex; width: max-content; margin: 22px auto 6px; gap: 4px; padding: 5px; background: #eef4ff; border: 1px solid #dcebff; border-radius: 14px; }
.pricing-toggle .pt-btn { border: none; background: transparent; font: inherit; font-weight: 700; font-size: 14.5px; color: var(--text-soft); padding: 10px 26px; border-radius: 10px; cursor: pointer; transition: background .15s, color .15s, box-shadow .15s; }
.pricing-toggle .pt-btn.active { background: #fff; color: var(--brand-deep); box-shadow: var(--shadow-sm); }
.pricing-toggle .pt-btn:hover:not(.active) { color: var(--brand-deep); }
.region-panel[hidden] { display: none; }

/* Tek operatör logosu — daha büyük */
.plan-logos.single { justify-content: center; }
.plan-logos.single img { height: 44px; max-width: 72%; }

/* ============ Dil seçici ============ */
.lang-switch { position: relative; }
.lang-cur { display: inline-flex; align-items: center; gap: 6px; padding: 9px 12px; border: 1px solid var(--card-border); background: #fff; border-radius: 11px; font: inherit; font-weight: 700; font-size: 13.5px; color: var(--text); cursor: pointer; box-shadow: var(--shadow-sm); }
.lang-cur svg { width: 16px; height: 16px; color: var(--brand); }
.lang-drop { position: absolute; top: calc(100% + 8px); right: 0; min-width: 150px; background: #fff; border: 1px solid var(--card-border); border-radius: 13px; box-shadow: var(--shadow); padding: 7px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .18s, transform .18s; z-index: 60; }
.lang-drop::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 12px; }
.lang-switch:hover .lang-drop, .lang-switch:focus-within .lang-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-drop a { display: block; padding: 9px 12px; border-radius: 9px; font-weight: 600; font-size: 14px; color: var(--text-soft); }
.lang-drop a:hover { background: #f1f7ff; color: var(--brand-deep); }
.lang-drop a.on { color: var(--brand-deep); background: var(--grad-soft); }
@media (max-width: 860px) { .lang-switch { display: none; } }

/* Mobile language row (inside mobile panel) */
.mlang { display: none; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line, #e6eefb); }
.mlang > span { display: block; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted, #6b7a99); margin-bottom: 10px; }
.mlang-row { display: flex; flex-wrap: wrap; gap: 8px; }
.mlang-row a { display: inline-flex; align-items: center; justify-content: center; min-width: 46px; padding: 8px 12px; border: 1px solid var(--line, #e6eefb); border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--ink, #16213e); background: #fff; text-decoration: none; }
.mlang-row a.on { color: #fff; background: var(--brand, #2f6bff); border-color: var(--brand, #2f6bff); }
@media (max-width: 860px) { .mlang { display: block; } }
