/* ============================================================
   Bahis Rehberi — Premium Light Theme (pure CSS, WordPress-ready)
   ============================================================ */

:root {
  /* Brand */
  --green: #0b8a4b;
  --green-2: #0a7a42;
  --green-dark: #086437;
  --green-050: #eef8f2;
  --green-100: #d7efe1;
  --gold: #e8a317;
  --gold-2: #d9930b;
  --gold-050: #fdf4e0;

  /* Ink / neutrals */
  --navy: #0c1524;
  --ink: #2c3947;
  --muted: #6b7a8d;
  --muted-2: #94a2b3;
  --line: #e7edf3;
  --line-2: #eef2f7;
  --bg: #fbfcfe;
  --bg-alt: #f2f6fa;
  --white: #ffffff;

  /* System */
  --radius: 14px;
  --radius-lg: 20px;
  --radius-sm: 10px;
  --shadow-xs: 0 1px 2px rgba(12, 21, 36, 0.05);
  --shadow-sm: 0 4px 14px rgba(12, 21, 36, 0.06);
  --shadow: 0 14px 34px rgba(12, 21, 36, 0.09);
  --shadow-lg: 0 30px 60px rgba(12, 21, 36, 0.14);
  --maxw: 1160px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.94rem;
  font-family: inherit;
  cursor: pointer;
  border: none;
  letter-spacing: -0.01em;
  transition: transform 0.16s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 16px rgba(11, 138, 75, 0.28);
}
.btn--primary:hover {
  background: var(--green-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(11, 138, 75, 0.34);
}
.btn--gold {
  background: var(--gold);
  color: #3a2600;
  box-shadow: 0 6px 16px rgba(232, 163, 23, 0.32);
}
.btn--gold:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(232, 163, 23, 0.42);
}
.btn--ghost {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-050);
}

/* ---------- Utility bar ---------- */
.utility {
  background: var(--navy);
  color: #a9b6c7;
  font-size: 0.8rem;
}
.utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}
.utility__note {
  display: flex;
  align-items: center;
  gap: 9px;
}
.utility__age {
  background: var(--gold);
  color: #3a2600;
  font-weight: 800;
  font-size: 0.68rem;
  padding: 2px 7px;
  border-radius: 5px;
}
.utility__links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.utility__links a {
  color: #c3cedb;
  font-weight: 600;
  transition: color 0.15s ease;
}
.utility__links a:hover {
  color: #fff;
}
.utility__sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.16);
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo__text strong {
  color: var(--green);
  font-weight: 800;
}
.logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--green), var(--green-dark));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 6px 14px rgba(11, 138, 75, 0.3);
  position: relative;
}
.logo__mark::after {
  content: "";
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid #fff;
}

.nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav a {
  position: relative;
  padding: 9px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--ink);
  transition: color 0.15s ease, background 0.15s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav a:hover {
  color: var(--green-dark);
}
.nav a:hover::after {
  transform: scaleX(1);
}
.header__actions .btn {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.25s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 10px 24px 16px;
  position: sticky;
  top: 74px;
  z-index: 40;
}
.mobile-menu a {
  padding: 13px 6px;
  font-weight: 600;
  border-bottom: 1px solid var(--line-2);
}
.mobile-menu__cta {
  margin-top: 12px;
  background: var(--green);
  color: #fff !important;
  text-align: center;
  border-radius: 10px;
  border: none !important;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 72px 0 0;
  background: var(--bg);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(680px 380px at 12% -8%, var(--green-050), transparent 62%),
    radial-gradient(560px 360px at 98% 4%, var(--gold-050), transparent 58%);
  z-index: 0;
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(12, 21, 36, 0.045) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 70%);
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 56px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-dark);
  box-shadow: var(--shadow-xs);
}
.pill__dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(11, 138, 75, 0.45); }
  70% { box-shadow: 0 0 0 7px rgba(11, 138, 75, 0); }
  100% { box-shadow: 0 0 0 0 rgba(11, 138, 75, 0); }
}

.hero__title {
  font-size: clamp(2.15rem, 4.6vw, 3.4rem);
  margin: 20px 0 16px;
  line-height: 1.1;
}
.hl {
  position: relative;
  color: var(--green);
  white-space: nowrap;
}
.hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.32em;
  background: var(--gold);
  opacity: 0.28;
  border-radius: 3px;
  z-index: -1;
}
.hero__lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
}

.hero__search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 28px 0 22px;
  background: #fff;
  padding: 7px 7px 7px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 480px;
  border: 1px solid var(--line);
}
.hero__search-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--muted-2);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M10 2a8 8 0 105.3 14l5.4 5.4 1.4-1.4-5.4-5.4A8 8 0 0010 2zm0 2a6 6 0 110 12 6 6 0 010-12z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M10 2a8 8 0 105.3 14l5.4 5.4 1.4-1.4-5.4-5.4A8 8 0 0010 2zm0 2a6 6 0 110 12 6 6 0 010-12z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.hero__search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px 4px;
  font-size: 1rem;
  background: transparent;
  font-family: inherit;
  color: var(--ink);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
.check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-100);
  position: relative;
  flex-shrink: 0;
}
.check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 5px;
  height: 8px;
  border: solid var(--green-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Access card */
.access-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  animation: rise 0.7s ease both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.access-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.access-card__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}
.access-card__time {
  font-size: 0.72rem;
  color: var(--muted-2);
  font-weight: 600;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5484d;
  animation: pulse-red 1.5s infinite;
}
@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(229, 72, 77, 0.5); }
  70% { box-shadow: 0 0 0 6px rgba(229, 72, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 72, 77, 0); }
}
.access-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.access-card__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.access-card__list li:hover {
  background: var(--green-050);
  border-color: var(--green-100);
}
.access-card__list div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.access-card__list small {
  color: var(--muted);
  font-size: 0.76rem;
}
.status {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
}
.status--up { background: var(--green-100); color: var(--green-dark); }
.status--new { background: var(--gold-050); color: var(--gold-2); }
.access-card__more {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.9rem;
}
.access-card__more span {
  transition: transform 0.2s ease;
  display: inline-block;
}
.access-card__more:hover span {
  transform: translateX(4px);
}

/* Site badges */
.site-badge {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.site-badge.lg {
  width: 54px;
  height: 54px;
  font-size: 1.45rem;
  border-radius: 14px;
}
.site-badge--tipobet { background: linear-gradient(140deg, #2e77e6, #1546a8); }
.site-badge--artemis { background: linear-gradient(140deg, #9333ea, #5b1a9e); }
.site-badge--betboo { background: linear-gradient(140deg, #16a34a, #14682f); }
.site-badge--betnano { background: linear-gradient(140deg, #f59e0b, #c2600a); }

/* Trust strip */
.trust-strip {
  border-top: 1px solid var(--line);
  padding: 22px 0 26px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-strip__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.trust-strip__logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.auth {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.auth:hover {
  color: var(--navy);
  border-color: var(--muted-2);
}

/* ---------- Sections ---------- */
.section {
  padding: 82px 0;
}
.section--muted {
  background: var(--bg-alt);
}
.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section__head h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
}
.section__head p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 1.05rem;
}

/* ---------- Site list ---------- */
.site-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.site-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1.7fr 1.1fr 1fr auto;
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-xs);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.site-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--green-100);
}
.site-card[data-rank="1"] {
  border-color: rgba(232, 163, 23, 0.5);
  box-shadow: 0 10px 30px rgba(232, 163, 23, 0.14);
  padding-top: 30px;
}
.site-card__ribbon {
  position: absolute;
  top: 0;
  left: 26px;
  transform: translateY(-50%);
  background: var(--gold);
  color: #3a2600;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 10px rgba(232, 163, 23, 0.3);
}
.medal {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.05rem;
  background: var(--bg-alt);
  color: var(--muted);
}
.medal--1 { background: linear-gradient(140deg, #ffd76a, #e8a317); color: #3a2600; }
.medal--2 { background: linear-gradient(140deg, #e2e8f0, #b8c2ce); color: #3b4655; }
.medal--3 { background: linear-gradient(140deg, #f4c79a, #d69254); color: #4a2d10; }

.site-card__brand {
  display: flex;
  align-items: center;
  gap: 15px;
}
.site-card__brand h3 {
  font-size: 1.22rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.site-card__brand h3 a {
  transition: color 0.15s ease;
}
.site-card__brand h3 a:hover {
  color: var(--green);
}
.verified {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
  flex-shrink: 0;
}
.verified::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 4px;
  height: 7px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.license {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 3px;
}
.license .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.site-card__rating {
  display: flex;
  align-items: center;
  gap: 12px;
}
.score {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  background: var(--green-050);
  border: 1px solid var(--green-100);
  border-radius: 10px;
  padding: 4px 11px;
  line-height: 1.2;
}
.stars {
  --rating: 90%;
  width: 92px;
  height: 15px;
  background: linear-gradient(90deg, var(--gold) var(--rating), #e2e8f0 var(--rating));
  -webkit-mask: repeating-linear-gradient(90deg, #000 0 13px, transparent 13px 19px);
  mask: repeating-linear-gradient(90deg, #000 0 13px, transparent 13px 19px);
}
.site-card__rating small {
  display: block;
  color: var(--muted-2);
  font-size: 0.74rem;
  margin-top: 4px;
}
.site-card__bonus {
  display: flex;
  flex-direction: column;
}
.site-card__bonus span {
  font-size: 0.76rem;
  color: var(--muted);
}
.site-card__bonus strong {
  color: var(--green-dark);
  font-size: 1.1rem;
  font-weight: 800;
}
.site-card__actions {
  display: flex;
  gap: 10px;
}

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  margin-bottom: 18px;
  background: var(--green-050);
  position: relative;
}
.feature__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  -webkit-mask-size: 26px;
  mask-size: 26px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.feature__icon--shield::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2l8 3v6c0 5-3.5 9-8 11-4.5-2-8-6-8-11V5l8-3z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2l8 3v6c0 5-3.5 9-8 11-4.5-2-8-6-8-11V5l8-3z'/%3E%3C/svg%3E"); }
.feature__icon--refresh { background: var(--gold-050); }
.feature__icon--refresh::after { background: var(--gold-2); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 4V1L8 5l4 4V6a6 6 0 11-6 6H4a8 8 0 108-8z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 4V1L8 5l4 4V6a6 6 0 11-6 6H4a8 8 0 108-8z'/%3E%3C/svg%3E"); }
.feature__icon--star::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2l3 6.5 7 .6-5.3 4.6 1.6 6.8L12 17l-6.9 3.5 1.6-6.8L1.4 9.1l7-.6L12 2z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2l3 6.5 7 .6-5.3 4.6 1.6 6.8L12 17l-6.9 3.5 1.6-6.8L1.4 9.1l7-.6L12 2z'/%3E%3C/svg%3E"); }
.feature__icon--chat::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M4 4h16v12H7l-3 3V4z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M4 4h16v12H7l-3 3V4z'/%3E%3C/svg%3E"); }
.feature h3 {
  font-size: 1.12rem;
  margin-bottom: 9px;
}
.feature p {
  color: var(--muted);
  font-size: 0.93rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 260px at 8% 0%, rgba(11, 138, 75, 0.4), transparent 60%),
    radial-gradient(500px 260px at 100% 100%, rgba(232, 163, 23, 0.28), transparent 60%);
}
.cta-band__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 24px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}
.cta-band p {
  color: #b7c4d6;
  margin-top: 8px;
}
.cta-band__form {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.cta-band__form input {
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  min-width: 240px;
}
.cta-band__form input::placeholder {
  color: #8494a6;
}

/* ---------- Prose ---------- */
.prose {
  max-width: 760px;
}
.prose h2 {
  position: relative;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 24px;
  padding-bottom: 16px;
}
.prose h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  border-radius: 3px;
  background: var(--green);
}
.prose h3 {
  font-size: 1.25rem;
  margin: 40px 0 12px;
}
.prose h3:first-of-type {
  margin-top: 8px;
}
.prose p {
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 16px;
}
.prose p:last-child {
  margin-bottom: 0;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq__item[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--green-100);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--navy);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
}
.faq__item p {
  color: var(--muted);
  padding-bottom: 18px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: #a9b6c7;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 60px 24px 44px;
}
.logo--footer .logo__text {
  color: #fff;
}
.footer__brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.7;
}
.footer__col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 15px;
}
.footer__col a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: #a9b6c7;
  transition: color 0.15s ease;
}
.footer__col a:hover {
  color: var(--gold);
}
.footer__responsible .age-badge {
  display: inline-block;
  background: var(--gold);
  color: #3a2600;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 7px;
  margin-bottom: 12px;
}
.footer__responsible p {
  font-size: 0.86rem;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  font-size: 0.85rem;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__disclaimer {
  color: #7d8da0;
}

/* ============================================================
   Review / subpage components
   ============================================================ */
.site-badge.xl {
  width: 68px;
  height: 68px;
  font-size: 1.9rem;
  border-radius: 18px;
}

/* Breadcrumb */
.breadcrumb {
  border-bottom: 1px solid var(--line);
  background: #fff;
  font-size: 0.85rem;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0;
  color: var(--muted);
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.breadcrumb li:not(:last-child)::after {
  content: "/";
  color: var(--muted-2);
}
.breadcrumb a {
  color: var(--muted);
  transition: color 0.15s ease;
}
.breadcrumb a:hover {
  color: var(--green);
}
.breadcrumb li[aria-current] {
  color: var(--navy);
}

/* Review hero */
.review-hero {
  position: relative;
  padding: 48px 0 56px;
  background: var(--bg);
  overflow: hidden;
}
.review-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 340px at 15% -10%, var(--green-050), transparent 60%);
  z-index: 0;
}
.review-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.review-hero__brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.review-hero__brand h1 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.review-hero__sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted-2);
}
.review-hero__lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 20px;
}
.review-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-050);
  border: 1px solid var(--green-100);
  padding: 7px 14px 7px 11px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.tag:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 6px 14px rgba(11, 138, 75, 0.14);
}
.tag__ic {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--green);
}

/* Scorecard */
.review-scorecard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.review-scorecard__score {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 18px;
}
.review-scorecard__num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.review-scorecard__score small {
  display: block;
  color: var(--muted-2);
  font-size: 0.76rem;
  margin-top: 6px;
}
.review-scorecard__bars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
}
.review-scorecard__bars li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 6px 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.review-scorecard__bars .bar {
  grid-column: 1 / -1;
  height: 7px;
  border-radius: 4px;
  background: var(--line);
  position: relative;
  order: 2;
}
.review-scorecard__bars .bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--v);
  border-radius: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-2));
}
.review-scorecard__bars em {
  font-style: normal;
  color: var(--green-dark);
  font-weight: 800;
}
.review-scorecard__cta {
  width: 100%;
}
.review-scorecard__note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-2);
  margin-top: 10px;
}

/* Access panel */
.access-section {
  padding: 56px 0;
}
.access-panel {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.access-panel__info {
  padding: 36px;
  background: #fff;
}
.access-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #e5484d;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.access-panel__info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}
.access-panel__info > p {
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 520px;
}
.access-panel__facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.access-panel__facts li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 10px;
}
.access-panel__label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}
.access-panel__value {
  font-weight: 800;
  color: var(--navy);
}
.access-panel__action {
  position: relative;
  padding: 36px;
  background: linear-gradient(155deg, var(--navy), #14243c);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  overflow: hidden;
}
.access-panel__pulse {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 163, 23, 0.35), transparent 70%);
}
.access-panel__cta-label {
  font-size: 0.82rem;
  color: #a9b6c7;
  font-weight: 600;
  position: relative;
}
.access-panel__action small {
  color: #8494a6;
  font-size: 0.75rem;
  position: relative;
}
.btn--lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  position: relative;
}

/* Review grid (info table + proscons) */
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 28px;
  align-items: start;
}
.info-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-xs);
  margin-bottom: 28px;
}
.info-table h2 {
  position: relative;
  font-size: 1.35rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
}
.info-table h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  border-radius: 3px;
  background: var(--green);
}
.info-table table {
  width: 100%;
  border-collapse: collapse;
}
.info-table th,
.info-table td {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 0.92rem;
}
.info-table th {
  color: var(--muted);
  font-weight: 600;
}
.info-table td {
  color: var(--navy);
  font-weight: 700;
  text-align: right;
}
.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.proscons__col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-xs);
}
.proscons__col h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-2);
}
.proscons__col--pro h3 { color: var(--green); }
.proscons__col--con h3 { color: #e5484d; }
.proscons__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proscons__col li {
  position: relative;
  padding-left: 28px;
  font-size: 0.92rem;
  color: var(--ink);
}
.proscons__col li::before {
  position: absolute;
  left: 0;
  top: -1px;
  font-weight: 800;
  font-size: 1.05rem;
}
.proscons__col--pro li::before { content: "✓"; color: var(--green); }
.proscons__col--con li::before { content: "✕"; color: #e5484d; }

/* Bonus banner */
.bonus-banner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.bonus-banner__content {
  padding: 40px;
  background: #fff;
}
.bonus-banner__content h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin: 8px 0 12px;
}
.bonus-banner__content > p {
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 480px;
}
.bonus-banner__terms {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bonus-banner__terms li {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--bg-alt);
  padding: 7px 14px;
  border-radius: 8px;
}
.bonus-banner__cta {
  padding: 40px;
  background: linear-gradient(155deg, var(--gold), var(--gold-2));
  color: #3a2600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
}
.bonus-banner__amount {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
}
.bonus-banner__plus {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.bonus-banner__cta .btn {
  background: var(--navy);
  color: #fff;
}
.bonus-banner__cta .btn:hover {
  background: #14243c;
}

/* Payments */
.payments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.payment {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.payment:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--green-100);
}
.payment strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.payment span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

/* Prose wide */
.prose--wide {
  max-width: 860px;
}

/* Verdict */
.verdict {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.verdict__score {
  text-align: center;
  flex-shrink: 0;
  padding: 20px 28px;
  background: var(--green-050);
  border: 1px solid var(--green-100);
  border-radius: var(--radius);
}
.verdict__score small {
  display: block;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.82rem;
  margin-top: 4px;
}
.verdict__text h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin-bottom: 12px;
}
.verdict__text p {
  color: var(--muted);
  margin-bottom: 18px;
}

@media (max-width: 960px) {
  .review-hero__inner,
  .review-grid,
  .access-panel,
  .bonus-banner {
    grid-template-columns: 1fr;
  }
  .payments { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .proscons { grid-template-columns: 1fr; }
  .payments { grid-template-columns: 1fr; }
  .verdict { flex-direction: column; text-align: center; }
  .review-hero__brand { flex-direction: column; align-items: flex-start; }
}

/* ---------- Author box (E-E-A-T) ---------- */
.author-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-xs);
}
.author-box__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--green), var(--green-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.author-box__info > span {
  font-size: 0.92rem;
  color: var(--muted);
}
.author-box__info strong {
  color: var(--navy);
}
.author-box__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 6px;
}
.ab-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}
.ab-item svg {
  width: 15px;
  height: 15px;
  color: var(--green);
}

/* ---------- Review layout + sidebar ---------- */
.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 336px;
  gap: 56px;
  padding-top: 60px;
  padding-bottom: 88px;
  align-items: start;
}
.review-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.anchor {
  scroll-margin-top: 100px;
}
.block-title {
  position: relative;
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  margin-bottom: 28px;
  padding-bottom: 16px;
  line-height: 1.25;
}
.block-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  border-radius: 3px;
  background: var(--green);
}

.review-aside {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.aside-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.aside-card__title {
  font-size: 1.02rem;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-2);
}
.aside-card--cta {
  border-color: rgba(232, 163, 23, 0.45);
  box-shadow: 0 12px 30px rgba(232, 163, 23, 0.14);
}
.aside-card--cta .stars {
  margin: 4px 0 14px;
}
.aside-card--cta .btn {
  width: 100%;
}
.aside-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.aside-card__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.aside-card__brand strong {
  display: block;
  color: var(--navy);
  font-size: 1.1rem;
}
.aside-card__score {
  font-size: 0.82rem;
  color: var(--gold-2);
  font-weight: 700;
}
.aside-card__bonus {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
}
.related-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.related-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.related-list a:hover {
  border-color: var(--green-100);
  background: var(--green-050);
}
.related-list__name {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.3;
}
.related-list__name small {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.74rem;
}
.related-list__score {
  margin-left: auto;
  font-weight: 800;
  color: var(--green-dark);
  background: var(--green-050);
  border-radius: 8px;
  padding: 4px 9px;
  font-size: 0.85rem;
}

/* ---------- Answer box ---------- */
.answer-box {
  display: flex;
  gap: 18px;
  background: linear-gradient(120deg, var(--green-050), #fff);
  border: 1px solid var(--green-100);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.answer-box__icon {
  flex-shrink: 0;
  color: var(--green);
}
.answer-box__icon svg {
  width: 34px;
  height: 34px;
}
.answer-box h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.answer-box p {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.7;
  margin: 0;
}

/* ---------- TOC ---------- */
.toc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-xs);
}
.toc__title {
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.toc ol {
  columns: 2;
  column-gap: 30px;
  padding-left: 18px;
  margin: 0;
}
.toc li {
  margin-bottom: 8px;
  break-inside: avoid;
}
.toc a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.15s ease;
}
.toc a:hover {
  color: var(--green);
}

/* ---------- Gallery ---------- */
.gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 2px;
  padding: 2px 2px 12px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.gallery::-webkit-scrollbar {
  height: 8px;
}
.gallery::-webkit-scrollbar-track {
  background: transparent;
}
.gallery::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 999px;
}
.gallery__item {
  flex: 0 0 clamp(250px, 46%, 330px);
  scroll-snap-align: start;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.gallery__item--wide {
  flex-basis: clamp(250px, 46%, 330px);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery__item figcaption {
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  border-top: 1px solid var(--line-2);
}

/* ---------- Steps (HowTo) ---------- */
.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  counter-reset: step;
}
.step {
  display: flex;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-xs);
  position: relative;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.step:hover {
  border-color: var(--green-100);
  transform: translateX(3px);
}
.step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--green), var(--green-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 6px 14px rgba(11, 138, 75, 0.28);
}
.step h3 {
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.step p {
  color: var(--muted);
  font-size: 0.93rem;
  margin: 0;
}

/* ---------- Payments (with icons) ---------- */
.payment__ic {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 12px;
  background: var(--green-050);
  color: var(--green-dark);
  font-size: 1.2rem;
  font-weight: 800;
}
.payment__t {
  display: block;
  margin-top: 2px;
}

/* ---------- User reviews ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.user-review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-xs);
}
.user-review__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.user-review__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.user-review__head strong {
  color: var(--navy);
  font-size: 0.92rem;
}
.user-review__date {
  margin-left: auto;
  font-size: 0.74rem;
  color: var(--muted-2);
  font-weight: 600;
}
.user-review p {
  color: var(--ink);
  font-size: 0.9rem;
  font-style: italic;
}
.stars--sm {
  width: 76px;
  height: 12px;
  margin-top: 3px;
}

/* ---------- Share ---------- */
.share {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.share__label {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
  margin-right: 4px;
}
.share__btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.share__btn svg {
  width: 20px;
  height: 20px;
}
.share__btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.share__btn--x { background: #0f1419; }
.share__btn--fb { background: #1877f2; }
.share__btn--tg { background: #2aabee; }
.share__btn--wa { background: #25d366; }

@media (max-width: 1024px) {
  .review-layout {
    grid-template-columns: 1fr;
  }
  .review-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 720px) {
  .toc ol { columns: 1; }
  .reviews { grid-template-columns: 1fr; }
  .review-aside { grid-template-columns: 1fr; }
  .author-box { flex-wrap: wrap; }
}

/* ---------- Logos ---------- */
.logo__img {
  height: 38px;
  width: auto;
  display: block;
}
.logo--footer .logo__img {
  height: 40px;
}
.review-hero__logo {
  height: 74px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* ---------- Access extra: address history + firm ---------- */
.access-extra {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  margin-top: 24px;
  align-items: start;
}
.addr-history,
.firm-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}
.addr-history__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.addr-history__title svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}
.addr-history__note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.addr-table__wrap {
  overflow-x: auto;
}
.addr-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.addr-table th {
  text-align: left;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted-2);
  padding: 0 14px 10px;
  border-bottom: 2px solid var(--line-2);
  white-space: nowrap;
}
.addr-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink);
  white-space: nowrap;
}
.addr-table td:nth-child(2) {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  color: var(--navy);
  font-weight: 600;
}
.addr-table__current td {
  background: var(--green-050);
}
.addr-table__current td:nth-child(2) {
  color: var(--green-dark);
}
.addr-table tr:last-child td {
  border-bottom: none;
}
.pill-ban {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #b42318;
  background: #fef3f2;
  border-radius: 20px;
  padding: 4px 12px;
}
.pill-ban::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d92d20;
}
.firm-card img {
  height: 52px;
  width: auto;
  margin-bottom: 14px;
}
.firm-card h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-2);
}
.firm-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.firm-card__list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
}
.firm-card__list span {
  color: var(--muted);
}
.firm-card__list strong {
  color: var(--navy);
  text-align: right;
}
.aside-card__logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 860px) {
  .access-extra {
    grid-template-columns: 1fr;
  }
}

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav, .header__actions { display: none; }
  .nav-toggle { display: flex; }
  .site-card {
    grid-template-columns: 40px 1fr 1fr;
    gap: 16px 20px;
  }
  .site-card__rating { grid-column: 2 / -1; }
  .site-card__bonus { grid-column: 2; }
  .site-card__actions { grid-column: 1 / -1; }
  .site-card__actions .btn { flex: 1; }
}
@media (max-width: 620px) {
  .utility__links { display: none; }
  .site-card {
    grid-template-columns: 40px 1fr;
  }
  .site-card__rating,
  .site-card__bonus { grid-column: 1 / -1; }
  .features { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-band__form { width: 100%; }
  .cta-band__form input { min-width: 0; flex: 1; }
  .hero__trust { gap: 12px 18px; }
}

/* ============================================================
   Polish · Accessibility · Native-app UX · SEO/CWV
   ============================================================ */

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 88px;
}
body {
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-y: none;
}
img {
  height: auto;
}
::selection {
  background: var(--green-100);
  color: var(--green-dark);
}
:focus-visible {
  outline: 3px solid rgba(11, 138, 75, 0.45);
  outline-offset: 2px;
  border-radius: 6px;
}
a,
button,
input,
select,
textarea {
  accent-color: var(--green);
}
.addr-table__wrap {
  -webkit-overflow-scrolling: touch;
}

/* Honour reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------- Mobile sticky CTA (native-app feel) ---------- */
.mobile-cta {
  display: none;
}
@media (max-width: 1024px) {
  .mobile-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: saturate(1.5) blur(12px);
    backdrop-filter: saturate(1.5) blur(12px);
    border-top: 1px solid var(--line);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 24px rgba(12, 21, 36, 0.1);
    animation: mobileCtaUp 0.35s ease both;
  }
  .mobile-cta__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  .mobile-cta__info img {
    height: 26px;
    width: auto;
  }
  .mobile-cta__score {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 600;
  }
  .mobile-cta__num {
    color: var(--green-dark);
    font-weight: 800;
  }
  .mobile-cta__btn {
    flex-shrink: 0;
    padding: 13px 22px;
  }
  /* Prevent the fixed bar from hiding footer content (body class = broad support) */
  .has-mobile-cta .footer {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }
}
@keyframes mobileCtaUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* ---------- Refined mobile breakpoints ---------- */
@media (max-width: 960px) {
  .access-panel__action .btn {
    width: 100%;
  }
}
@media (max-width: 620px) {
  .container {
    padding: 0 16px;
  }
  .logo__img {
    height: 32px;
  }
  .logo--footer .logo__img {
    height: 34px;
  }
  .review-hero__logo {
    height: 56px;
  }
  .btn {
    min-height: 46px;
  }
  .btn--lg {
    width: 100%;
  }
  .addr-history,
  .firm-card {
    padding: 20px 18px;
  }
  h1 {
    font-size: clamp(1.7rem, 7.5vw, 2.2rem);
  }
}

/* ============================================================
   PREMIUM POLISH — spec grid, pros/cons, gallery, logo frames
   ============================================================ */

/* ---- General info: icon spec grid ---- */
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 36px;
  margin: 0;
}
.spec {
  position: relative;
  padding: 16px 4px 16px 56px;
  border-bottom: 1px solid var(--line-2);
}
.spec__ic {
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--green-050);
  color: var(--green-dark);
  border: 1px solid var(--green-100);
}
.spec__ic svg {
  width: 21px;
  height: 21px;
}
.spec__label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
}
.spec__val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1px 0 0;
  line-height: 1.35;
}
.spec__hl {
  color: var(--green-dark);
  background: var(--green-050);
  padding: 1px 9px;
  border-radius: 7px;
  font-weight: 800;
}

/* ---- Pros / cons refinement ---- */
.proscons__col {
  position: relative;
  overflow: hidden;
}
.proscons__col::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
}
.proscons__col--pro::before {
  background: linear-gradient(90deg, var(--green), var(--green-dark));
}
.proscons__col--con::before {
  background: linear-gradient(90deg, #f0a5a7, #e5484d);
}
.proscons__col h3 {
  display: flex;
  align-items: center;
  gap: 11px;
}
.proscons__badge {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex-shrink: 0;
}
.proscons__badge svg {
  width: 20px;
  height: 20px;
}
.proscons__col--pro .proscons__badge {
  background: var(--green-050);
  color: var(--green-dark);
  border: 1px solid var(--green-100);
}
.proscons__col--con .proscons__badge {
  background: #fdeaea;
  color: #e5484d;
  border: 1px solid #f6d2d3;
}
.proscons__col li {
  padding: 9px 12px 9px 40px;
  border-radius: 10px;
  transition: background 0.15s ease;
}
.proscons__col li:hover {
  background: var(--bg-alt);
}
.proscons__col li::before {
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.72rem;
  line-height: 1;
}
.proscons__col--pro li::before {
  content: "✓";
  color: #fff;
  background: var(--green);
}
.proscons__col--con li::before {
  content: "✕";
  color: #fff;
  background: #e5484d;
}

/* ---- Gallery: minimal + zoom overlay ---- */
.gallery__link {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 16 / 10;
}
.gallery__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 27, 46, 0) 55%, rgba(15, 27, 46, 0.35));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.gallery__item img {
  transition: transform 0.4s ease;
}
.gallery__link:hover img {
  transform: scale(1.05);
}
.gallery__link:hover::after {
  opacity: 1;
}
.gallery__zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(15, 27, 46, 0.18);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.gallery__link:hover .gallery__zoom,
.gallery__link:focus-visible .gallery__zoom {
  opacity: 1;
  transform: translateY(0);
}
.gallery__zoom svg {
  width: 20px;
  height: 20px;
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  background: rgba(9, 16, 28, 0.9);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox__img {
  max-width: min(1000px, 92vw);
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.96);
  transition: transform 0.25s ease;
}
.lightbox.open .lightbox__img {
  transform: scale(1);
}
.lightbox__cap {
  color: #e9eef5;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}
.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.24);
}

/* ---- Logo frames (premium) ---- */
.review-hero__logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15, 27, 46, 0.1);
  flex-shrink: 0;
}
.firm-card__logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-xs);
  margin-bottom: 4px;
}
.firm-card__logo-frame img {
  display: block;
  height: auto;
}

/* ---- Header logo refinement ---- */
.logo {
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.logo:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}
.logo__img {
  height: 40px;
}

/* ---- Responsive ---- */
@media (max-width: 720px) {
  .spec-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 620px) {
  .review-hero__logo-frame {
    padding: 11px 14px;
    border-radius: 13px;
  }
  .review-hero__logo {
    height: 48px;
  }
  .spec__ic {
    width: 36px;
    height: 36px;
  }
  .spec__ic svg {
    width: 19px;
    height: 19px;
  }
  .gallery__zoom {
    opacity: 1;
    transform: none;
    width: 34px;
    height: 34px;
  }
  .gallery__item {
    flex-basis: 80%;
  }
  .gallery__item--wide {
    flex-basis: 80%;
  }
  .lightbox__img {
    max-height: 70vh;
  }
}

/* ==========================================================================
   INNER PAGE SHELL (page-hero) — used by hakkimizda/iletisim/kategori/güncel/karşılaştır
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-hero {
  background: linear-gradient(180deg, var(--green-050), var(--white));
  border-bottom: 1px solid var(--line);
  padding: 44px 0 52px;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 14px 0 16px;
  max-width: 20ch;
}
.page-hero__lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 680px;
}
.page-section {
  padding: 64px 0;
}
.page-section--muted {
  background: var(--bg-alt);
}

/* ---------- Stats (about) ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-xs);
  text-align: center;
}
.stat__num {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 32px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  margin-bottom: 22px;
}
.form-row:last-of-type {
  margin-bottom: 26px;
}
.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-100);
  background: #fff;
}
.form-textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-xs);
}
.contact-card__ic {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--green-050);
  color: var(--green);
}
.contact-card__ic svg {
  width: 22px;
  height: 22px;
}
.contact-card h3 {
  font-size: 1.02rem;
  margin-bottom: 4px;
}
.contact-card p,
.contact-card a {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-card a:hover {
  color: var(--green);
}

/* ---------- Filter bar (category hub) ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.filter-chip {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-chip:hover {
  border-color: var(--green);
  color: var(--green);
}
.filter-chip--active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

/* ---------- Address list (güncel girişler) ---------- */
.address-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.address-row {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr auto auto;
  gap: 22px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.15s;
}
.address-row:hover {
  box-shadow: var(--shadow-sm);
}
.address-row__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.address-row__brand strong {
  display: block;
  line-height: 1.2;
}
.address-row__brand small {
  color: var(--muted);
  font-size: 0.85rem;
}
.address-row__url {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.address-row__url span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.copy-btn {
  flex: none;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--muted);
  display: grid;
  place-items: center;
  padding: 5px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.copy-btn svg {
  width: 17px;
  height: 17px;
}
.copy-btn:hover {
  color: var(--green);
  background: var(--green-050);
}
.copy-btn.is-copied {
  color: var(--green);
}
.address-row__updated {
  color: var(--muted);
  font-size: 0.86rem;
  white-space: nowrap;
}

/* ---------- Compare table (karşılaştır) ---------- */
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.compare-table th,
.compare-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.compare-table thead th {
  background: linear-gradient(180deg, var(--green-050), var(--white));
  border-bottom: 2px solid var(--line);
  vertical-align: top;
  padding-top: 26px;
}
.compare-table thead th:first-child {
  background: var(--bg-alt);
}
.compare-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.compare-col strong {
  font-size: 1.05rem;
}
.compare-table tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg);
  white-space: nowrap;
}
.compare-table tbody td {
  color: var(--ink);
  font-weight: 500;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table .is-best {
  color: var(--green);
  font-weight: 700;
}

/* ---------- Inner-page responsive ---------- */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .address-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .address-row__updated {
    order: 3;
  }
}
@media (max-width: 560px) {
  .form-row--split {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-row--split .form-row {
    margin-bottom: 22px;
  }
  .page-section {
    padding: 48px 0;
  }
}
