/* ================================================================
   KnightOnlineProxy v3 — Dark Navy, Plus Jakarta Sans
   Inspired by: clean hosting company aesthetic
   ================================================================ */

:root {
  /* Colors */
  --bg:          #03071e;
  --bg-2:        #060c28;
  --bg-3:        #091133;
  --bg-card:     #07102a;
  --bg-card-2:   #0a1535;
  --border:      rgba(99, 160, 255, 0.1);
  --border-md:   rgba(99, 160, 255, 0.18);
  --border-lg:   rgba(99, 160, 255, 0.28);

  --text:        #e8efff;
  --text-2:      rgba(232, 239, 255, 0.7);
  --text-3:      rgba(232, 239, 255, 0.42);

  --blue:        #3b82f6;
  --blue-light:  #60a5fa;
  --blue-dark:   #1d4ed8;
  --blue-glow:   rgba(59, 130, 246, 0.35);
  --blue-soft:   rgba(59, 130, 246, 0.1);
  --blue-soft-2: rgba(59, 130, 246, 0.06);

  --cyan:        #22d3ee;
  --gold:        #f59e0b;
  --gold-soft:   rgba(245, 158, 11, 0.1);
  --green:       #10b981;
  --red:         #ef4444;

  /* Typography */
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Layout */
  --max: 1220px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(5rem, 9vw, 8rem);
  --r: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ── RESET ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--bg); color: var(--text); font-family: var(--font); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
::selection { background: var(--blue); color: #fff; }
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-light); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

.container { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ── LABEL ───────────────────────────────── */
.label {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem .85rem;
  background: var(--blue-soft);
  border: 1px solid var(--border-md);
  border-radius: 99px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-light);
  margin-bottom: 1.5rem;
}
.label__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 8px var(--blue-glow); animation: blink 2s infinite; flex-shrink: 0; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.35} }

/* ── SECTION HEAD ────────────────────────── */
.sh { display: flex; flex-direction: column; gap: .3rem; margin-bottom: 3rem; }
.sh__label { display: inline-flex; align-items: center; gap: .6rem; font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--blue); }
.sh__label::before { content: ''; width: 20px; height: 2px; background: var(--blue); border-radius: 2px; }
.sh h2 { font-size: clamp(1.85rem, 4vw, 2.75rem); font-weight: 800; letter-spacing: -.025em; line-height: 1.1; }
.sh h2 span { color: var(--blue-light); }
.sh p { color: var(--text-2); font-size: 1.05rem; max-width: 54ch; margin-top: .5rem; }

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .82rem 1.6rem;
  font-size: .92rem; font-weight: 700; letter-spacing: -.01em;
  border-radius: var(--r); border: 1.5px solid transparent;
  transition: all .22s var(--ease); white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 20px var(--blue-glow);
}
.btn-primary:hover { background: var(--blue-light); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 30px var(--blue-glow); }
.btn-outline { border-color: var(--border-md); color: var(--text); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue-light); }
.btn-full { width: 100%; }
.btn-gold { background: var(--gold); color: #111; box-shadow: 0 4px 20px rgba(245,158,11,.3); }
.btn-gold:hover { background: #fbbf24; color: #111; transform: translateY(-2px); }

/* ── NAV ─────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  background: rgba(3, 7, 30, 0.55);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.nav.scrolled { background: rgba(3, 7, 30, 0.94); border-bottom-color: var(--border); }
.nav__inner { max-width: var(--max); margin: 0 auto; padding: 1rem var(--pad); display: flex; align-items: center; gap: 1.5rem; }
.nav__logo { display: flex; align-items: center; gap: .65rem; font-weight: 800; font-size: 1rem; letter-spacing: -.02em; }
.nav__logo-icon { width: 30px; height: 30px; background: var(--blue); border-radius: 8px; display: grid; place-items: center; font-size: .85rem; color: #fff; box-shadow: 0 0 14px var(--blue-glow); flex-shrink: 0; }
.nav__links { margin-left: auto; display: flex; gap: 2rem; font-size: .88rem; font-weight: 600; color: var(--text-2); }
.nav__links a:hover { color: var(--text); }
.nav__actions { display: flex; align-items: center; gap: .75rem; }
.nav__cta { padding: .55rem 1.2rem; background: var(--blue); color: #fff; border-radius: var(--r); font-size: .84rem; font-weight: 700; box-shadow: 0 0 14px var(--blue-glow); transition: all .2s; }
.nav__cta:hover { background: var(--blue-light); color: #fff; }
.nav__burger { display: none; width: 30px; height: 24px; flex-direction: column; justify-content: space-between; }
.nav__burger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: all .2s; }

/* ── HERO ────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 0 5rem; overflow: hidden;
}
.hero__orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); }
.hero__orb--1 { width: 700px; height: 700px; background: rgba(59,130,246,.12); top: -200px; right: -150px; }
.hero__orb--2 { width: 400px; height: 400px; background: rgba(34,211,238,.07); bottom: -100px; left: -100px; }
.hero__grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(59,130,246,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(59,130,246,.045) 1px, transparent 1px); background-size: 50px 50px; mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black, transparent 75%); }
.hero__line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 0%, var(--blue) 40%, var(--cyan) 60%, transparent 100%); opacity: .25; }
.hero__inner { position: relative; z-index: 2; max-width: 820px; }

.hero__label { animation: up .7s var(--ease) both; }
.hero__title {
  font-size: clamp(2.5rem, 6.5vw, 5.2rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.04;
  margin-bottom: 1.5rem;
  animation: up .8s var(--ease) .08s both;
}
.hero__title .blue { color: var(--blue-light); }
.hero__title .white { color: #fff; }
.hero__desc {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--text-2); max-width: 58ch; line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: up .8s var(--ease) .16s both;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; animation: up .8s var(--ease) .22s both; }
.hero__pills { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 4rem; animation: up .8s var(--ease) .28s both; }
.pill {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .42rem 1rem;
  background: var(--bg-card-2); border: 1px solid var(--border);
  border-radius: 99px; font-size: .78rem; font-weight: 600; color: var(--text-2);
}
.pill__icon { color: var(--blue-light); font-size: .85rem; }

.hero__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--bg-card); overflow: hidden; animation: up .8s var(--ease) .34s both; max-width: 760px; }
.stat { padding: 1.5rem 1.75rem; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat__num { font-size: 2rem; font-weight: 800; letter-spacing: -.03em; color: #fff; line-height: 1; margin-bottom: .3rem; }
.stat__num span { font-size: 1rem; color: var(--blue-light); font-weight: 700; }
.stat__label { font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); }

@keyframes up { from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:none} }

/* ── TRUST BAR ───────────────────────────── */
.trust {
  padding: 2rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1.5rem 3rem; }
.trust__item { display: flex; align-items: center; gap: .6rem; font-size: .82rem; font-weight: 600; color: var(--text-2); }
.trust__item-icon { width: 28px; height: 28px; background: var(--blue-soft); border: 1px solid var(--border-md); border-radius: 8px; display: grid; place-items: center; font-size: .9rem; flex-shrink: 0; }

/* ── ABOUT ───────────────────────────────── */
.about { padding: var(--section) 0; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; margin-bottom: 4.5rem; }
.about__text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 1.25rem; }
.about__text h2 span { color: var(--blue-light); }
.about__text p { color: var(--text-2); line-height: 1.75; margin-bottom: 1rem; font-size: 1.02rem; }

.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.feat {
  padding: 1.5rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.feat:hover { border-color: var(--border-md); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.35); }
.feat__icon-wrap { width: 42px; height: 42px; border-radius: var(--r); background: var(--blue-soft); border: 1px solid var(--border-md); display: grid; place-items: center; font-size: 1.15rem; margin-bottom: 1rem; }
.feat h3 { font-size: .95rem; font-weight: 700; margin-bottom: .35rem; letter-spacing: -.01em; }
.feat p { font-size: .83rem; color: var(--text-2); line-height: 1.55; }

.seo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.seo-card { padding: 2rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); position: relative; overflow: hidden; }
.seo-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.seo-card h3 { font-size: .98rem; font-weight: 700; margin-bottom: .7rem; letter-spacing: -.01em; }
.seo-card p { font-size: .85rem; color: var(--text-2); line-height: 1.7; }

/* ── PRICING ─────────────────────────────── */
.pricing { padding: var(--section) 0; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.pricing__orb { position: absolute; width: 600px; height: 600px; background: rgba(59,130,246,.06); border-radius: 50%; filter: blur(80px); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.pricing__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap; }
.pricing__note { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.1rem 1.5rem; display: flex; align-items: center; gap: .85rem; }
.pricing__note-icon { font-size: 1.3rem; }
.pricing__note p { font-size: .82rem; color: var(--text-2); line-height: 1.5; }
.pricing__note strong { color: var(--text); }

.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; position: relative; z-index: 1; }

.pkg {
  position: relative;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  display: flex; flex-direction: column;
  transition: border-color .22s, transform .22s, box-shadow .22s;
}
.pkg:hover { border-color: var(--border-md); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.45); }
.pkg--hot { border-color: var(--blue); background: linear-gradient(145deg, var(--bg-card), rgba(59,130,246,.09)); box-shadow: 0 0 30px rgba(59,130,246,.12); }
.pkg--hot:hover { border-color: var(--blue-light); }
.pkg--elite { border-color: var(--gold); background: linear-gradient(145deg, var(--bg-card), rgba(245,158,11,.07)); }
.pkg--elite:hover { border-color: #fbbf24; box-shadow: 0 16px 48px rgba(245,158,11,.08); }

.pkg__badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  padding: .28rem .9rem;
  font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 99px; white-space: nowrap;
}
.pkg__badge--blue { background: var(--blue); color: #fff; }
.pkg__badge--gold { background: var(--gold); color: #111; }

.pkg__top { margin-bottom: 1.25rem; }
.pkg__count { font-size: 1.6rem; font-weight: 800; letter-spacing: -.03em; color: var(--blue-light); line-height: 1; }
.pkg--elite .pkg__count { color: var(--gold); }
.pkg__name { font-size: .76rem; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; margin-top: .15rem; }

.pkg__price { display: flex; align-items: baseline; gap: .3rem; padding: 1rem 0; margin: 0 0 1rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pkg__amount { font-size: 2.1rem; font-weight: 800; letter-spacing: -.035em; color: #fff; }
.pkg__per { font-size: .78rem; color: var(--text-3); font-weight: 600; }

.pkg__features { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; flex: 1; }
.pkg__features li { display: flex; align-items: flex-start; gap: .6rem; font-size: .8rem; color: var(--text-2); line-height: 1.4; }
.pkg__features li::before { content: '✓'; color: var(--blue); font-weight: 800; font-size: .8rem; flex-shrink: 0; margin-top: .05rem; }
.pkg--elite .pkg__features li::before { color: var(--gold); }

/* ── FAQ ─────────────────────────────────── */
.faq { padding: var(--section) 0; }
.faq__layout { display: grid; grid-template-columns: 340px 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.faq__side { position: sticky; top: 7rem; }
.faq__side h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 1rem; }
.faq__side h2 span { color: var(--blue-light); }
.faq__side p { color: var(--text-2); font-size: .94rem; line-height: 1.7; margin-bottom: 2rem; }
.faq__contact { padding: 1.5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); }
.faq__contact p { font-size: .84rem; color: var(--text-2); margin-bottom: 1rem; }
.faq__contact strong { color: var(--text); }

.faq__list { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item summary {
  padding: 1.3rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  cursor: pointer; font-size: .96rem; font-weight: 700; list-style: none;
  color: var(--text); transition: color .2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+'; flex-shrink: 0; width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--bg-card); border: 1px solid var(--border-md); border-radius: 50%;
  font-size: 1.1rem; font-weight: 300; color: var(--text-2);
  transition: all .22s;
}
.faq__item[open] summary { color: var(--blue-light); }
.faq__item[open] summary::after { content: '−'; background: var(--blue); color: #fff; border-color: var(--blue); }
.faq__body { padding: 0 3rem 1.25rem 0; }
.faq__body p { font-size: .9rem; color: var(--text-2); line-height: 1.75; }

/* ── CONTACT ─────────────────────────────── */
.contact { padding: var(--section) 0; background: var(--bg-2); border-top: 1px solid var(--border); }
.contact__layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact__info h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 1rem; }
.contact__info h2 span { color: var(--blue-light); }
.contact__info > p { color: var(--text-2); font-size: 1rem; line-height: 1.7; margin-bottom: 2.5rem; }
.cinfo { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.cinfo__row { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.4rem; background: var(--bg-card); transition: background .2s; }
.cinfo__row:hover { background: var(--bg-card-2); }
.cinfo__icon { width: 36px; height: 36px; background: var(--blue-soft); border: 1px solid var(--border-md); border-radius: 10px; display: grid; place-items: center; font-size: 1rem; flex-shrink: 0; }
.cinfo__label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: .1rem; }
.cinfo__val { font-size: .9rem; font-weight: 600; color: var(--text); }
.cinfo__val a:hover { color: var(--blue-light); }

.contact__form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 2.25rem; }
.contact__form h3 { font-size: 1.15rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 1.75rem; }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .92rem; font-weight: 500;
  color: var(--text); background: var(--bg-3);
  border: 1.5px solid var(--border); border-radius: var(--r);
  padding: .8rem 1rem; width: 100%;
  transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: var(--bg-2); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%2360a5fa' stroke-width='1.8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form__status { font-size: .85rem; min-height: 1.2em; margin-top: .5rem; }
.form__status.ok { color: var(--green); }
.form__status.err { color: var(--red); }

/* ── FOOTER ──────────────────────────────── */
.footer { padding: 4rem 0 2.5rem; border-top: 1px solid var(--border); }
.footer__grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding-bottom: 2rem; margin-bottom: 2rem; border-bottom: 1px solid var(--border); }
.footer__logo { display: flex; align-items: center; gap: .65rem; font-weight: 800; font-size: 1.05rem; letter-spacing: -.02em; margin-bottom: .75rem; }
.footer__logo-icon { width: 32px; height: 32px; background: var(--blue); border-radius: 9px; display: grid; place-items: center; font-size: .9rem; color: #fff; box-shadow: 0 0 12px var(--blue-glow); }
.footer__desc { font-size: .84rem; color: var(--text-2); max-width: 42ch; line-height: 1.65; }
.footer__links { display: flex; gap: .75rem; flex-wrap: wrap; }
.footer__links a { padding: .45rem .85rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); font-size: .8rem; font-weight: 600; color: var(--text-2); transition: all .2s; }
.footer__links a:hover { color: var(--blue-light); border-color: var(--border-md); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer__copy { font-size: .78rem; color: var(--text-3); }
.footer__legal { font-size: .78rem; color: var(--text-3); max-width: 60ch; line-height: 1.5; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1100px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 960px) {
  .about__grid, .faq__layout, .contact__layout { grid-template-columns: 1fr; gap: 3rem; }
  .seo-grid { grid-template-columns: 1fr; }
  .faq__side { position: static; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .pricing__head { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 720px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .nav.open .nav__links { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 1.5rem var(--pad); gap: 1.25rem; }
  .pkg-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .feat-grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .trust__inner { gap: 1rem 1.5rem; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }

/* ── SEO TAGS ───────────────────────────── */
.seo-tags {
  padding: 3rem 0 2rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.seo-tags__grid {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.seo-tags__grid span {
  display: inline-block;
  padding: .38rem .85rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-3);
  transition: all .2s;
  white-space: nowrap;
}
.seo-tags__grid span:hover {
  border-color: var(--border-md);
  color: var(--text-2);
}

/* ── FOOTER EXTRAS ─────────────────────── */
.footer__company {
  font-size: .8rem;
  color: var(--text-3);
  margin-top: .75rem;
  line-height: 1.55;
}
.footer__company strong { color: var(--text-2); }
.footer__ev {
  font-size: .78rem;
  color: var(--text-3);
  margin-top: .5rem;
  line-height: 1.6;
  max-width: 42ch;
}
.footer__contact-block {
  margin-top: 1.75rem;
}
.footer__contact-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: .85rem;
}
.footer__wa-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1.1rem;
  background: #25d366;
  color: #fff !important;
  border-radius: var(--r);
  font-size: .86rem;
  font-weight: 700;
  transition: all .2s;
  margin-bottom: .65rem;
}
.footer__wa-link:hover { background: #20bd5a; transform: translateY(-1px); }
.footer__wa-icon { display: flex; align-items: center; }
.footer__mail-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .84rem;
  color: var(--text-2);
  transition: color .2s;
}
.footer__mail-link:hover { color: var(--blue-light); }

/* ── WHATSAPP WIDGET ────────────────────── */
.wa-widget {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .85rem;
}
.wa-fab {
  position: relative;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  transition: all .22s var(--ease);
  cursor: pointer;
  border: none;
  animation: wa-pulse 2.5s infinite;
}
.wa-fab:hover { background: #20bd5a; transform: scale(1.08); box-shadow: 0 8px 32px rgba(37, 211, 102, .6); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.3); }
  50% { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 12px rgba(37,211,102,0); }
}
.wa-fab__badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 20px; height: 20px;
  background: #ef4444;
  border: 2px solid var(--bg);
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 800;
  color: #fff;
  display: grid;
  place-items: center;
}
.wa-bubble {
  background: #fff;
  border-radius: 16px;
  width: 300px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,.5);
  transform: scale(.9) translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: all .3s var(--ease);
  transform-origin: bottom right;
}
.wa-bubble.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.wa-bubble__header {
  background: #075e54;
  padding: .9rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.wa-bubble__avatar {
  width: 38px; height: 38px;
  background: #25d366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.wa-bubble__name {
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.wa-bubble__status {
  font-size: .72rem;
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.wa-bubble__online {
  width: 7px; height: 7px;
  background: #25d366;
  border-radius: 50%;
  animation: blink 2s infinite;
}
.wa-bubble__close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,.65);
  cursor: pointer;
  font-size: 1rem;
  padding: .2rem;
  transition: color .2s;
}
.wa-bubble__close:hover { color: #fff; }
.wa-bubble__body {
  background: #e5ddd5;
  padding: 1.1rem;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8c0b8' fill-opacity='0.25'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.wa-bubble__msg {
  background: #fff;
  border-radius: 8px 8px 8px 2px;
  padding: .75rem 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.15);
  position: relative;
  max-width: 220px;
}
.wa-bubble__msg p {
  font-size: .86rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: .3rem;
}
.wa-bubble__msg p:last-of-type { margin-bottom: 0; }
.wa-bubble__time {
  display: block;
  text-align: right;
  font-size: .68rem;
  color: #aaa;
  margin-top: .35rem;
}
.wa-bubble__cta {
  display: block;
  text-align: center;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  padding: .9rem;
  transition: background .2s;
  font-family: var(--font);
}
.wa-bubble__cta:hover { background: #20bd5a; color: #fff; }

@media (max-width: 480px) {
  .wa-widget { bottom: 1.25rem; right: 1.25rem; }
  .wa-bubble { width: 270px; }
}

/* ── HERO 2-COLUMN LAYOUT ───────────────── */
.hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;        /* sol ve sağ dikey ortada */
  padding: 6.5rem 0 2.5rem;
}

/* Sol metin sütunu */
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Sağ görsel sütunu */
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: up 1s var(--ease) .25s both;
}

/* İstatistikler — grid dışında full width */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-card);
  overflow: hidden;
  margin-bottom: 2.5rem;
  animation: up .9s var(--ease) .4s both;
}

.stat {
  padding: 1.4rem 1.75rem;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }

.stat__num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1;
  margin-bottom: .3rem;
}
.stat__num span { font-size: .9rem; color: var(--blue-l); font-weight: 700; }
.stat__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
}

.hero__ko-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__ko-glow {
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(59,130,246,.22) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(50px);
  animation: ko-pulse 3.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes ko-pulse {
  0%,100% { opacity: .4; transform: scale(1); }
  50%      { opacity: .9; transform: scale(1.08); }
}

.hero__ko-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  mix-blend-mode: screen;
  filter:
    drop-shadow(0 0 28px rgba(59,130,246,.65))
    drop-shadow(0 0 60px rgba(59,130,246,.3))
    brightness(1.08) contrast(1.05);
  animation: ko-float 5s ease-in-out infinite;
}

@keyframes ko-float {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  33%      { transform: translateY(-12px) rotate(.3deg); }
  66%      { transform: translateY(-5px) rotate(-.2deg); }
}

/* ── Operatör Yazılar ──────────────────────── */
.hero__operators {
  width: 100%;
  background: rgba(5,12,35,.75);
  border: 1px solid var(--border-md);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem 1.15rem;
  backdrop-filter: blur(14px);
}

.hero__op-label {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-3);
  text-align: center;
  margin-bottom: .85rem;
}

.hero__op-logos {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.op-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .6rem .5rem;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: background .2s;
}

.op-badge:hover { background: rgba(255,255,255,.05); }

.op-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.op-badge--vodafone { color: #e60000; }
.op-badge--vodafone .op-dot { background: #e60000; box-shadow: 0 0 6px rgba(230,0,0,.5); }

.op-badge--turkcell { color: #ffd300; }
.op-badge--turkcell .op-dot { background: #ffd300; box-shadow: 0 0 6px rgba(255,211,0,.5); }

.op-badge--tt { color: #005f9e; color: #60a5fa; }
.op-badge--tt .op-dot { background: #60a5fa; box-shadow: 0 0 6px rgba(96,165,250,.5); }

.op-sep {
  width: 1px; height: 30px;
  background: var(--border-md);
  flex-shrink: 0;
}

/* Mobile: stack vertically */
@media (max-width: 1000px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 6rem 0 1.5rem;
  }
  .hero__visual { order: -1; }
  .hero__ko-img { max-width: 280px; }
  .hero__ko-glow { width: 260px; height: 260px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── PROXIFIER SECTION ──────────────────── */
.proxifier {
  padding: var(--section) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proxifier__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.proxifier__intro h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.proxifier__intro h2 span { color: var(--blue-l); }
.proxifier__intro > p { color: var(--text-2); font-size: .97rem; line-height: 1.72; margin-bottom: 2rem; }

.proxifier__download {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.proxifier__ver {
  font-size: .78rem;
  color: var(--text-3);
  font-weight: 600;
}

.proxifier__video-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: .85rem;
}

.proxifier__yt {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-md);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}

.proxifier__yt iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Steps */
.proxifier__steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pstep {
  display: flex;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: border-color .2s, transform .2s;
}
.pstep:hover {
  border-color: var(--border-md);
  transform: translateX(4px);
}

.pstep__num {
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .9rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--blue-g);
}

.pstep__body { flex: 1; }
.pstep__body h3 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: .65rem;
  color: var(--text);
}
.pstep__icon { margin-right: .4rem; }
.pstep__body > p { font-size: .88rem; color: var(--text-2); line-height: 1.7; margin-bottom: .75rem; }
.pstep__body > p:last-of-type { margin-bottom: 0; }

.pstep__fields {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin: .75rem 0;
}

.pfield {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: .75rem;
  padding: .6rem 1rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.pfield:last-child { border-bottom: none; }

.pfield__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-l);
}
.pfield__val {
  font-size: .84rem;
  color: var(--text-2);
  font-weight: 500;
}
.pfield__val strong { color: var(--text); }

.pstep__tip {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  background: rgba(59,130,246,.08);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: var(--r);
  padding: .75rem 1rem;
  font-size: .83rem;
  color: var(--text-2);
  line-height: 1.55;
  margin-top: .85rem;
}
.pstep__tip-icon { font-size: 1rem; flex-shrink: 0; margin-top: .05rem; }

@media (max-width: 960px) {
  .proxifier__grid { grid-template-columns: 1fr; }
}

/* ── KO INFO CARDS ──────────────────────── */
.ko-info {
  padding: var(--section) 0;
  background: var(--bg);
}

.kocard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.kocard:last-child { border-bottom: none; }

/* Sol resim layout */
.kocard--right { }
.kocard--right .kocard__body { order: 1; }
.kocard--right .kocard__img-wrap { order: 2; }

/* Görsel */
.kocard__img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--border),
    0 16px 48px rgba(0,0,0,.55);
}

.kocard__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.kocard__img-wrap:hover .kocard__img { transform: scale(1.04); }

.kocard__img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(59,130,246,.18) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* Body */
.kocard__tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .32rem .85rem;
  background: var(--blue-soft);
  border: 1px solid var(--border-md);
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 1.1rem;
}

.kocard__body h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--text);
}

.kocard__body p {
  font-size: .96rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: .9rem;
}
.kocard__body p strong { color: var(--text); }

.kocard__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.25rem 0;
}

.kobadge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .85rem;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.kobadge--green {
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.25);
  color: #34d399;
}
.kobadge--blue {
  background: var(--blue-soft);
  border: 1px solid var(--border-md);
  color: var(--blue-light);
}
.kobadge--yellow {
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.22);
  color: #fbbf24;
}

.kocard__cta { margin-top: .5rem; }

@media (max-width: 860px) {
  .kocard {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
  }
  .kocard--right .kocard__body { order: 2; }
  .kocard--right .kocard__img-wrap { order: 1; }
  .kocard__img { height: 240px; }
}
