:root {
  --surface-base: #0a0e17;
  --surface: #101418;
  --surface-lowest: #0a0f13;
  --surface-low: #181c20;
  --surface-high: #262a2f;
  --text: #dfe3e9;
  --text-strong: #f8fafc;
  --muted: #bfc7d2;
  --muted-soft: #89929b;
  --primary: #92ccff;
  --primary-core: #0088cc;
  --accent: #00e5ff;
  --success: #00ffc2;
  --warn: #ffd27a;
  --danger: #ffb4ab;
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(0, 229, 255, 0.32);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-hover: rgba(255, 255, 255, 0.055);
  --radius: 16px;
  --font: "Inter", "Segoe UI", Arial, sans-serif;
  --page-max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 85% 0%, rgba(0, 229, 255, 0.08), transparent 24rem),
    var(--surface-base);
}
body::selection { background: rgba(0, 229, 255, 0.30); color: #fff; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 450, "GRAD" 0, "opsz" 24;
}

.shell {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding: 96px 24px 48px;
}
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(16, 20, 24, 0.80);
  backdrop-filter: blur(18px);
  box-shadow: none;
}
.top-actions { display: flex; align-items: center; justify-content: flex-end; }
.top-actions .btn, .top-actions button { min-height: 40px; min-width: auto; border-radius: 999px; font-size: 14px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 236px;
  object-fit: contain;
}
.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-core), var(--accent));
  box-shadow: 0 0 14px rgba(0, 229, 255, .18);
}
.brand strong { color: var(--text-strong); font-size: 20px; line-height: 1; letter-spacing: 0; }
.brand small { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.nav { display: flex; gap: 22px; align-items: center; }
.nav a {
  padding: 6px 0;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease, background .2s ease, border .2s ease;
}
.nav a:hover { color: var(--text); background: transparent; }
.nav a.active {
  color: var(--primary);
  border-bottom: 2px solid var(--accent);
  border-radius: 0;
  font-weight: 700;
}
.nav form { margin: 0; }

.band, .card, .panel-card, .auth-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(12px);
}
.band {
  margin-top: 24px;
  padding: 28px;
}
.home-section {
  margin: 24px 0 0;
  padding: 0;
}
.home-section.alt { background: transparent; }
.hero + .home-section { padding-top: 0; }
.card, .panel-card {
  padding: 24px;
  display: grid;
  gap: 24px;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.card:hover {
  border-color: rgba(146, 204, 255, 0.34);
  background: var(--glass-hover);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.16);
}
.grid { display: grid; gap: 24px; }
.home-section .grid { gap: 24px; }
.home-section .grid-4 .card {
  min-height: 220px;
  align-content: start;
}
.home-section .grid-4 .card .icon-tile {
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
  border-radius: 14px;
}
.home-section .grid-4 .card .icon-tile .material-symbols-outlined { font-size: 32px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.section-head { display: grid; gap: 12px; margin-bottom: 24px; }
.section-head p, .card p, .muted, .table-wrap td { color: var(--muted); }
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .1em;
}
.home-section .section-head h2 {
  color: var(--text-strong);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: 0;
}
.home-section .card h3, .step h3 {
  color: var(--text-strong);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.2;
  letter-spacing: 0;
}
.home-section .card p, .step p { font-size: 15px; line-height: 1.6; }
.hero h1 {
  color: var(--text-strong);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  max-width: 14.5ch;
  letter-spacing: 0;
}
.page-title {
  color: var(--text-strong);
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 1.06;
  font-weight: 800;
  max-width: 13ch;
}
.hero p { max-width: 58ch; color: var(--muted); font-size: 18px; line-height: 1.65; }
.hero {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  margin: 24px 0 0;
  padding: 48px;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(95px);
}
.hero::before { width: 360px; height: 360px; top: -170px; right: -120px; background: rgba(146,204,255,.08); }
.hero::after { width: 220px; height: 220px; bottom: -90px; left: -90px; background: rgba(0,229,255,.08); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr); gap: 36px; align-items: center; }
.hero-copy { display: grid; gap: 24px; }
.hero-title-accent { display: block; color: var(--primary); }
.hero-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(146,204,255,.20);
  border-radius: 999px;
  background: rgba(146,204,255,.05);
  color: var(--primary);
}
.hero-actions, .actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-visual {
  position: relative;
  min-height: 300px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  padding: 14px;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
}
.hero-image {
  display: block;
  width: 100%;
  min-height: 272px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: inset 0 0 24px rgba(0,0,0,.32);
}
.hero-stat {
  position: absolute;
  left: -18px;
  bottom: -18px;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(0,229,255,.3);
  background: rgba(10,14,23,.78);
  backdrop-filter: blur(14px);
  animation: float-slow 3s ease-in-out infinite;
}
.hero-stat .icon-tile {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: var(--success);
  background: rgba(0, 255, 194, .18);
}
.hero-stat .icon-tile .material-symbols-outlined { color: var(--success); }
.hero-stat strong { color: #fff; font-size: 20px; line-height: 1.1; }
.hero-stat p { font-size: 16px; line-height: 1.2; }
@keyframes float-slow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.btn, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: inherit;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.hero .btn { min-height: 52px; padding: 0 22px; border-radius: 12px; font-size: 15px; }
.btn-primary, button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-core), var(--accent));
}
.btn-primary:hover, button.primary:hover { box-shadow: 0 0 20px rgba(0,229,255,.34); transform: translateY(-1px); }
.btn-secondary, button.secondary {
  color: var(--text);
  background: rgba(255,255,255,.035);
  border-color: rgba(255,255,255,.14);
}
.btn-secondary:hover, button.secondary:hover { background: rgba(255,255,255,.08); }
.btn-danger { color: var(--danger); background: rgba(255,180,171,.10); border-color: rgba(255,180,171,.18); }
button:disabled { opacity: .58; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

.icon-tile {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: var(--accent);
  background: rgba(0,229,255,.10);
}
.icon-tile .material-symbols-outlined { font-size: 28px; }
.pricing-card { min-height: 560px; align-content: start; position: relative; overflow: hidden; }
.pricing-card.featured {
  border-color: rgba(0,229,255,.42);
  box-shadow: 0 0 28px rgba(0,229,255,.14);
}
.price { display: flex; align-items: baseline; gap: 4px; }
.price strong { color: #fff; font-size: 3rem; line-height: .95; }
.feature-list { display: grid; gap: 12px; color: #d6dde8; }
.feature-list li { display: flex; gap: 16px; align-items: center; }
.feature-list span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 3px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}
.badge, .pill {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.badge { color: #003351; background: var(--accent); border-color: transparent; text-transform: uppercase; letter-spacing: .08em; }
.pill.ok { color: var(--success); border-color: rgba(0,255,194,.26); background: rgba(0,255,194,.10); }
.pill.warn { color: var(--warn); border-color: rgba(255,210,122,.24); background: rgba(255,210,122,.08); }
.pill.danger { color: var(--danger); border-color: rgba(255,180,171,.24); background: rgba(255,180,171,.08); }

.auth-card {
  width: min(520px, 100%);
  margin: 9vh auto 0;
  padding: 32px;
  display: grid;
  gap: 18px;
  box-shadow: 0 0 34px rgba(0,229,255,.08);
}
form { display: grid; gap: 14px; }
label { display: grid; gap: 8px; color: var(--text); font-weight: 700; }
input, select, textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  background: #0d1117;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,229,255,.10); }
textarea { resize: vertical; }
.alert, .success {
  margin: 10px auto 0;
  width: min(100%, 1280px);
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 210, 122, .24);
  background: rgba(255, 210, 122, .08);
  color: #ffe0a3;
}
.success { border-color: rgba(0,255,194,.24); background: rgba(0,255,194,.08); color: #c9ffef; }

.layout {
  display: grid;
  grid-template-columns: 280px minmax(0,1fr);
  gap: 32px;
  align-items: start;
}
.sidebar {
  position: sticky;
  top: 96px;
  min-height: calc(100vh - 128px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: rgba(10,15,19,.46);
  border-radius: 0;
}
.side-nav { display: grid; gap: 8px; }
.side-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 10px;
  color: var(--muted);
  border-right: 4px solid transparent;
  transition: all .22s ease;
}
.side-nav a:hover, .side-nav a.active {
  color: var(--accent);
  background: rgba(0,229,255,.10);
  border-right-color: var(--accent);
  box-shadow: 0 0 14px rgba(0,229,255,.15);
}
.content { display: grid; gap: 24px; min-width: 0; }
.kpi { display: flex; align-items: center; gap: 16px; }
.kpi strong { display: block; color: var(--text-strong); font-size: 2.35rem; line-height: 1; }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: rgba(255,255,255,.025); }
table { width: 100%; min-width: 780px; border-collapse: collapse; }
th, td { padding: 16px 14px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.08); }
th { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .13em; background: rgba(255,255,255,.035); }
tr:hover td { background: rgba(255,255,255,.02); }
.message { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.message.admin { padding-left: 16px; border-left: 3px solid rgba(0,229,255,.5); }
.message.user { padding-right: 16px; }
.message-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.download-visual {
  min-height: 158px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,229,255,.16);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 20%, rgba(0,229,255,.24), transparent 46%),
    linear-gradient(135deg, rgba(0,136,204,.25), rgba(255,255,255,.025));
  color: var(--accent);
  font-size: 3rem;
  font-weight: 900;
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(146,204,255,.22), transparent);
}
.step { position: relative; text-align: center; display: grid; gap: 16px; justify-items: center; }
.step .icon-tile {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(146,204,255,.06);
  border-color: rgba(0,229,255,.22);
}
.step-accent .icon-tile { color: var(--accent); border-color: rgba(0,229,255,.30); }
.step-success .icon-tile { color: var(--success); border-color: rgba(0,255,194,.28); }
.step-success .icon-tile .material-symbols-outlined { color: var(--success); }
.metric-card { min-height: 160px; place-items: center; text-align: center; border-color: rgba(0,229,255,.20); }
.metric-card strong { color: #fff; font-size: 38px; line-height: 1; }
.metric-card p { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.security-card {
  min-height: 360px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.security-card::after {
  content: "shield";
  position: absolute;
  right: 32px;
  top: 32px;
  color: rgba(255,255,255,.20);
  font-family: "Material Symbols Outlined";
  font-size: 140px;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 48;
}
.security-card > * { position: relative; z-index: 1; }
.security-card .feature-list { gap: 14px; }
.security-card .feature-list li { color: #fff; font-size: 15px; font-weight: 700; }
.metric-card { border-radius: var(--radius); }
.testimonial-card { min-height: 240px; align-content: space-between; padding: 24px; border-radius: var(--radius); }
.testimonial-card .stars { display: flex; color: var(--accent); gap: 2px; }
.testimonial-card .stars .material-symbols-outlined { font-size: 24px; }
.testimonial-card p strong { color: #fff; font-size: 15px; line-height: 1.6; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  border: 1px solid rgba(146,204,255,.30);
  background: linear-gradient(135deg, rgba(0,136,204,.45), rgba(0,229,255,.18));
  overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.testimonial-author strong { color: #fff; display: block; font-size: 16px; }
.testimonial-author .muted { display: block; font-size: 13px; }
.cta-band {
  text-align: center;
  background: linear-gradient(135deg, #0088cc, #00e5ff);
  color: #fff;
  border-color: transparent;
  border-radius: 18px;
  padding: 44px 32px;
  box-shadow: 0 0 24px rgba(0,229,255,.14);
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}
.cta-band p { font-size: 17px; max-width: 720px; margin: 0 auto; }
.cta-band .btn {
  min-height: 52px;
  min-width: 240px;
  border-radius: 12px;
  font-size: 15px;
}
.cta-band .btn-secondary:first-child {
  color: var(--primary);
  background: #fff;
  border-color: #fff;
}
.cta-band .btn-secondary:last-child {
  color: #fff;
  background: rgba(255,255,255,.04);
  border: 2px solid rgba(255,255,255,.30);
}
.cta-note {
  margin-top: 20px;
  color: rgba(255,255,255,.62);
  font-size: 14px;
}
.cta-band p { color: rgba(255,255,255,.82); }
.footer {
  margin: 32px 0 0;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 32px;
  background: rgba(10, 15, 19, .82);
  border-radius: var(--radius);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, minmax(140px, .5fr)); gap: 32px; min-height: auto; }
.footer h4 { color: #fff; font-size: 16px; }
.footer a, .footer p { font-size: 14px; line-height: 1.6; }
.footer .brand strong { font-size: 18px; letter-spacing: 0; }
.footer .brand small { display: inline; font-size: 10px; }
.footer .brand-mark { width: 34px; height: 34px; font-size: 12px; border-radius: 8px; }
.footer-icons { display: flex; gap: 16px; }
.footer-icons a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
}
.footer-icons .material-symbols-outlined { font-size: 22px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 28px -32px 0;
  padding: 20px 32px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.status-dot {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 12px;
  border-radius: 999px;
  background: var(--success);
}

.seo-answer {
  background: #07111f;
  color: #eef6ff;
  margin: 0;
  padding: 72px 20px;
}

.seo-answer__inner {
  margin: 0 auto;
  max-width: 1120px;
}

.seo-answer__eyebrow {
  color: #67e8f9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.seo-answer h1,
.seo-answer h2,
.seo-answer p {
  margin-top: 0;
}

.seo-answer h1 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.seo-answer h2 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.seo-answer p,
.seo-answer li {
  color: #bfd0e2;
  line-height: 1.7;
}

.seo-answer__lead {
  font-size: 1.15rem;
  max-width: 860px;
}

.seo-answer__grid,
.seo-answer__packages {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.seo-answer article {
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  padding: 22px;
}

.seo-answer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.seo-answer__links a {
  border: 1px solid rgba(103, 232, 249, 0.28);
  border-radius: 999px;
  color: #a5f3fc;
  padding: 10px 14px;
  text-decoration: none;
}

.seo-answer__links a:hover,
.seo-answer__links a:focus-visible {
  border-color: #67e8f9;
  color: #ffffff;
}

#checkout-step-proof input[type="file"] {
  cursor: pointer;
  border-color: rgba(103, 232, 249, 0.22) !important;
  background:
    linear-gradient(135deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.96)) !important;
  color: #cbd5e1 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

#checkout-step-proof input[type="file"]::file-selector-button {
  margin-right: 14px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #7c3aed, #d946ef);
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
  padding: 10px 16px;
  box-shadow: 0 10px 24px rgba(88, 28, 135, 0.34);
}

#checkout-step-proof input[type="file"]::file-selector-button:hover {
  background: linear-gradient(135deg, #8b5cf6, #e879f9);
}

#checkout-step-proof button[type="submit"] {
  border: 1px solid rgba(216, 180, 254, 0.35) !important;
  background: linear-gradient(135deg, #7c3aed, #22d3ee) !important;
  color: #ffffff !important;
  box-shadow: 0 16px 36px rgba(34, 211, 238, 0.18), 0 12px 30px rgba(88, 28, 135, 0.28) !important;
}

#checkout-step-proof button[type="submit"]:hover {
  filter: brightness(1.08);
}

#checkout-bank-name,
#checkout-bank-iban {
  font-size: 0 !important;
}

#checkout-bank-name::after {
  content: "ismail çetin";
  font-size: 18px;
  line-height: 1.5;
}

#checkout-bank-iban::after {
  content: "TR71 0015 7000 0000 0157 8189 07";
  font-size: 16px;
  line-height: 1.5;
}

#checkout-bank-missing {
  display: none !important;
}

@media (max-width: 1320px) and (min-width: 981px) {
  .topbar {
    height: 72px;
    padding: 0 24px;
  }
  .brand { gap: 12px; }
  .brand-mark { width: 40px; height: 40px; font-size: 14px; }
  .brand strong { font-size: 20px; }
  .brand small { font-size: 11px; }
  .nav { gap: 20px; }
  .nav a { font-size: 14px; }
  .top-actions .btn, .top-actions button {
    min-height: 40px;
    min-width: auto;
    font-size: 14px;
  }
  .shell { padding-top: 96px; }
  .hero {
    margin-top: 24px;
    padding-top: 48px;
  }
}

@media (max-width: 980px) {
  .topbar { height: auto; min-height: 72px; flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .brand-mark { width: 40px; height: 40px; font-size: 14px; }
  .brand strong { font-size: 18px; }
  .brand small { font-size: 10px; }
  .topbar > .btn { min-height: 40px; min-width: auto; font-size: 14px; }
  .topbar .nav { position: static; transform: none; }
  .nav { width: 100%; justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
  .top-actions .btn, .top-actions button { min-height: 40px; min-width: auto; font-size: 14px; }
  .shell { padding: 112px 16px 40px; }
  .home-section { margin: 20px 0 0; padding: 0; }
  .hero { min-height: auto; margin: 0; padding: 32px 20px; }
  .hero-grid, .grid-2, .grid-3, .grid-4, .layout, .steps, .footer-grid, .seo-answer__grid, .seo-answer__packages { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .steps::before { display: none; }
  .card, .panel-card { padding: 28px; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: 32px; }
  .card p, .step p { font-size: 16px; }
  .security-card { min-height: auto; padding: 32px; }
  .security-card::after { font-size: 140px; right: 20px; top: 20px; }
  .testimonial-card { min-height: auto; padding: 28px; }
  .testimonial-card p strong { font-size: 18px; }
  .metric-card { min-height: 160px; }
  .cta-band .btn { min-width: 0; width: 100%; min-height: 56px; font-size: 16px; }
  .footer { margin: 20px 0 0; padding: 24px; }
  .footer-grid { min-height: auto; gap: 32px; }
  .footer a, .footer p { font-size: 16px; }
  .footer-bottom { display: grid; margin: 20px -24px 0; padding: 20px 24px 0; }
  .band { padding: 24px; }
  .sidebar { position: static; min-height: auto; }
}

@media (max-width: 520px) {
  .brand small { display: none; }
  .brand strong { font-size: 15px; }
  .nav a, .nav button { font-size: 13px; }
  .hero h1, .page-title { font-size: 32px; }
  .hero p { font-size: 16px; }
  .band, .card, .auth-card { border-radius: 12px; }
  .hero-actions .btn { width: 100%; }
  .cta-band { padding: 42px 20px; }
}
