/* ═══════════════════════════════════════════════════
   THEME: White + Black + Gold
   Beyaz arka plan, siyah UI, sarı/gold vurgular
   ═══════════════════════════════════════════════════ */

:root {
  --bg: #ffffff;
  --bg-soft: #f8f8f6;
  --panel: #ffffff;
  --panel-2: #f5f5f3;
  --line: #1a1a1a;
  --line-soft: rgba(0, 0, 0, 0.1);
  --gold: #d4a017;
  --gold-bright: #e8b84a;
  --gold-pale: #f5e6c4;
  --text: #0d0d0d;
  --text-secondary: #4a4a4a;
  --muted: #888888;
  --green: #21c765;
  --black: #0d0d0d;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

/* ─── LAYOUT ─── */
.page {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 60px;
}

.header-page {
  padding-bottom: 0;
}

/* ─── TOP NOTE BAR ─── */
.top-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  background: var(--black);
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-bottom: none;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 20px;
}

.coin-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  animation: coinPulse 2s ease-in-out infinite;
}

.coin-dot::after {
  display: none;
}

@keyframes coinPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* ─── HEADER ─── */
.site-header {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 82px;
  border-bottom: 1px solid var(--line-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 214px;
}

.brand-logo {
  filter: brightness(0) saturate(100%);
  width: 214px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 99px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 150px;
  min-height: 46px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  background: var(--black);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}

.header-cta::before {
  display: none;
}

.header-cta::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
  transform: rotate(45deg);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ─── MOBILE MENU ─── */
.mobile-menu-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--black);
  background: transparent;
  cursor: pointer;
}

.mobile-menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform: translate(-50%, -50%);
}

.mobile-menu-toggle span:nth-child(1) {
  top: calc(50% - 6px);
}

.mobile-menu-toggle span:nth-child(3) {
  top: calc(50% + 6px);
}

.site-header.nav-open .mobile-menu-toggle span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-header.nav-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .mobile-menu-toggle span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes mobileMenuReveal {
  from { opacity: 0; transform: translateY(-10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes mobileLinkReveal {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ─── SHARED PANEL STYLE ─── */
.section-panel,
.service-strip,
.stats-strip,
.buy-card,
.offer-section,
.step-card,
.process-detail,
.value-card,
.trust-section,
.areas-section,
.district-showcase article,
.province-panel,
.market-section,
.market-grid article,
.faq-section,
.faq-grid article,
.bottom-cta {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════ */
.hero {
  display: flex;
  align-items: center;
  min-height: clamp(500px, 65vh, 680px);
  padding: 60px 0;
  border-radius: 0;
  border: 0;
  overflow: hidden;
  position: relative;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-zoom 14s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes hero-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.6) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.hero-copy {
  flex: 0 1 640px;
}

.hero h1 {
  max-width: 580px;
  margin: 0;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #ffffff;
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero p {
  max-width: 440px;
  margin: 20px 0 0;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.7;
}

.hero-checks {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  list-style: none;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-checks li::before {
  content: "";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0 4px, transparent 4.5px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-visual {
  flex: 0 0 auto;
}

.payment-badge {
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  border: 3px solid var(--black);
  border-radius: 50%;
  color: var(--black);
  text-align: center;
  background: linear-gradient(135deg, #ffe99c, var(--gold) 72%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.payment-badge span {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.payment-badge strong {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

.payment-badge i {
  width: 24px;
  height: 24px;
  border: 2.5px solid var(--black);
  border-radius: 50%;
  position: relative;
}

.payment-badge i::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 7px;
  height: 11px;
  border-right: 2.5px solid var(--black);
  border-bottom: 2.5px solid var(--black);
  transform: rotate(42deg);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  min-width: 260px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 6px 20px rgba(212, 160, 23, 0.3);
}

.btn-gold:hover {
  box-shadow: 0 10px 30px rgba(212, 160, 23, 0.4);
}

.btn-gold::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.btn-dark {
  min-width: 150px;
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-dark:hover {
  background: #ffffff;
  color: var(--black);
}

.btn-dark::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-42deg);
}

/* ─── SERVICE STRIP ─── */
.service-strip,
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: var(--radius-lg);
}

.service-strip {
  margin-top: 20px;
  padding: 0;
  background: var(--black);
  border-color: var(--black);
}

.service-strip article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 16px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.service-strip article:last-child {
  border-right: 0;
}

.mini-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0;
  line-height: 1;
  flex-shrink: 0;
}

.mini-mark::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: currentColor;
}

.service-strip article:nth-child(2) .mini-mark {
  border-radius: 50%;
}

.service-strip article:nth-child(2) .mini-mark::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.service-strip article:nth-child(3) .mini-mark::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: none;
}

.service-strip article:nth-child(4) .mini-mark::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* ─── STATS STRIP ─── */
.stats-strip {
  margin-top: 20px;
  padding: 10px 0;
  background: var(--panel);
  border-color: var(--line-soft);
}

.stats-strip article {
  min-height: 100px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 13px;
  text-align: center;
  border-right: 1px solid var(--line-soft);
}

.stats-strip article:last-child {
  border-right: 0;
}

.stats-strip span {
  display: none;
}

.stats-strip strong {
  color: var(--black);
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
}

.stats-strip strong::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  margin: 8px auto 0;
  border-radius: 99px;
  background: var(--gold);
}

/* ─── SECTION SPACING ─── */
.devices-section,
.offer-section,
.steps-section,
.process-detail,
.value-section,
.trust-section,
.areas-section,
.market-section,
.faq-section {
  margin-top: 40px;
}

h2 {
  margin: 0 0 28px;
  text-align: center;
  color: var(--black);
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ─── SECTION TITLE ROW ─── */
.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.section-title-row h2 {
  margin: 0;
  text-align: left;
}

.section-title-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 2px solid var(--black);
  border-radius: 999px;
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  background: transparent;
  transition: all var(--transition);
}

.section-title-row a:hover {
  background: var(--black);
  color: #ffffff;
}

/* ─── DEVICE GRID ─── */
.device-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.buy-card {
  display: grid;
  align-content: end;
  min-height: 240px;
  padding: 16px 16px 20px;
  border-color: var(--line-soft);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
  position: relative;
  background: var(--bg-soft);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.buy-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(212, 160, 23, 0.12);
}

.buy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(212, 160, 23, 0.06), transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}

.buy-card:hover::before {
  opacity: 1;
}

.buy-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  margin: 0 auto 14px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
  position: relative;
  transition: transform var(--transition);
}

.buy-card:hover img {
  transform: scale(1.05);
}

.buy-card h3 {
  margin: 0;
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

.buy-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  position: relative;
}

/* ─── OFFER SECTION ─── */
.offer-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(460px, 1fr);
  gap: 40px;
  padding: 44px;
  border-color: var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--black);
}

.offer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 5% 15%, rgba(212, 160, 23, 0.15), transparent 24rem),
    radial-gradient(circle at 95% 85%, rgba(33, 199, 101, 0.08), transparent 18rem);
  pointer-events: none;
}

.offer-copy,
.offer-form {
  position: relative;
}

.offer-copy h2 {
  max-width: 560px;
  margin: 16px 0 14px;
  text-align: left;
  color: #ffffff;
}

.offer-copy h2 span {
  color: var(--gold-bright);
}

.offer-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.75;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(212, 160, 23, 0.08);
  font-size: 12px;
  font-weight: 500;
}

.offer-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.offer-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
}

.offer-points span::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0 3.5px, transparent 4px);
}

.offer-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.offer-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.offer-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 500;
}

.offer-form label > span {
  line-height: 1.2;
}

.offer-form input,
.offer-form select,
.offer-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 0 14px;
  color: #ffffff;
  font: inherit;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.3);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.offer-form select {
  cursor: pointer;
}

.offer-form select option {
  color: var(--black);
  background: #ffffff;
}

.offer-form textarea {
  min-height: 96px;
  padding-top: 12px;
  resize: vertical;
}

.offer-form input:focus,
.offer-form select:focus,
.offer-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}

.offer-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #28d873, #17a753);
  box-shadow: 0 8px 24px rgba(33, 199, 101, 0.25);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition), filter var(--transition);
}

.offer-submit::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.offer-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.offer-submit[disabled] {
  cursor: wait;
  filter: grayscale(0.25);
  opacity: 0.75;
}

.offer-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.6;
}

/* ─── STEPS SECTION ─── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
  align-items: center;
  gap: 8px;
}

.step-card {
  min-height: 180px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  padding: 24px 16px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  background: var(--bg-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 18%, rgba(212, 160, 23, 0.06), transparent 50%);
  pointer-events: none;
}

.step-icon {
  display: none;
}

.step-card strong {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--black);
  background: var(--gold);
  font-size: 15px;
  font-weight: 700;
  position: relative;
}

.step-card h3 {
  margin: 3px 0 0;
  color: var(--black);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  position: relative;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  position: relative;
}

.step-arrow {
  color: var(--gold);
  font-size: 38px;
  line-height: 1;
  text-align: center;
}

/* ─── PROCESS DETAIL ─── */
.process-detail {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  padding: 44px;
  border-color: var(--line-soft);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}

.process-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 5% 15%, rgba(212, 160, 23, 0.08), transparent 20rem);
  pointer-events: none;
}

.process-copy,
.process-timeline {
  position: relative;
}

.process-copy h2 {
  margin: 16px 0 14px;
  text-align: left;
}

.process-copy p {
  max-width: 470px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.75;
}

.process-badges {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.process-badges span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--panel);
  font-size: 13px;
  box-shadow: var(--shadow-sm);
}

.process-badges span::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.12);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.process-timeline article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  min-height: 130px;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.process-timeline article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.process-timeline strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  font-size: 14px;
  font-weight: 700;
}

.process-timeline h3 {
  margin: 0 0 7px;
  color: var(--black);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 600;
}

.process-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

/* ─── VALUE SECTION ─── */
.section-intro {
  display: grid;
  justify-items: center;
  margin-bottom: 22px;
  text-align: center;
}

.section-intro h2 {
  margin-bottom: 12px;
}

.section-intro p {
  max-width: 760px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-card {
  min-height: 180px;
  padding: 28px 24px;
  border-color: var(--line-soft);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card::before,
.market-grid article::before,
.faq-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(212, 160, 23, 0.06), transparent 50%);
  pointer-events: none;
}

.value-card span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--black);
  border-radius: 50%;
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  position: relative;
}

.value-card h3,
.market-grid h3,
.faq-grid h3 {
  margin: 18px 0 8px;
  color: var(--black);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
  position: relative;
}

.value-card p,
.market-grid p,
.faq-grid p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.65;
  position: relative;
}

/* ─── TRUST SECTION ─── */
.trust-section {
  display: grid;
  grid-template-columns: minmax(460px, 1fr) minmax(380px, 0.72fr);
  gap: 40px;
  align-items: center;
  padding: 44px;
  border-color: var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--panel);
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 25%, rgba(212, 160, 23, 0.06), transparent 28rem);
  pointer-events: none;
}

.trust-copy {
  position: relative;
}

.trust-copy h2 {
  max-width: 760px;
  margin-bottom: 16px;
  text-align: left;
}

.trust-copy p {
  max-width: 800px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.75;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.trust-list span {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--bg-soft);
  font-size: 13px;
  font-weight: 500;
}

.trust-list span::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0 3.5px, transparent 4px);
}

.trust-section figure {
  margin: 0;
  height: 320px;
  border: 2px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.trust-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── AREAS SECTION ─── */
.areas-section {
  padding: 44px;
  border-color: var(--line-soft);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background: var(--panel);
}

.areas-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(212, 160, 23, 0.06), transparent 24rem);
  pointer-events: none;
}

.areas-head {
  display: grid;
  justify-items: center;
  text-align: center;
  position: relative;
}

.areas-head span {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  padding: 0 16px;
  border: none;
  border-radius: 999px;
  color: var(--black);
  background: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.areas-head h2 {
  margin: 16px 0 12px;
}

.areas-head p {
  max-width: 810px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.75;
}

.district-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
  position: relative;
}

.district-showcase article {
  min-height: 140px;
  padding: 24px;
  border-color: var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}

.district-showcase h3 {
  margin: 0 0 9px;
  color: var(--black);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 600;
}

.district-showcase p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.province-panel {
  margin-top: 14px;
  padding: 24px;
  border-color: var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  position: relative;
}

.province-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.province-toolbar h3 {
  margin: 0;
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
}

.province-toolbar p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.province-toolbar label {
  display: grid;
  gap: 6px;
  min-width: 240px;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 500;
}

.province-toolbar input {
  width: 100%;
  min-height: 42px;
  border: 2px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  background: var(--panel);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.province-toolbar input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
}

.province-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 8px;
}

.province-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--panel);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  transition: all var(--transition);
}

.province-pill:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.province-pill[hidden] {
  display: none;
}

.province-empty {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

/* ─── MARKET & FAQ ─── */
.market-section,
.faq-section {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.market-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.market-grid article,
.faq-grid article {
  min-height: 170px;
  padding: 24px;
  border-color: var(--line-soft);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.market-grid article:hover,
.faq-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ─── BOTTOM CTA ─── */
.bottom-cta {
  min-height: 160px;
  display: grid;
  grid-template-columns: 1fr auto 220px;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
  padding: 32px 36px;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--black);
}

.bottom-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 50%, rgba(212, 160, 23, 0.2), transparent 18rem);
  pointer-events: none;
}

.bottom-cta h2 {
  margin: 0;
  text-align: left;
  font-size: clamp(26px, 3.5vw, 39px);
  color: #ffffff;
  position: relative;
}

.bottom-cta h2 span {
  color: var(--gold-bright);
}

.bottom-cta p {
  max-width: 735px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.7;
  position: relative;
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  width: 178px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(33, 199, 101, 0.25);
  transition: transform var(--transition);
}

.whatsapp-cta:hover {
  transform: translateY(-2px);
}

.whatsapp-cta::before {
  content: "";
  width: 21px;
  height: 21px;
  margin-right: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.bottom-cta img {
  width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transform: rotate(4deg);
  position: relative;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer {
  margin-top: 24px;
  border-top: 2px solid var(--black);
  background: var(--black);
}

.footer-cta-band {
  width: calc(100% - 80px);
  max-width: 1320px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 0 auto;
  padding: 32px 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(212, 160, 23, 0.12), transparent 50%),
    rgba(255, 255, 255, 0.04);
}

.footer-cta-band h2 {
  max-width: 760px;
  margin: 12px 0 8px;
  text-align: left;
  font-size: clamp(24px, 3vw, 34px);
  color: #ffffff;
}

.footer-cta-band p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.7;
}

.footer-cta-actions {
  display: flex;
  gap: 10px;
}

.footer-inner {
  width: 100%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: minmax(300px, 1.15fr) 0.55fr minmax(260px, 0.75fr) minmax(280px, 0.85fr);
  gap: 34px;
  margin: 0 auto;
  padding: 48px 40px;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-brand img {
  width: 210px;
  height: auto;
  filter: none;
}

.footer-brand p {
  max-width: 430px;
  margin: 0;
}

.footer-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 430px;
}

.footer-mini-stats span {
  min-height: 58px;
  display: grid;
  align-content: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
}

.footer-mini-stats strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.1;
}

.site-footer h2 {
  margin: 0 0 14px;
  text-align: left;
  font-size: 16px;
  color: #ffffff;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.7;
  transition: color var(--transition);
}

.site-footer a:hover {
  color: var(--gold-bright);
}

.site-footer nav {
  display: grid;
  gap: 4px;
}

.footer-column,
.footer-contact {
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.site-footer nav a,
.footer-service-list span {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer nav a::before,
.footer-service-list span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.footer-service-list {
  display: grid;
  gap: 2px;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact h2 {
  margin-bottom: 2px;
}

.footer-contact-line {
  display: grid;
  gap: 4px;
  min-height: 62px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color var(--transition);
}

.footer-contact-line:hover {
  border-color: var(--gold);
}

.footer-contact-line span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
}

.footer-contact-line strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  word-break: break-word;
}

.footer-bottom {
  width: 100%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  padding: 16px 40px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.footer-bottom div {
  display: flex;
  gap: 14px;
}

.footer-bottom a {
  color: var(--gold-bright);
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 6px 20px rgba(33, 199, 101, 0.35);
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* ═══════════════════════════════════════════════════
   PAGE HERO (Inner Pages)
   ═══════════════════════════════════════════════════ */
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 34px;
  align-items: center;
  min-height: 330px;
  margin-top: 24px;
  padding: 44px;
  border: 2px solid var(--black);
  border-radius: var(--radius-lg);
  background: var(--black);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.page-hero h1,
.not-found-section h1,
.admin-content h1 {
  margin: 14px 0 12px;
  color: #ffffff;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.08;
  font-weight: 700;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.75;
}

.page-hero figure {
  height: 250px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── SPLIT, CONTACT, 404 SECTIONS ─── */
.split-section,
.contact-section,
.not-found-section {
  margin-top: 32px;
  padding: 40px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
}

.split-section h2 {
  margin: 16px 0 14px;
  text-align: left;
}

.split-section p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.75;
}

.split-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.split-list span {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--bg-soft);
  font-size: 13px;
  font-weight: 500;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  min-height: 164px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}

.contact-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
}

.contact-card h2 {
  margin: 12px 0 10px;
  text-align: left;
  font-size: 22px;
}

.contact-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 2px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  background: var(--panel);
  outline: none;
  transition: border-color var(--transition);
}

.contact-form textarea {
  min-height: 116px;
  padding-top: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.not-found-section {
  display: grid;
  justify-items: start;
  min-height: 360px;
  align-content: center;
  background: var(--black);
}

.not-found-section p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════ */
.blog-list-section {
  margin-top: 32px;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card a {
  display: grid;
  height: 100%;
}

.blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.blog-card div {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 20px;
}

.blog-card span,
.blog-meta-row span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
}

.blog-card h3 {
  margin: 0;
  color: var(--black);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
}

.blog-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.65;
}

.blog-detail {
  max-width: 1280px;
  margin: 30px auto 0;
}

.blog-detail-head {
  padding: 40px;
  border: 2px solid var(--black);
  border-radius: var(--radius-lg);
  background: var(--black);
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--gold-bright);
  font-size: 12px;
}

.blog-detail h1 {
  margin: 16px 0 12px;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 700;
}

.blog-detail-head p {
  max-width: 920px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.75;
}

.blog-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.blog-meta-row span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.blog-featured-image {
  margin: 18px 0 0;
  height: 390px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  margin-top: 18px;
  padding: 40px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  background: var(--panel);
}

.blog-content p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.85;
}

.blog-content .blog-lead {
  color: var(--text);
  font-size: 17px;
}

.blog-content h3,
.blog-content h4 {
  margin: 28px 0 12px;
  color: var(--black);
  line-height: 1.25;
}

.blog-content h3 {
  font-size: 26px;
}

.blog-content h4 {
  font-size: 20px;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.blog-tags span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--text);
  background: var(--bg-soft);
  font-size: 12px;
  font-weight: 500;
}

.public-empty {
  margin-top: 0;
}

/* ─── CATEGORY DETAIL ─── */
.category-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.52fr);
  gap: 34px;
  align-items: center;
  margin-top: 22px;
  padding: 44px;
  border: 2px solid var(--black);
  border-radius: var(--radius-lg);
  background: var(--black);
  box-shadow: var(--shadow-lg);
}

.category-detail-hero h1 {
  margin: 16px 0 14px;
  color: #ffffff;
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 1.08;
  font-weight: 700;
}

.category-detail-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.75;
}

.category-detail-hero figure {
  height: 310px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.category-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════
   ADMIN PANEL
   ═══════════════════════════════════════════════════ */
.admin-auth-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(420px, 1fr);
  background: var(--bg-soft);
}

.admin-auth-brand {
  display: grid;
  align-content: center;
  padding: 56px;
  border-right: 2px solid var(--black);
  background: var(--black);
}

.admin-auth-brand img {
  width: 230px;
  margin-bottom: 26px;
}

.admin-auth-brand h1 {
  max-width: 620px;
  margin: 16px 0 14px;
  color: #ffffff;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.08;
  font-weight: 700;
}

.admin-auth-brand p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.75;
}

.admin-auth-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 26px;
}

.admin-auth-points span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
}

.admin-auth-content {
  display: grid;
  place-items: center;
  padding: 34px;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  background: var(--bg-soft);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px;
  border-right: 2px solid var(--line-soft);
  background: var(--panel);
}

.admin-logo {
  display: grid;
  gap: 9px;
  min-height: auto;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.admin-logo img {
  width: 174px;
}

.admin-logo span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
}

.admin-sidebar-card {
  padding: 16px;
  border: 1px solid rgba(33, 199, 101, 0.2);
  border-radius: var(--radius);
  background: rgba(33, 199, 101, 0.04);
}

.admin-sidebar-card span {
  color: #17a753;
  font-size: 11px;
  font-weight: 600;
}

.admin-sidebar-card strong {
  display: block;
  margin: 7px 0 5px;
  color: var(--black);
  font-size: 16px;
}

.admin-sidebar-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.admin-sidebar nav {
  display: grid;
  gap: 6px;
}

.admin-sidebar nav a {
  display: grid;
  gap: 3px;
  min-height: 58px;
  align-content: center;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: 13px;
  transition: all var(--transition);
}

.admin-sidebar nav a span {
  color: inherit;
  font-size: 13px;
  font-weight: 600;
}

.admin-sidebar nav a small {
  color: var(--muted);
  font-size: 11px;
}

.admin-sidebar nav a.active,
.admin-sidebar nav a:hover {
  border-color: var(--line-soft);
  color: var(--black);
  background: var(--bg-soft);
}

.admin-sidebar nav a.active small,
.admin-sidebar nav a:hover small {
  color: var(--text-secondary);
}

.admin-content {
  padding: 28px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  margin-bottom: 24px;
  padding: 16px 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.admin-topbar div:first-child {
  display: grid;
  gap: 4px;
}

.admin-kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
}

.admin-topbar strong {
  color: var(--black);
  font-size: 18px;
}

.admin-topbar-actions {
  display: flex;
  gap: 10px;
}

.admin-topbar-actions a,
.admin-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  color: var(--black);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.admin-topbar-actions a:hover,
.admin-action:hover {
  background: var(--black);
  color: #ffffff;
}

.admin-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.admin-head h1 {
  margin-bottom: 8px;
  color: var(--black);
}

.admin-head p {
  max-width: 680px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.65;
}

.admin-card,
.admin-table-wrap {
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.admin-login {
  width: min(100%, 480px);
}

.admin-login form {
  display: grid;
  gap: 14px;
}

.admin-login label {
  display: grid;
  gap: 7px;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 500;
}

.admin-login input {
  min-height: 46px;
  border: 2px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--text);
  font: inherit;
  background: var(--bg-soft);
  outline: none;
  transition: border-color var(--transition);
}

.admin-login input:focus {
  border-color: var(--gold);
}

.admin-login-copy {
  margin: 0 0 18px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.65;
}

.admin-alert {
  padding: 12px 14px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--gold-pale);
  font-size: 13px;
  line-height: 1.6;
}

.admin-success {
  padding: 12px 14px;
  border: 1px solid rgba(33, 199, 101, 0.3);
  border-radius: var(--radius);
  color: #17a753;
  background: rgba(33, 199, 101, 0.06);
  font-size: 13px;
  line-height: 1.6;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.admin-card span {
  color: var(--muted);
  font-size: 12px;
}

.admin-card strong {
  display: block;
  margin-top: 8px;
  color: var(--black);
  font-size: 32px;
}

.admin-card h2 {
  margin: 0 0 10px;
  text-align: left;
  font-size: 20px;
}

.admin-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.7;
}

.metric-card {
  min-height: 148px;
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 18%, rgba(212, 160, 23, 0.08), transparent 10rem);
  pointer-events: none;
}

.metric-card > * {
  position: relative;
}

.metric-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 16px;
}

.admin-status-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.admin-status-list span {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--bg-soft);
  font-size: 12px;
}

.admin-latest-list {
  display: grid;
  gap: 10px;
}

.admin-latest-list a {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--bg-soft);
  transition: border-color var(--transition);
}

.admin-latest-list a:hover {
  border-color: var(--gold);
}

.admin-latest-list strong {
  color: var(--black);
  font-size: 14px;
}

.admin-latest-list small {
  color: var(--muted);
  font-size: 11px;
}

.admin-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(33, 199, 101, 0.24);
  border-radius: 999px;
  color: #17a753;
  background: rgba(33, 199, 101, 0.06);
  font-size: 11px;
  font-weight: 600;
}

.admin-table-wrap {
  padding: 0;
  overflow: hidden;
}

.admin-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.admin-table thead {
  background: var(--bg-soft);
}

.admin-table th,
.admin-table td {
  padding: 15px 14px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text-secondary);
  font-size: 12px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--black);
  font-weight: 600;
}

.admin-table tbody tr {
  transition: background var(--transition);
}

.admin-table tbody tr:hover {
  background: var(--bg-soft);
}

.admin-empty {
  min-height: 280px;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 34px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}

.admin-empty h2 {
  margin: 14px 0 8px;
  text-align: left;
  font-size: 24px;
}

.admin-empty p {
  margin: 0 0 18px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.65;
}

.admin-settings-form {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.admin-form-grid label,
.admin-settings-form label {
  display: grid;
  gap: 7px;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 500;
}

.admin-form-wide {
  grid-column: 1 / -1;
}

.admin-form-grid input,
.admin-form-grid textarea,
.admin-form-grid select {
  width: 100%;
  min-height: 44px;
  border: 2px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  background: var(--bg-soft);
  outline: none;
  transition: border-color var(--transition);
}

.admin-form-grid input:focus,
.admin-form-grid textarea:focus,
.admin-form-grid select:focus {
  border-color: var(--gold);
}

.admin-form-grid textarea {
  min-height: 92px;
  padding-top: 12px;
  resize: vertical;
}

.admin-form-grid input[type="file"] {
  padding: 10px 13px;
}

.admin-seo-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.admin-seo-item {
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}

.admin-seo-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}

.admin-seo-item-head strong {
  color: var(--black);
  font-size: 16px;
}

.admin-seo-item-head code {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--text-secondary);
  background: var(--panel);
  font-size: 12px;
}

.admin-url-chip {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(33, 199, 101, 0.2);
  border-radius: 999px;
  color: #17a753;
  background: rgba(33, 199, 101, 0.06);
  font-size: 12px;
}

.admin-check {
  display: inline-flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px !important;
  color: var(--text);
  white-space: nowrap;
}

.admin-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
}

.admin-danger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 12px;
  padding: 0 14px;
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: var(--radius);
  color: #dc3545;
  background: rgba(220, 53, 69, 0.06);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.admin-danger-button:hover {
  background: #dc3545;
  color: #ffffff;
}

.admin-inline-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-right: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
}

.admin-inline-form {
  display: inline;
}

.admin-inline-form .admin-danger-button {
  margin-top: 0;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

@media (max-width: 1180px) {
  .footer-inner,
  .admin-metrics,
  .admin-dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-auth-layout {
    grid-template-columns: 1fr;
  }

  .admin-auth-brand {
    min-height: auto;
    border-right: 0;
    border-bottom: 2px solid var(--black);
  }
}

@media (max-width: 1040px) {
  .page {
    padding: 0 28px 56px;
  }

  .site-header {
    gap: 18px;
  }

  .brand {
    min-width: 205px;
  }

  .brand-logo {
    width: 196px;
  }

  .nav-links {
    gap: 17px;
  }

  .hero {
    padding: 36px 0;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 28px;
  }

  .hero-copy {
    flex: 0 1 auto;
  }

  .hero h1 {
    max-width: none;
  }

  .hero p {
    max-width: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-checks {
    justify-items: center;
  }

  .hero-visual .payment-badge {
    width: 90px;
    height: 90px;
  }

  .device-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-section {
    grid-template-columns: 1fr;
  }

  .process-detail {
    grid-template-columns: 1fr;
  }

  .trust-section {
    grid-template-columns: 1fr;
  }

  .district-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .market-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bottom-cta {
    grid-template-columns: 1fr auto;
  }

  .bottom-cta img {
    display: none;
  }

  .page-hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .contact-grid,
  .footer-inner,
  .admin-metrics {
    grid-template-columns: 1fr;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    height: auto;
    border-right: 0;
    border-bottom: 2px solid var(--line-soft);
  }

  .admin-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 0;
  }

  .brand {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-logo {
    width: 164px;
    max-width: 100%;
  }

  .header-cta {
    order: 2;
    min-width: 118px;
    min-height: 40px;
    padding: 0 14px;
    gap: 7px;
    font-size: 11px;
  }

  .header-cta::after {
    width: 5px;
    height: 5px;
  }

  .mobile-menu-toggle {
    order: 3;
    display: inline-flex;
    width: 38px;
    height: 38px;
  }

  .nav-links {
    order: 4;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 40;
    flex: none;
    display: none;
    counter-reset: mobileNav;
    justify-content: stretch;
    align-items: stretch;
    gap: 4px;
    margin-top: 0;
    padding: 8px;
    overflow: hidden;
    border: 2px solid var(--black);
    border-radius: var(--radius-lg);
    background: var(--black);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  }

  .nav-links::before {
    display: none;
  }

  .site-header.nav-open .nav-links {
    display: grid;
    margin-top: 0;
    animation: mobileMenuReveal 0.24s ease both;
  }

  .nav-links a {
    counter-increment: mobileNav;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    min-height: 44px;
    padding: 0 32px 0 12px;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    background: transparent;
    opacity: 0;
    transform: translateX(-10px);
  }

  .site-header.nav-open .nav-links a {
    animation: mobileLinkReveal 0.24s ease both;
  }

  .site-header.nav-open .nav-links a:nth-child(1) { animation-delay: 0.03s; }
  .site-header.nav-open .nav-links a:nth-child(2) { animation-delay: 0.06s; }
  .site-header.nav-open .nav-links a:nth-child(3) { animation-delay: 0.09s; }
  .site-header.nav-open .nav-links a:nth-child(4) { animation-delay: 0.12s; }
  .site-header.nav-open .nav-links a:nth-child(5) { animation-delay: 0.15s; }
  .site-header.nav-open .nav-links a:nth-child(6) { animation-delay: 0.18s; }
  .site-header.nav-open .nav-links a:nth-child(7) { animation-delay: 0.21s; }
  .site-header.nav-open .nav-links a:nth-child(8) { animation-delay: 0.24s; }

  .nav-links a::before {
    content: "0" counter(mobileNav);
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
  }

  .nav-links a::after {
    display: block;
    left: auto;
    right: 12px;
    top: 50%;
    bottom: auto;
    width: 7px;
    height: 7px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    border-radius: 0;
    background: none;
    opacity: 0.5;
    transform: translateY(-50%) rotate(45deg);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-links a:hover::before,
  .nav-links a.active::before {
    color: var(--black);
    background: var(--gold);
    border-color: var(--gold);
  }

  .nav-links a:hover::after,
  .nav-links a.active::after {
    opacity: 1;
    transform: translate(3px, -50%) rotate(45deg);
  }

  .service-strip,
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-strip {
    gap: 0;
  }

  .service-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .service-strip article:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .service-strip article:nth-child(n+3) {
    border-bottom: 0;
  }

  .stats-strip article:nth-child(2) {
    border-right: 0;
  }

  .stats-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .device-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .step-arrow {
    display: none;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .province-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .province-toolbar label {
    min-width: 0;
  }

  .bottom-cta {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .page-hero,
  .split-section,
  .contact-section,
  .not-found-section {
    padding: 28px;
  }

  .page-hero figure {
    height: 220px;
  }

  .split-list {
    grid-template-columns: 1fr;
  }

  .footer-cta-band {
    width: calc(100% - 34px);
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .footer-cta-actions,
  .admin-topbar,
  .admin-head {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-inner,
  .admin-metrics {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-topbar-actions {
    flex-wrap: wrap;
  }

  .admin-auth-brand,
  .admin-auth-content {
    padding: 28px 17px;
  }

  .admin-auth-points {
    grid-template-columns: 1fr;
  }

  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-seo-item-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-detail-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page {
    padding: 0 16px 28px;
  }

  .top-note {
    min-height: 36px;
    padding: 0 8px;
    text-align: center;
    font-size: 10px;
  }

  .site-header {
    gap: 8px;
  }

  .brand-logo {
    width: 142px;
  }

  .header-cta {
    min-width: 112px;
    min-height: 38px;
    padding: 0 12px;
  }

  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding: 28px 0 18px;
  }

  .hero-inner {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 13px;
  }

  .hero-checks {
    gap: 9px;
    font-size: 11px;
    line-height: 1.35;
  }

  .hero-actions {
    gap: 10px;
  }

  .btn,
  .btn-gold,
  .btn-dark {
    width: 100%;
    min-width: 0;
  }

  .hero-visual {
    display: none;
  }

  .service-strip,
  .stats-strip,
  .device-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-strip {
    padding: 0;
  }

  .service-strip article {
    justify-content: flex-start;
    min-height: 54px;
    gap: 8px;
    padding: 12px;
    font-size: 11px;
    line-height: 1.25;
  }

  .mini-mark {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
  }

  .mini-mark::before {
    width: 6px;
    height: 6px;
  }

  .stats-strip {
    gap: 0;
    padding: 6px 0;
  }

  .stats-strip article,
  .stats-strip article:nth-child(2) {
    min-height: 76px;
    gap: 2px;
    padding: 10px 6px;
    font-size: 11px;
    border-bottom: 1px solid var(--line-soft);
  }

  .stats-strip article:nth-child(odd) {
    border-right: 1px solid var(--line-soft);
  }

  .stats-strip strong {
    font-size: 24px;
  }

  .stats-strip strong::after {
    width: 22px;
    margin-top: 5px;
  }

  .stats-strip article:nth-child(3),
  .stats-strip article:last-child {
    border-bottom: 0;
  }

  .devices-section,
  .offer-section,
  .steps-section,
  .process-detail,
  .value-section,
  .trust-section,
  .areas-section,
  .market-section,
  .faq-section {
    margin-top: 22px;
  }

  h2 {
    margin-bottom: 16px;
    font-size: 22px;
  }

  .buy-card {
    min-height: 165px;
    padding: 10px 10px 14px;
  }

  .buy-card img {
    height: 85px;
    margin-bottom: 8px;
  }

  .buy-card h3 {
    font-size: 13px;
    line-height: 1.2;
  }

  .buy-card p {
    margin-top: 4px;
    font-size: 10px;
    line-height: 1.25;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .step-card {
    min-height: 156px;
    padding: 16px 10px;
    gap: 5px;
  }

  .step-card strong {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .step-card h3 {
    font-size: 12px;
    line-height: 1.25;
  }

  .step-card p {
    font-size: 10px;
    line-height: 1.35;
  }

  .offer-section {
    padding: 22px 16px;
  }

  .offer-form {
    padding: 16px;
  }

  .offer-form-grid {
    grid-template-columns: 1fr;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .trust-section figure {
    height: 220px;
  }

  .district-showcase,
  .market-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .district-showcase article,
  .market-grid article,
  .faq-grid article {
    min-height: 148px;
    padding: 14px 12px;
  }

  .district-showcase h3,
  .market-grid h3,
  .faq-grid h3 {
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.2;
  }

  .district-showcase p,
  .market-grid p,
  .faq-grid p {
    font-size: 10px;
    line-height: 1.45;
  }

  .market-grid h3,
  .faq-grid h3 {
    margin-top: 0;
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .value-card {
    min-height: 178px;
    padding: 16px 12px;
  }

  .value-card span {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }

  .value-card h3 {
    margin: 12px 0 6px;
    font-size: 13px;
    line-height: 1.2;
  }

  .value-card p {
    font-size: 10px;
    line-height: 1.45;
  }

  .process-detail,
  .trust-section,
  .areas-section,
  .market-section,
  .faq-section {
    padding: 22px 16px;
  }

  .process-timeline article {
    grid-template-columns: 36px 1fr;
    padding: 15px;
  }

  .province-panel {
    padding: 16px;
  }

  .province-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bottom-cta {
    padding: 22px 16px;
  }

  .whatsapp-cta {
    width: 100%;
  }

  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero,
  .split-section,
  .contact-section,
  .not-found-section,
  .admin-content,
  .footer-inner {
    padding: 22px 16px;
  }

  .footer-bottom {
    padding: 14px 16px 24px;
  }

  .page-hero h1,
  .not-found-section h1,
  .admin-content h1 {
    font-size: 30px;
  }

  .footer-cta-band {
    width: calc(100% - 20px);
  }

  .footer-mini-stats,
  .admin-sidebar nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom div,
  .admin-topbar-actions {
    flex-direction: column;
    width: 100%;
  }

  .admin-topbar-actions a,
  .admin-action {
    width: 100%;
  }

  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-detail-head,
  .blog-content {
    padding: 22px 16px;
  }

  .blog-featured-image {
    height: 230px;
  }

  .category-detail-hero {
    padding: 22px 16px;
  }

  .category-detail-hero figure {
    height: 220px;
  }
}

/* ═══════════════════════════════════════════════════
   INLINE EDITOR (Admin)
   ═══════════════════════════════════════════════════ */
.inline-editor-toolbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 18px;
  background: var(--black);
  border-bottom: 2px solid var(--gold);
  color: #ffffff;
  font-size: 12px;
}

.inline-editor-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inline-editor-brand {
  font-weight: 700;
  color: var(--gold);
}

.inline-editor-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.editor-btn {
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: #ffffff;
  background: transparent;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.editor-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.editor-btn-primary {
  border-color: var(--gold);
  color: var(--black);
  background: var(--gold);
}

.editor-btn-primary:hover {
  background: var(--gold-bright);
}

.editor-btn-danger {
  border-color: #dc3545;
  color: #dc3545;
}

.editor-btn-danger:hover {
  background: #dc3545;
  color: #ffffff;
}

.inline-editor-style-panel {
  position: fixed;
  top: 48px;
  right: 0;
  z-index: 9998;
  width: 320px;
  padding: 20px;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 0 var(--radius-lg);
  display: none;
}

.inline-editor-style-panel.active {
  display: block;
}

.inline-editor-style-panel h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 14px;
}

.inline-editor-style-panel label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.inline-editor-style-panel input[type="color"] {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.inline-editor-style-panel select {
  min-height: 32px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  font: inherit;
  font-size: 12px;
}

.inline-editor-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.inline-editor-modal.active {
  display: grid;
}

.inline-editor-modal-content {
  width: min(95vw, 580px);
  max-height: 80vh;
  overflow-y: auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: var(--black);
  color: #ffffff;
}

.inline-editor-modal-content h3 {
  margin: 0 0 16px;
  font-size: 16px;
}

.inline-editor-modal-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.inline-editor-modal-tabs button {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.inline-editor-modal-tabs button.active {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.inline-editor-tab-content {
  display: none;
}

.inline-editor-tab-content.active {
  display: block;
}

.inline-editor-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.inline-editor-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.inline-editor-gallery img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.inline-editor-gallery img:hover {
  border-color: var(--gold);
}

.admin-logged-in .top-note {
  margin-top: 48px;
}
