:root {
  --bg: #f3f6fa;
  --bg-soft: #e8eef6;
  --surface: #ffffff;
  --ink: #122033;
  --ink-soft: #3d4d63;
  --muted: #6b7c90;
  --line: #e3eaf2;
  --dark: #0b2a4a;
  --orange: #f07a1a;
  --violet: #1d4e89;
  --yellow: #f4b942;
  --green: #1f8a4c;
  --white: #ffffff;
  --navy: #0b2a4a;
  --navy-deep: #071e36;
  --blue: #1d4e89;
  --teal: #1d4e89;
  --amber: var(--yellow);
  --coral: var(--orange);
  --steel: #5a6b80;
  --cyan: var(--green);
  --shadow: 0 16px 40px rgba(11, 42, 74, 0.08);
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --header-h: 4.25rem;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --tap: 44px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

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

img, svg, video { max-width: 100%; height: auto; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--dark);
  color: var(--white);
  padding: 0.7rem 1rem;
  font-weight: 600;
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
  top: calc(0.75rem + var(--safe-top));
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.metro-grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(11, 42, 74, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 42, 74, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.site-header, main, .site-footer { position: relative; z-index: 1; }

.site-header.hx-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding:
    calc(0.55rem + var(--safe-top))
    max(1.1rem, var(--safe-right))
    0.55rem
    max(1.1rem, var(--safe-left));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 40;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.hx-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(11, 42, 74, 0.06);
}

.hx-nav .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
  text-transform: none;
  min-height: var(--tap);
}

.hx-nav .brand-mark-icon {
  width: 2.15rem;
  height: 2.15rem;
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  background: transparent;
  border: 0;
  border-radius: 0.55rem;
  overflow: hidden;
  color: var(--orange);
  font-size: 0.95rem;
}

.hx-nav .brand-mark-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hx-nav .brand-x { color: var(--orange); }

.hx-nav .header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  margin-left: auto;
}

.hx-nav .nav {
  display: none;
  flex: 1;
  justify-content: center;
  gap: 0.15rem;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
}

.hx-nav .nav a {
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
}

.hx-nav .nav a:hover,
.hx-nav .nav a:focus-visible {
  color: var(--orange);
  background: rgba(240, 122, 26, 0.08);
}

.hx-nav .nav-user {
  color: var(--muted);
  font-size: 0.82rem;
  display: none;
  align-items: center;
  gap: 0.35rem;
  max-width: 9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hx-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.4rem 0.2rem;
  background: transparent;
  color: var(--navy) !important;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  border: 0;
  transition: color 0.18s ease;
}

.hx-nav-cta:hover {
  background: transparent;
  color: var(--orange) !important;
}

.hx-nav-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.35rem 0.75rem;
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.hx-nav-ghost:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* Telefon: ikon buton — numara yazılmaz */
.hx-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 2.55rem;
  height: 2.55rem;
  padding: 0;
  border: 1px solid rgba(201, 168, 108, 0.45);
  background: rgba(201, 168, 108, 0.12);
  color: #c9a86c;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.hx-call-btn:hover,
.hx-call-btn:focus-visible {
  background: #c9a86c;
  border-color: #c9a86c;
  color: #12161c;
  transform: translateY(-1px);
}

.hx-call-btn i { font-size: 1rem; line-height: 1; }

.hx-call-btn-lg {
  width: auto;
  min-height: 2.7rem;
  height: auto;
  padding: 0.55rem 1.05rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero .hx-call-btn,
.auth-panel .hx-call-btn {
  border-color: rgba(18, 22, 28, 0.2);
  background: #12161c;
  color: #c9a86c;
}

.hero .hx-call-btn:hover,
.auth-panel .hx-call-btn:hover {
  background: #c9a86c;
  border-color: #c9a86c;
  color: #12161c;
}

.hx-nav .menu-toggle {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
}

.hx-nav .menu-toggle-bars span {
  background: var(--navy);
}

.hx-nav .menu-toggle:hover {
  border-color: var(--navy);
  background: var(--bg-soft);
}

@media (min-width: 980px) {
  .hx-nav .nav { display: flex; }
  .hx-nav .nav-user { display: inline-flex; }
  .hx-nav .menu-toggle { display: none; }
}

/* Legacy header bits kept for non-hx pages if any */
.site-header:not(.hx-nav) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
  padding:
    calc(0.65rem + var(--safe-top))
    max(1rem, var(--safe-right))
    0.65rem
    max(1rem, var(--safe-left));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--dark);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 40;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--dark);
  text-transform: uppercase;
  min-height: var(--tap);
}

.brand-mark-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--violet));
  color: var(--white);
  font-size: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.header-dial { display: none; }

.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a {
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: var(--tap);
  transition: color 0.15s ease;
}

.nav a:hover, .link-btn:hover { color: var(--orange); }

.nav-cta {
  background: var(--dark);
  color: var(--white) !important;
  padding: 0.55rem 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-cta:hover { background: var(--orange) !important; }

.nav-user {
  color: var(--muted);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  max-width: 10rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inline-form { display: inline; }
.link-btn {
  background: none;
  border: none;
  color: var(--ink-soft);
  font: inherit;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: var(--tap);
}

.menu-toggle {
  display: none;
  width: var(--tap);
  height: var(--tap);
  border: 2px solid var(--dark);
  background: var(--white);
  cursor: pointer;
  place-items: center;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
  background: var(--dark);
}

.menu-toggle-bars {
  width: 1.15rem;
  height: 0.85rem;
  display: grid;
  align-content: space-between;
}

.menu-toggle-bars span {
  display: block;
  height: 2px;
  background: var(--dark);
  transition: transform 0.25s var(--ease-out), opacity 0.2s ease, background 0.15s ease;
}

.menu-toggle:hover .menu-toggle-bars span,
.menu-toggle[aria-expanded="true"] .menu-toggle-bars span {
  background: var(--white);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(1) {
  transform: translateY(0.35rem) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(3) {
  transform: translateY(-0.35rem) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(20, 22, 26, 0.48);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease-out);
}

body.nav-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: min(22rem, 100vw);
  height: 100dvh;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding:
    calc(0.85rem + var(--safe-top))
    max(1rem, var(--safe-right))
    calc(1rem + var(--safe-bottom))
    1rem;
  background:
    linear-gradient(165deg, #ffffff 0%, #f7f7f8 55%, #fff7f0 100%);
  border-left: 3px solid var(--dark);
  box-shadow: -18px 0 40px rgba(20, 22, 26, 0.22);
  transform: translateX(104%);
  transition: transform 0.32s var(--ease-out);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

body.nav-open .mobile-drawer {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.drawer-kicker {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
}

.drawer-top h2 {
  margin: 0.15rem 0 0;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--dark);
}

.drawer-close {
  width: var(--tap);
  height: var(--tap);
  border: 2px solid var(--dark);
  background: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.1rem;
}

.drawer-close:hover {
  background: var(--dark);
  color: var(--white);
}

.drawer-dial {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  padding: 0.85rem 0.9rem;
  background: linear-gradient(120deg, #1f2933 0%, #3d2a5c 60%, #c45c26 140%);
  color: #fff;
  border: 1px solid #111;
  min-height: 4.2rem;
}

.drawer-dial-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.12);
  color: var(--yellow);
  font-size: 1.2rem;
}

.drawer-dial strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
}

.drawer-dial em {
  display: block;
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
}

.drawer-nav {
  display: grid;
  gap: 0.35rem;
  flex: 1;
}

.drawer-section-label {
  margin: 0.85rem 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.drawer-link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  min-height: 3.35rem;
  padding: 0.7rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid transparent;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.drawer-link > i {
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  background: #fff4e8;
  color: var(--orange);
  font-size: 1rem;
}

.drawer-link strong {
  display: block;
  font-size: 0.98rem;
  color: var(--dark);
}

.drawer-link small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 0.1rem;
}

.drawer-link:hover,
.drawer-link:focus-visible {
  border-left-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateX(2px);
  outline: none;
}

.drawer-link.as-button {
  width: 100%;
  text-align: left;
  font: inherit;
  cursor: pointer;
  color: inherit;
}

.drawer-user {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem;
  background: #f4e8f8;
  border: 1px solid #e5c7f0;
  color: var(--dark);
  font-weight: 600;
}

.drawer-logout { margin: 0; }

.drawer-foot {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

.drawer-foot a { text-decoration: underline; text-underline-offset: 2px; }


.hero {
  position: relative;
  min-height: auto;
  display: grid;
  place-items: start stretch;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.96) 0%, rgba(244,244,245,0.92) 50%, rgba(155,61,181,0.08) 100%),
    repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(47,51,56,0.03) 12px, rgba(47,51,56,0.03) 13px);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 62%, rgba(232, 106, 18, 0.12) 62%, rgba(232, 106, 18, 0.12) 66%, transparent 66%),
    linear-gradient(to bottom, transparent 70%, rgba(239, 194, 0, 0.14) 70%, rgba(239, 194, 0, 0.14) 74%, transparent 74%);
  animation: metroSlide 14s linear infinite;
}

@keyframes metroSlide {
  from { background-position: 0 0, 0 0; }
  to { background-position: 40px 0, 0 40px; }
}

.hero-content {
  position: relative;
  padding: clamp(1.25rem, 3vw, 2.25rem) clamp(1.25rem, 4vw, 3rem) clamp(1.75rem, 4vw, 3rem);
  max-width: 1100px;
  animation: riseIn 0.7s ease both;
}

.hero-wish-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.95fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.hx-wish-hint { color: var(--ink-soft); max-width: 32rem; }

.hx-wish-reveal[hidden] { display: none !important; }
.hx-wish-reveal:not([hidden]) {
  animation: riseIn 0.75s var(--ease-out) both;
}
.hx-wish-slogan {
  margin: 0 0 0.55rem;
}

.hx-lamp {
  position: relative;
  min-height: 22rem;
  display: grid;
  place-items: center;
  user-select: none;
  touch-action: none;
}

.hx-lamp-cue {
  position: absolute;
  top: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  margin: 0;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(18, 22, 28, 0.88);
  color: #f3e6c4;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.hx-lamp.is-granted .hx-lamp-cue { opacity: 0; }

.hx-lamp-progress {
  position: absolute;
  top: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(12rem, 70%);
  height: 4px;
  border-radius: 999px;
  background: rgba(18, 22, 28, 0.12);
  overflow: hidden;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.hx-lamp.is-rubbing .hx-lamp-progress { opacity: 1; }
.hx-lamp-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #c9a86c, #e86a12);
  transition: width 0.08s linear;
}

.hx-lamp-hit {
  position: relative;
  z-index: 3;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: grab;
  width: min(100%, 17rem);
}
.hx-lamp-hit:active { cursor: grabbing; }
.hx-lamp-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(138, 106, 46, 0.28));
  transition: transform 0.2s var(--ease-out);
}
.hx-lamp.is-rubbing .hx-lamp-svg {
  animation: lampShake 0.28s ease-in-out infinite;
}
@keyframes lampShake {
  0%, 100% { transform: rotate(-1.5deg) translateY(0); }
  50% { transform: rotate(1.8deg) translateY(-2px); }
}

.hx-lamp-spark {
  position: absolute;
  inset: 18% 22% auto;
  height: 2.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 236, 170, 0.85), transparent 70%);
  opacity: 0;
  pointer-events: none;
}
.hx-lamp.is-rubbing .hx-lamp-spark {
  opacity: 1;
  animation: sparkPulse 0.6s ease-in-out infinite;
}
@keyframes sparkPulse {
  0%, 100% { transform: scale(0.85); opacity: 0.55; }
  50% { transform: scale(1.25); opacity: 1; }
}

.hx-lamp-smoke {
  position: absolute;
  left: 50%;
  bottom: 42%;
  width: 8rem;
  height: 10rem;
  transform: translateX(-42%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}
.hx-lamp.is-rubbing .hx-lamp-smoke,
.hx-lamp.is-granted .hx-lamp-smoke { opacity: 1; }
.hx-lamp-smoke::before,
.hx-lamp-smoke::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 40% 80%, rgba(201, 168, 108, 0.45), transparent 42%),
    radial-gradient(circle at 60% 55%, rgba(232, 106, 18, 0.28), transparent 48%),
    radial-gradient(circle at 50% 30%, rgba(155, 61, 181, 0.22), transparent 50%);
  filter: blur(8px);
  animation: smokeRise 2.4s ease-out infinite;
}
.hx-lamp-smoke::after {
  animation-delay: 0.7s;
  opacity: 0.7;
  transform: scaleX(-1);
}
@keyframes smokeRise {
  0% { transform: translateY(20px) scale(0.7); opacity: 0.15; }
  50% { opacity: 0.85; }
  100% { transform: translateY(-50px) scale(1.2); opacity: 0; }
}

.hx-genie {
  position: absolute;
  left: 50%;
  bottom: 48%;
  transform: translate(-50%, 24px) scale(0.6);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.7s var(--ease-out);
}
.hx-lamp.is-granted .hx-genie {
  opacity: 1;
  transform: translate(-50%, -8px) scale(1);
}
.hx-genie-aura {
  position: absolute;
  inset: -1.2rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 108, 0.45), transparent 68%);
  filter: blur(4px);
}
.hx-genie-body {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.25rem;
}
.hx-genie-face {
  font-size: 3.4rem;
  line-height: 1;
  filter: drop-shadow(0 8px 16px rgba(18, 22, 28, 0.25));
  animation: genieFloat 2.8s ease-in-out infinite;
}
@keyframes genieFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hx-genie-say {
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: #12161c;
  color: #f3e6c4;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hx-sector-burst {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.hx-sector-burst:not([hidden]) { pointer-events: auto; }
.hx-sector-chip {
  position: absolute;
  left: 50%;
  top: 42%;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 108, 0.45);
  background: rgba(255, 255, 255, 0.94);
  color: #1c1f24;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(18, 22, 28, 0.12);
  opacity: 0;
  transform: translate(-50%, 0) scale(0.6);
  white-space: nowrap;
}
.hx-lamp.is-granted .hx-sector-chip {
  animation: sectorPop 0.7s var(--ease-out) calc(var(--i) * 0.07s) forwards;
}
.hx-sector-chip:nth-child(1) { --dx: -7.5rem; --dy: -6.2rem; }
.hx-sector-chip:nth-child(2) { --dx: 7.2rem; --dy: -5.8rem; }
.hx-sector-chip:nth-child(3) { --dx: -9.2rem; --dy: -2.2rem; }
.hx-sector-chip:nth-child(4) { --dx: 9.4rem; --dy: -1.8rem; }
.hx-sector-chip:nth-child(5) { --dx: -8.4rem; --dy: 1.8rem; }
.hx-sector-chip:nth-child(6) { --dx: 8.6rem; --dy: 2.2rem; }
.hx-sector-chip:nth-child(7) { --dx: -4.2rem; --dy: -8.2rem; }
.hx-sector-chip:nth-child(8) { --dx: 4.4rem; --dy: -8rem; }
@keyframes sectorPop {
  to {
    opacity: 1;
    transform: translate(calc(-50% + var(--dx)), var(--dy)) scale(1);
  }
}
.hx-sector-chip:hover {
  border-color: #e86a12;
  color: #e86a12;
}

@media (max-width: 900px) {
  .hero-wish-grid {
    grid-template-columns: 1fr;
  }
  .hx-lamp { min-height: 20rem; order: -1; }
  .hx-sector-chip { font-size: 0.74rem; padding: 0.35rem 0.6rem; }
  .hx-sector-chip:nth-child(1) { --dx: -5.2rem; --dy: -5.4rem; }
  .hx-sector-chip:nth-child(2) { --dx: 5rem; --dy: -5rem; }
  .hx-sector-chip:nth-child(3) { --dx: -6.4rem; --dy: -1.6rem; }
  .hx-sector-chip:nth-child(4) { --dx: 6.6rem; --dy: -1.2rem; }
  .hx-sector-chip:nth-child(5) { --dx: -5.8rem; --dy: 1.6rem; }
  .hx-sector-chip:nth-child(6) { --dx: 6rem; --dy: 2rem; }
  .hx-sector-chip:nth-child(7) { --dx: -2.8rem; --dy: -7rem; }
  .hx-sector-chip:nth-child(8) { --dx: 3rem; --dy: -6.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hx-lamp.is-rubbing .hx-lamp-svg,
  .hx-genie-face,
  .hx-lamp-smoke::before,
  .hx-lamp-smoke::after { animation: none !important; }
  .hx-lamp.is-granted .hx-sector-chip {
    animation: none;
    opacity: 1;
    transform: translate(-50%, calc(var(--i) * 2.1rem - 7rem)) scale(1);
  }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.7rem;
  padding: 0.35rem 0.7rem;
  background: var(--white);
  border-left: 4px solid var(--orange);
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 6rem);
  line-height: 0.92;
  margin: 0 0 0.7rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.brand-mark.compact {
  font-size: 2.2rem;
  margin-bottom: 0.35rem;
}

.hero h1, .page-band h1, .auth-panel h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 0.75rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.hero h1 em {
  font-style: normal;
  color: var(--violet);
}

.lede {
  max-width: 38rem;
  color: var(--ink-soft);
  font-weight: 400;
  font-size: 1.02rem;
  margin: 0 0 1.4rem;
}

.lede.tight { margin-bottom: 1rem; }

.hero-search {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr auto;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  padding: 0.55rem;
  background: var(--white);
  border: 2px solid var(--dark);
  box-shadow: var(--shadow);
}

.search-field {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 0.55rem;
  color: var(--muted);
}

.hero-search input,
.auth-form input,
.auth-form textarea,
.auth-form select,
.filter-form input,
.filter-form select {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.85rem 0.9rem;
  font: inherit;
  outline: none;
}

.hero-search input {
  border: none;
  padding-left: 0;
  background: transparent;
}

.hero-search input:focus,
.auth-form input:focus,
.auth-form textarea:focus,
.auth-form select:focus,
.filter-form input:focus,
.filter-form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 106, 18, 0.14);
}

.hero-search button,
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0.9rem 1.2rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: background 0.15s ease, transform 0.15s ease;
}

.hero-search button:hover,
.btn-primary:hover {
  background: var(--violet);
  transform: translateY(-1px);
}

.btn-primary.full { width: 100%; }

.hero-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }

.btn-ghost {
  border: 2px solid var(--dark);
  padding: 0.8rem 1.1rem;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-ghost:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
}

.section {
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.1rem, 4vw, 3rem);
}

.section-head { max-width: 42rem; margin-bottom: 1.5rem; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  margin: 0 0 0.4rem;
  color: var(--dark);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.section-head p { margin: 0; color: var(--muted); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.75rem;
}

.category-tile {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 160px;
  padding: 1.15rem;
  color: #fff;
  transition: transform 0.18s ease, filter 0.18s ease;
  box-shadow: var(--shadow);
}

.category-tile:hover {
  transform: translateY(-4px) scale(1.01);
  filter: brightness(1.05);
}

.cat-icon {
  font-size: 1.65rem;
  margin-bottom: 0.35rem;
  opacity: 0.95;
}

.cat-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cat-desc { font-size: 0.86rem; opacity: 0.9; }

.tile-orange { background: var(--orange); }
.tile-violet { background: var(--violet); }
.tile-yellow { background: var(--yellow); color: var(--dark); }
.tile-green { background: var(--green); }
.tile-dark { background: var(--dark); }
.tile-steel { background: var(--steel); }
.tile-orange-deep { background: #d45c0a; }
.tile-violet-deep { background: #7d2f96; }

.tile-blue { background: var(--orange); }
.tile-teal { background: var(--violet); }
.tile-amber { background: var(--yellow); color: var(--dark); }
.tile-coral { background: #d45c0a; }
.tile-navy { background: var(--dark); }
.tile-cyan { background: var(--green); }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.steps li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: var(--shadow);
  animation: riseIn 0.65s ease both;
}

.steps li:nth-child(2) { border-top-color: var(--violet); animation-delay: 0.08s; }
.steps li:nth-child(3) { border-top-color: var(--green); animation-delay: 0.16s; }

.step-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--dark);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.steps strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--dark);
}

.steps span { color: var(--muted); }

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.6rem clamp(1.1rem, 4vw, 3rem) 1.8rem;
  background: #fff;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.site-footer .brand-x { color: var(--orange); }

.site-footer p {
  margin: 0;
  max-width: 36rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 0.9rem;
  text-align: right;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.footer-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.auth-shell {
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem 3.5rem;
}

.auth-panel {
  width: min(460px, 100%);
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  box-shadow: var(--shadow);
}

.auth-panel.wide { width: min(740px, 100%); }

.social-stack { display: grid; gap: 0.65rem; margin-bottom: 1.1rem; }

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-align: center;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font: inherit;
  color: var(--ink);
  font-weight: 500;
}

.social-btn.google:hover { border-color: var(--orange); color: var(--orange); }
.social-btn.apple:hover { border-color: var(--violet); color: var(--violet); }

.divider {
  display: grid;
  place-items: center;
  margin: 1rem 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.divider::before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--line);
  grid-row: 1;
  grid-column: 1;
}

.divider span {
  grid-row: 1;
  grid-column: 1;
  background: #fff;
  padding: 0 0.7rem;
}

.auth-form { display: grid; gap: 0.85rem; }
.auth-form label { display: grid; gap: 0.35rem; font-size: 0.88rem; color: var(--ink-soft); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.check { display: flex !important; align-items: center; gap: 0.55rem; grid-template-columns: unset !important; }
.auth-switch { margin-top: 0.9rem; color: var(--muted); }
.auth-switch a { color: var(--violet); font-weight: 600; text-decoration: underline; }
.form-error { color: var(--orange); }
.field-error {
  display: block;
  color: var(--orange);
  font-size: 0.82rem;
  margin: -0.35rem 0 0.15rem;
}

.legal-consents {
  margin: 0.35rem 0 0.15rem;
  padding: 0.95rem 1rem 1rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  background: #fff;
  display: grid;
  gap: 0.7rem;
}

.legal-consents legend {
  padding: 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--dark);
}

.legal-consents-note {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.legal-check {
  align-items: flex-start !important;
  line-height: 1.45;
}

.legal-check input {
  margin-top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  accent-color: var(--orange);
}

.legal-check a {
  color: var(--violet);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-check .req { color: var(--orange); font-weight: 700; }

.legal-check.optional em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.82rem;
}

.legal-doc {
  max-width: 820px;
}

.legal-doc h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 1.6rem 0 0.55rem;
  color: var(--dark);
}

.legal-doc ul {
  margin: 0.4rem 0 0.8rem;
  padding-left: 1.2rem;
}

.legal-doc li { margin-bottom: 0.35rem; }

.legal-meta {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 0 0 1rem;
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.panel-stats > div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  padding: 0.9rem 1rem;
}
.panel-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.panel-stats span { color: var(--muted); font-size: 0.84rem; }
.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .panel-grid { grid-template-columns: 1fr; }
}

.page-band {
  padding: 2.2rem clamp(1.1rem, 4vw, 3rem) 0.8rem;
  background: linear-gradient(180deg, #fff, transparent);
  border-bottom: 1px solid var(--line);
}

.page-band-inner {
  max-width: 1100px;
}

.search-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
  align-items: center;
}

.result-list { display: grid; gap: 0.65rem; }

.result-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.05rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow);
}

.result-row h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--dark);
}

.result-row p { margin: 0; color: var(--muted); }

.toast {
  margin: 1rem clamp(1.1rem, 4vw, 3rem) 0;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow);
}

.toast-ok { border-left: 4px solid var(--green); color: #1f5a35; }
.toast-err { border-left: 4px solid var(--orange); color: #8a3a28; }
.muted { color: var(--muted); }

.firm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .firm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .firm-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .firm-grid.firm-grid-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
    gap: 0.55rem;
  }

  .firm-grid.firm-grid-10 .firm-card {
    padding: 0.7rem 0.55rem;
  }

  .firm-grid.firm-grid-10 .firm-card h3 {
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .firm-grid.firm-grid-10 .firm-address,
  .firm-grid.firm-grid-10 .firm-bio,
  .firm-grid.firm-grid-10 .firm-tags,
  .firm-grid.firm-grid-10 .stars-meta {
    font-size: 0.72rem;
  }

  .firm-grid.firm-grid-10 .firm-actions {
    gap: 0.25rem;
  }

  .firm-grid.firm-grid-10 .firm-act {
    padding: 0.3rem 0.25rem;
  }

  .firm-grid.firm-grid-10 .firm-act span,
  .firm-grid.firm-grid-10 .firm-act-call span {
    display: none;
  }
}

@media (min-width: 640px) and (max-width: 1099px) {
  .firm-grid.firm-grid-10 {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.85rem;
}

.firm-card,
.blog-card,
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.firm-card { border-top: 4px solid var(--orange); }
.blog-card { border-top: 4px solid var(--violet); }
.review-card { border-left: 4px solid var(--green); }
.review-card.alt { border-left-color: var(--yellow); }

.firm-card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: start;
}

.firm-card h3,
.blog-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--dark);
}

.firm-rating,
.firm-address,
.firm-phone,
.firm-bio {
  margin: 0.25rem 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.star-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0.35rem 0 0.55rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.star-row {
  display: inline-flex;
  gap: 0.12rem;
}

.star-slot {
  position: relative;
  display: inline-block;
  width: 1.05rem;
  height: 1.05rem;
  line-height: 1;
}

.star-slot .star-base,
.star-slot .star-on {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.05rem;
  line-height: 1;
}

.star-slot .star-base { color: #d7dbe2; }
.star-slot .star-on { color: #d4a017; }
.star-clip {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  overflow: hidden;
}

.star-score {
  font-weight: 700;
  color: var(--dark);
  font-variant-numeric: tabular-nums;
}

.star-count,
.star-extra {
  color: var(--muted);
  font-size: 0.85rem;
}

.firm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(47, 51, 56, 0.08);
}

.firm-act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.35rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.22s var(--ease-out),
    color 0.22s var(--ease-out),
    border-color 0.22s var(--ease-out),
    transform 0.22s var(--ease-out);
}

.firm-act i {
  font-size: 0.95rem;
  line-height: 1;
}

.firm-act:hover {
  transform: translateY(-1px);
}

.firm-act-detail {
  border-color: rgba(47, 51, 56, 0.18);
  background: #161a20;
  color: #f3efe6;
}

.firm-act-detail:hover {
  background: #1f2630;
  color: #fff;
  border-color: #1f2630;
}

.firm-act-call {
  border-color: rgba(232, 106, 18, 0.35);
  background: linear-gradient(180deg, #fff 0%, #fff7f0 100%);
  color: #c45c26;
}

.firm-act-call:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.firm-act-wa {
  border-color: rgba(47, 158, 74, 0.35);
  background: linear-gradient(180deg, #fff 0%, #f1faf4 100%);
  color: #1f7a38;
}

.firm-act-wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

@media (min-width: 1100px) {
  .firm-grid .firm-card {
    padding: 0.9rem;
  }

  .firm-grid .firm-card h3 {
    font-size: 1.05rem;
  }

  .firm-actions {
    gap: 0.35rem;
  }

  .firm-act {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.4rem 0.35rem;
  }

  .firm-act span {
    display: none;
  }

  .firm-act-call {
    flex: 1.35 1 auto;
  }

  .firm-act-call span {
    display: inline;
    font-size: 0.62rem;
    letter-spacing: 0.02em;
  }
}

.firm-phone.santral-phone {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.55rem;
  margin-top: 0.55rem;
  padding: 0.45rem 0.6rem;
  background: #eef8f1;
  border: 1px solid #b7dfc4;
  color: var(--dark);
  font-weight: 600;
}

.firm-phone.santral-phone a {
  color: var(--green);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.firm-phone.santral-phone small {
  font-weight: 500;
  color: var(--ink-soft);
}

.santral-dial-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 0.85rem;
  align-items: center;
  margin: 1rem 0 1.25rem;
  padding: 0.9rem 1.1rem;
  background: linear-gradient(120deg, #1f2933 0%, #3d2a5c 55%, #c45c26 140%);
  color: #fff;
  border: 1px solid #111;
}

.santral-dial-banner > i {
  grid-row: span 2;
  font-size: 1.75rem;
  color: var(--yellow);
}

.santral-dial-banner strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
}

.santral-dial-banner .dial-number {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.santral-dial-banner .dial-hint {
  grid-column: 2;
  font-size: 0.82rem;
  opacity: 0.85;
}

@media (max-width: 640px) {
  .santral-dial-banner {
    grid-template-columns: auto 1fr;
  }
}

.firm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.7rem;
}

.firm-tags span {
  background: #fff4e8;
  color: var(--orange);
  border: 1px solid #f2c9a4;
  padding: 0.15rem 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-label {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.15rem 0.45rem;
  background: #f4e8f8;
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: none;
}

.blog-grid-lux {
  gap: 1.1rem;
}

.blog-card-lux {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-top: 1px solid rgba(201, 168, 108, 0.45);
  background:
    linear-gradient(165deg, #ffffff 0%, #f7f5f1 100%);
  box-shadow: 0 14px 36px rgba(18, 22, 28, 0.07);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.blog-card-lux:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(18, 22, 28, 0.11);
}

.blog-card-lux .blog-label {
  background: transparent;
  border: 1px solid rgba(201, 168, 108, 0.55);
  color: #8a7340;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.blog-card-lux h2,
.blog-card-lux h3 {
  font-family: "Cormorant Garamond", var(--font-display), serif;
  font-size: 1.55rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #161a20;
}

.blog-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(22, 26, 32, 0.08);
}

.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #161a20;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out), gap 0.25s var(--ease-out);
}

.blog-read i {
  font-size: 0.95rem;
  color: #b08d4a;
  transition: transform 0.25s var(--ease-out);
}

.blog-read:hover {
  color: #8a7340;
  border-bottom-color: rgba(176, 141, 74, 0.55);
  gap: 0.65rem;
}

.blog-read:hover i {
  transform: translateX(3px);
}

.blog-read-solid {
  padding: 0.7rem 1.05rem;
  background: #161a20;
  color: #f3efe6;
  border-bottom: none;
}

.blog-read-solid i { color: #c9a86c; }

.blog-read-solid:hover {
  color: #fff;
  border-bottom-color: transparent;
  background: #1f2630;
}

.blog-band {
  background:
    radial-gradient(ellipse 80% 70% at 10% 0%, rgba(201, 168, 108, 0.18), transparent 55%),
    linear-gradient(135deg, #12161c 0%, #1a2028 55%, #242b36 100%);
  color: #f3efe6;
  border-bottom: 1px solid rgba(201, 168, 108, 0.22);
}

.blog-band h1 {
  font-family: "Cormorant Garamond", var(--font-display), serif;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.blog-band .lede,
.blog-band .lede a {
  color: #c5cdd8;
}

.blog-kicker {
  margin: 0 0 0.45rem;
  color: #c9a86c;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #c5cdd8;
  font-size: 0.9rem;
}

.blog-back:hover { color: #fff; }

.blog-detail-intro h1 {
  max-width: 22ch;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
}

.blog-detail-summary {
  max-width: 40rem;
  margin: 0.85rem 0 1.1rem;
  color: #c5cdd8;
  font-size: 1.05rem;
  line-height: 1.6;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  color: #9aa3b0;
  font-size: 0.88rem;
}

.blog-detail-meta i { color: #c9a86c; margin-right: 0.25rem; }

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.blog-tag {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(201, 168, 108, 0.35);
  color: #c9a86c;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.blog-detail-body {
  max-width: 46rem;
}

.blog-prose {
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(1.25rem, 3vw, 2.1rem);
  box-shadow: 0 16px 40px rgba(18, 22, 28, 0.06);
}

.blog-prose p {
  margin: 0 0 1.05rem;
  color: #2f3338;
  font-size: 1.05rem;
  line-height: 1.75;
}

.blog-prose p:last-child { margin-bottom: 0; }

.blog-detail-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1.75rem;
  padding: 1.35rem 1.4rem;
  background: linear-gradient(145deg, #161a20, #222933);
  color: #f3efe6;
  border: 1px solid rgba(201, 168, 108, 0.25);
}

.blog-detail-cta h2 {
  margin: 0.2rem 0 0.35rem;
  font-family: "Cormorant Garamond", var(--font-display), serif;
  font-size: 1.7rem;
  font-weight: 600;
  text-transform: none;
}

.blog-detail-cta p { margin: 0; color: #c5cdd8; }

.blog-detail-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.blog-detail-cta .blog-read:not(.blog-read-solid) {
  color: #f3efe6;
}

.blog-card p,
.review-card p {
  margin: 0.35rem 0 0.6rem;
  color: var(--ink-soft);
}

.blog-card small,
.review-card small {
  color: var(--muted);
  font-size: 0.8rem;
}

.review-list { display: grid; gap: 0.7rem; }

.review-head {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.review-head strong { color: var(--dark); }
.review-head span { color: var(--orange); font-weight: 700; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.band-soft {
  background: linear-gradient(180deg, #fff, #f7f7f8 40%, #fff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-cta { margin-top: 1.2rem; }

@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; }
}

.filter-mode {
  display: inline-flex;
  gap: 0.3rem;
  padding: 0.25rem;
  margin: 0 0 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
}

.mode-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  padding: 0.5rem 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.mode-btn.active {
  background: var(--dark);
  color: var(--white);
}

.filter-form {
  display: grid;
  gap: 0.9rem;
  max-width: 980px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.filter-basic,
.filter-advanced {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.filter-advanced {
  display: none;
  padding: 0.85rem;
  border: 1px dashed var(--violet);
  background: #f8effb;
}

.filter-advanced.is-open { display: grid; }

.filter-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.84rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.filter-check {
  align-self: end;
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  grid-template-columns: unset !important;
  padding-bottom: 0.7rem;
}

.filter-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  background: #fff4e8;
  color: var(--orange);
  border: 1px solid #f2c9a4;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-featured {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.1rem 0.45rem;
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 700;
  vertical-align: middle;
  color: var(--dark);
  background: var(--yellow);
  text-transform: uppercase;
}

.badge-sponsored {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.18rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(120deg, var(--orange), var(--violet));
}

.firm-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

.firm-card.sponsored {
  border-top-color: var(--violet);
  background:
    linear-gradient(180deg, rgba(155, 61, 181, 0.08), transparent 42%),
    var(--white);
  box-shadow: 0 12px 30px rgba(155, 61, 181, 0.12);
}

.sponsored-section {
  background: linear-gradient(180deg, #fff8f1, #fff);
  border-top: 1px solid #f2d4b8;
  border-bottom: 1px solid #f2d4b8;
}

.doping-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.9rem;
}

.doping-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border-top: 5px solid var(--orange);
}

.doping-card.tier-growth { border-top-color: var(--violet); }
.doping-card.tier-pro { border-top-color: var(--yellow); }
.doping-card.tier-elite { border-top-color: var(--green); }

.doping-card h3 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.45rem;
  color: var(--dark);
}

.doping-badge {
  align-self: flex-start;
  background: var(--dark);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  text-transform: uppercase;
}

.doping-price {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange);
}

.doping-price small {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.doping-features {
  list-style: none;
  margin: 0 0 0.6rem;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.doping-features i { color: var(--violet); margin-right: 0.25rem; }

.doping-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.doping-summary div {
  background: #fff8f1;
  border: 1px solid #f2d4b8;
  padding: 0.75rem;
  display: grid;
  gap: 0.25rem;
}

.revenue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.revenue-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.revenue-card span { color: var(--muted); font-size: 0.85rem; display: block; }
.revenue-card strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--dark);
}

.active-doping {
  background: linear-gradient(120deg, rgba(155,61,181,0.08), rgba(232,106,18,0.08));
  border: 1px solid #e5c7f0;
  padding: 1rem 1.1rem;
}

.footer-meta a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer .hx-call-btn-lg {
  margin-top: 0.85rem;
}

/* ========== Responsive: tablet ========== */
@media (max-width: 1100px) {
  .header-dial { display: inline-flex; }
  .header-dial-text { display: none; }
}

@media (max-width: 980px) {
  .hx-nav .nav-desktop { display: none !important; }
  .nav-desktop { display: none; }
  .menu-toggle { display: grid; }
  .header-dial {
    display: inline-flex;
  }
  .header-dial-text {
    display: none;
  }

  .hero {
    min-height: auto;
    place-items: stretch;
  }

  .hero-content {
    padding: 1.5rem 1rem 2rem;
    max-width: none;
  }

  .hero-search {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .hero-search .search-field {
    border: 1px solid var(--line);
    min-height: var(--tap);
  }

  .hero-search button,
  .btn-primary,
  .btn-ghost {
    width: 100%;
    min-height: var(--tap);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .page-band-inner {
    max-width: none;
  }

  .filter-basic,
  .filter-advanced.is-open {
    grid-template-columns: 1fr;
  }

  .filter-form {
    padding: 0.85rem;
  }

  .filter-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .filter-actions .btn-primary,
  .filter-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .filter-mode {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mode-btn {
    justify-content: center;
    min-height: 2.6rem;
  }

  .two-col,
  .doping-summary,
  .grid-2,
  .steps {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .blog-grid,
  .doping-grid {
    grid-template-columns: 1fr;
  }

  .firm-grid {
    grid-template-columns: 1fr;
  }

  .result-list .result-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .site-footer {
    flex-direction: column;
    gap: 1.25rem;
    padding:
      1.5rem max(1rem, var(--safe-right))
      calc(1.5rem + var(--safe-bottom))
      max(1rem, var(--safe-left));
  }

  .footer-meta {
    text-align: left;
    display: grid;
    gap: 0.45rem;
  }

  .footer-meta span,
  .footer-meta a {
    justify-content: flex-start;
  }

  .santral-dial-banner {
    grid-template-columns: auto 1fr;
    padding: 0.85rem;
  }

  .santral-dial-banner .dial-number {
    font-size: 1.3rem;
    word-break: break-word;
  }

  .toast {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .auth-panel {
    margin: 0;
    width: 100%;
    padding: 1.25rem;
  }

  .auth-shell {
    padding: 1rem 0.75rem 2rem;
  }

  .search-meta {
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  .result-row {
    flex-direction: column;
    align-items: stretch;
  }

  .firm-card,
  .blog-card,
  .review-card,
  .doping-card {
    min-width: 0;
  }

  .firm-phone.santral-phone {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-band {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ========== Responsive: phone ========== */
@media (max-width: 640px) {
  .brand-text { letter-spacing: 0; }

  .brand-mark {
    font-size: clamp(2.6rem, 14vw, 3.6rem);
  }

  .hero h1,
  .page-band h1,
  .auth-panel h1 {
    font-size: clamp(1.55rem, 7.5vw, 2rem);
  }

  .lede {
    font-size: 0.98rem;
  }

  .eyebrow {
    font-size: 0.74rem;
    max-width: 100%;
  }

  .section-head h2 {
    font-size: 1.35rem;
  }

  .santral-dial-banner {
    grid-template-columns: 1fr;
  }

  .santral-dial-banner > i {
    grid-row: auto;
  }

  .santral-dial-banner .dial-hint {
    grid-column: 1;
  }

  .drawer-dial {
    grid-template-columns: auto 1fr;
  }

  .drawer-dial .bi-chevron-right { display: none; }

  .revenue-grid {
    grid-template-columns: 1fr;
  }
}

/* Desktop: keep drawer off-flow */
@media (min-width: 981px) {
  .menu-toggle,
  .nav-backdrop,
  .mobile-drawer {
    display: none !important;
  }

  .site-header {
    padding-left: clamp(1.1rem, 4vw, 3rem);
    padding-right: clamp(1.1rem, 4vw, 3rem);
  }

  .header-dial {
    display: inline-flex;
  }

  .header-dial-text { display: inline; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-pattern { animation: none !important; }
}

/* Firma detay */
.firm-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0 0.5rem;
}
.firm-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}
.firm-map-panel h2 { margin-top: 0; }
.firm-map-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  aspect-ratio: 4 / 3;
  background: #e8eef2;
}
.firm-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.firm-card-top h3 a {
  color: inherit;
  text-decoration: none;
}
.firm-card-top h3 a:hover { text-decoration: underline; }
.review-list { display: grid; gap: 0.85rem; margin: 0.75rem 0 1.25rem; }
.review-card {
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--orange);
  background: rgba(0,0,0,.03);
  border-radius: 0 10px 10px 0;
}
.review-card header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: baseline;
  margin-bottom: 0.35rem;
}
.review-card time { color: #6b7280; font-size: 0.85rem; }
.review-form {
  display: grid;
  gap: 0.65rem;
  max-width: 32rem;
  margin-top: 0.75rem;
}
.review-form label { display: grid; gap: 0.25rem; font-weight: 600; font-size: 0.9rem; }
.review-form input,
.review-form textarea,
.review-form select {
  font: inherit;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 8px;
}
.firm-tags .chip {
  text-decoration: none;
  color: inherit;
}
.firm-tags a.chip:hover { text-decoration: underline; }
@media (max-width: 860px) {
  .firm-detail-grid { grid-template-columns: 1fr; }
}

/* —— Firm Suite (kurumsal üyelik paneli) —— */
.suite {
  --suite-ink: #12161c;
  --suite-panel: #1a2028;
  --suite-line: rgba(212, 184, 130, 0.22);
  --suite-brass: #c9a86c;
  --suite-mist: #c5cdd8;
  --suite-paper: #f3efe6;
  margin: 0;
  padding: 1.25rem clamp(1rem, 3vw, 2.5rem) 3rem;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(201, 168, 108, 0.12), transparent 55%),
    linear-gradient(165deg, #0e1217 0%, #161b22 45%, #10141a 100%);
  color: var(--suite-paper);
  min-height: 70vh;
  font-family: "DM Sans", "IBM Plex Sans", sans-serif;
}
.suite h1, .suite h2 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--suite-paper);
}
.suite-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--suite-line);
}
.suite-nav a {
  color: var(--suite-mist);
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  border: 1px solid transparent;
}
.suite-nav a:hover { color: #fff; border-color: var(--suite-line); }
.suite-nav a.is-active {
  color: #0e1217;
  background: var(--suite-brass);
  border-color: var(--suite-brass);
}
.suite-hero { margin-bottom: 1.75rem; max-width: 44rem; }
.suite-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--suite-brass);
  margin: 0 0 0.4rem;
}
.suite-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.suite-lede { color: var(--suite-mist); margin: 0; line-height: 1.55; }
.suite-muted { color: #8b95a5; }
.suite-banner {
  padding: 0.85rem 1rem;
  border: 1px solid var(--suite-line);
  border-left: 3px solid var(--suite-brass);
  background: rgba(201, 168, 108, 0.08);
  margin-bottom: 1.25rem;
  border-radius: 0 10px 10px 0;
}
.suite-banner.warn { border-left-color: #d9776c; background: rgba(217, 119, 108, 0.1); }
.suite-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.suite-metrics article {
  background: var(--suite-panel);
  border: 1px solid var(--suite-line);
  border-radius: 14px;
  padding: 1rem 1.05rem;
}
.suite-metrics strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  color: #fff;
  line-height: 1.15;
}
.suite-metrics span { color: var(--suite-mist); font-size: 0.8rem; }
.suite-split {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 980px) {
  .suite-split { grid-template-columns: 1fr; }
}
.suite-panel {
  background: var(--suite-panel);
  border: 1px solid var(--suite-line);
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
}
.suite-panel h2 { margin: 0 0 0.85rem; font-size: 1.45rem; }
.suite-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.suite-panel-head h2 { margin: 0; }
.suite-panel-head a, .suite-link {
  color: var(--suite-brass);
  text-decoration: none;
  font-size: 0.88rem;
}
.suite-list, .suite-feed {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.suite-list li, .suite-feed li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.suite-list span, .suite-feed span { color: var(--suite-mist); font-size: 0.88rem; }
.suite-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.suite-form-grid .full { grid-column: 1 / -1; }
.suite-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--suite-mist);
  font-weight: 500;
}
.suite-form input, .suite-form textarea, .suite-inline-form select {
  font: inherit;
  color: #fff;
  background: #0f1318;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
}
.suite-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.1rem; }
.suite-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: var(--suite-brass);
  color: #12161c;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font: inherit;
}
.suite-btn.ghost {
  background: transparent;
  color: var(--suite-paper);
  border: 1px solid var(--suite-line);
}
.suite-inline-form { margin-top: 1rem; }
.suite-bars { display: grid; gap: 0.4rem; }
.suite-bar-row {
  display: grid;
  grid-template-columns: 3rem 1fr 2.5rem;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.82rem;
}
.suite-bar-track {
  height: 0.45rem;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.suite-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #a8894e, var(--suite-brass));
  border-radius: 999px;
}
.suite-bar-fill.accent { background: linear-gradient(90deg, #6b8cae, #9bb6d0); }
.suite-table-wrap { overflow-x: auto; }
.suite-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.suite-table th, .suite-table td {
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}
.suite-table th { color: var(--suite-brass); font-weight: 600; }
@media (max-width: 720px) {
  .suite-form-grid { grid-template-columns: 1fr; }
}

/* —— Firmalar / işletme listesi (lüks) —— */
.firms-lux {
  --fx-ink: #0b2a4a;
  --fx-panel: #0e3358;
  --fx-brass: #f07a1a;
  --fx-mist: #d5e0ee;
  --fx-paper: #f7fafc;
  --fx-line: rgba(255, 255, 255, 0.14);
}

.firms-lux-hero {
  background:
    radial-gradient(ellipse 70% 80% at 88% 0%, rgba(240, 122, 26, 0.28), transparent 52%),
    linear-gradient(145deg, #071e36 0%, #0b2a4a 55%, #164676 100%);
  color: var(--fx-paper);
  padding: 2.4rem clamp(1.1rem, 4vw, 3rem) 3.5rem;
  border-bottom: 1px solid var(--fx-line);
}

.firms-lux-hero-inner { max-width: 40rem; }

.firms-lux-kicker {
  margin: 0 0 0.45rem;
  color: var(--fx-brass);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.firms-lux-hero h1 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.04em;
  color: var(--fx-paper);
  line-height: 1.1;
}

.firms-lux-lede {
  margin: 0;
  color: var(--fx-mist);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 36rem;
}

.firms-lux-shell {
  display: none;
}

.firms-lux-toolbar {
  max-width: 1180px;
  margin: -1.85rem auto 0;
  padding: 0 clamp(1.1rem, 4vw, 3rem) 0.5rem;
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.85rem;
}

.firms-lux-filter {
  display: grid;
  grid-template-columns: minmax(10rem, 1.6fr) repeat(3, minmax(7rem, 0.85fr)) auto;
  gap: 0.65rem;
  align-items: end;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 18px 48px rgba(11, 42, 74, 0.08);
  padding: 0.95rem 1rem;
}

.firms-lux-field {
  display: grid;
  gap: 0.3rem;
  margin: 0;
  min-width: 0;
}

.firms-lux-field-grow { min-width: 0; }

.firms-lux-field span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.firms-lux-field input,
.firms-lux-field select {
  width: 100%;
  min-height: 2.65rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line);
  background: #f7fafc;
  color: var(--ink);
  font: inherit;
  font-size: 0.94rem;
  border-radius: 0.7rem;
}

.firms-lux-field input:focus,
.firms-lux-field select:focus {
  outline: none;
  border-color: rgba(240, 122, 26, 0.7);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(240, 122, 26, 0.15);
}

.firms-lux-filter-actions {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.firms-lux-support {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  padding: 0.9rem 1.05rem;
  background: linear-gradient(165deg, #161a20 0%, #1f2630 100%);
  border: 1px solid var(--fx-line);
  color: var(--fx-paper);
}

.firms-lux-support-copy {
  display: grid;
  gap: 0.2rem;
  min-width: min(100%, 22rem);
}

.firms-lux-support-copy strong {
  font-family: "Cormorant Garamond", var(--font-display), serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.firms-lux-support-copy span {
  color: var(--fx-mist);
  font-size: 0.88rem;
  line-height: 1.45;
}

.firms-lux-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.firms-lux-dial,
.firms-lux-search {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(18, 22, 28, 0.1);
  padding: 1.35rem 1.4rem 1.45rem;
}

.firms-lux-dial {
  background:
    linear-gradient(165deg, #161a20 0%, #1f2630 100%);
  border-color: var(--fx-line);
  color: var(--fx-paper);
}

.firms-lux-dial-top {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.firms-lux-dial-icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--fx-line);
  color: var(--fx-brass);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.firms-lux-dial h2 {
  margin: 0;
  font-family: "Cormorant Garamond", var(--font-display), serif;
  font-size: 1.45rem;
  font-weight: 600;
  text-transform: none;
  color: var(--fx-paper);
  line-height: 1.2;
}

.firms-lux-number {
  display: inline-flex;
  margin: 0 0 0.75rem;
  text-decoration: none;
}

.firms-lux-number.hx-call-btn-lg {
  background: rgba(201, 168, 108, 0.14);
  border-color: rgba(201, 168, 108, 0.45);
  color: #c9a86c;
}

.firms-lux-number.hx-call-btn-lg:hover {
  background: #c9a86c;
  color: #12161c;
}

.firms-lux-dial-copy {
  margin: 0 0 1.15rem;
  color: var(--fx-mist);
  font-size: 0.9rem;
  line-height: 1.55;
}

.firms-lux-dial-actions,
.firms-lux-search-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.firms-lux-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.55rem;
  padding: 0.45rem 0.95rem;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.22s var(--ease-out), color 0.22s var(--ease-out), border-color 0.22s var(--ease-out);
}

.firms-lux-btn-call {
  background: var(--fx-brass);
  color: #12161c;
  border-color: var(--fx-brass);
}

.firms-lux-btn-call:hover {
  background: #d4b57a;
  color: #12161c;
}

.firms-lux-btn-wa {
  background: transparent;
  color: #9fe0b2;
  border-color: rgba(159, 224, 178, 0.35);
}

.firms-lux-btn-wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.firms-lux-btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  border-radius: 0.7rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
}

.firms-lux-btn-primary:hover {
  background: #d8660d;
  color: #fff;
}

.firms-lux-btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line);
}

.firms-lux-btn-ghost:hover {
  border-color: var(--fx-ink);
  color: var(--fx-ink);
}

.firms-lux-search-head {
  margin-bottom: 1.05rem;
}

.firms-lux-search-head h2 {
  margin: 0 0 0.25rem;
  font-family: "Cormorant Garamond", var(--font-display), serif;
  font-size: 1.55rem;
  font-weight: 600;
  text-transform: none;
  color: var(--fx-ink);
}

.firms-lux-search-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.firms-lux-fields {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.firms-lux-field {
  display: grid;
  gap: 0.35rem;
  margin: 0;
}

.firms-lux-field-wide { grid-column: 1 / -1; }

.firms-lux-field span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.firms-lux-field input,
.firms-lux-field select {
  width: 100%;
  min-height: 2.7rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  background: #fafafa;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
}

.firms-lux-field input:focus,
.firms-lux-field select:focus {
  outline: none;
  border-color: rgba(201, 168, 108, 0.7);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.15);
}

.firms-lux-results { padding-top: 1.75rem; }

.firms-lux-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem 1.1rem;
  margin-bottom: 1.15rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.firms-lux-meta strong {
  color: var(--fx-ink);
  font-size: 1.35rem;
  font-family: "Cormorant Garamond", var(--font-display), serif;
  font-weight: 600;
  margin-right: 0.25rem;
}

.firms-lux-chip {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.firms-lux-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  border: 1px dashed var(--line);
  background: #fafafa;
  color: var(--muted);
}

.firms-lux-empty i {
  font-size: 1.75rem;
  color: var(--fx-brass);
  display: block;
  margin-bottom: 0.55rem;
}

.firms-lux-empty p { margin: 0 0 1rem; }

@media (max-width: 960px) {
  .firms-lux-filter {
    grid-template-columns: 1fr 1fr;
  }
  .firms-lux-field-grow,
  .firms-lux-filter-actions {
    grid-column: 1 / -1;
  }
  .firms-lux-filter-actions { justify-content: stretch; }
  .firms-lux-filter-actions .firms-lux-btn { flex: 1; }
}

@media (max-width: 640px) {
  .firms-lux-filter { grid-template-columns: 1fr; }
  .firms-lux-support-actions { width: 100%; }
  .firms-lux-support-actions .firms-lux-btn { flex: 1; }
  .firms-lux-btn { width: auto; }
}

.flx { background: #f6f5f2; color: var(--ink); }
.flx-hero {
  position: relative;
  min-height: 16rem;
  background: linear-gradient(135deg, #1c1f24 0%, #3a332c 55%, #e86a12 140%);
  color: #fff;
  overflow: hidden;
}
.flx-cover {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .38;
}
.flx-hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,16,.15), rgba(20,18,16,.72));
}
.flx-hero-inner {
  position: relative; z-index: 1;
  max-width: 72rem; margin: 0 auto;
  padding: 2.2rem 1.25rem 2.6rem;
}
.flx-back { color: rgba(255,255,255,.82); text-decoration: none; font-size: .92rem; }
.flx-back:hover { color: #fff; }
.flx-kicker {
  margin: 1rem 0 .35rem;
  letter-spacing: .16em; text-transform: uppercase;
  font-size: .72rem; color: #f3c27a;
}
.flx-hero h1 {
  margin: 0; font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: .02em; line-height: .95;
}
.flx-meta { display: flex; flex-wrap: wrap; gap: .65rem 1rem; align-items: center; margin-top: 1rem; }
.flx-meta .firm-rating, .flx-meta .stars { color: #f3c27a; }
.flx-pill {
  border: 1px solid rgba(255,255,255,.28); border-radius: 999px;
  padding: .2rem .7rem; font-size: .8rem;
}
.flx-pill-gold { background: rgba(243,194,122,.16); border-color: #f3c27a; }
.flx-loc { opacity: .9; }
.flx-shell {
  max-width: 72rem; margin: -1.6rem auto 3rem;
  padding: 0 1.25rem;
  display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(16rem, .9fr);
  gap: 1.1rem; align-items: start;
}
.flx-card {
  background: #fff; border: 1px solid #ebe7e1; border-radius: 1.1rem;
  padding: 1.25rem 1.35rem 1.4rem; margin-bottom: 1rem;
  box-shadow: 0 12px 30px rgba(28, 24, 20, .05);
}
.flx-card h2 {
  margin: 0 0 .9rem; font-family: var(--font-display);
  font-size: 1.55rem; letter-spacing: .03em;
}
.flx-phone-mask {
  font-family: ui-monospace, "IBM Plex Sans", monospace;
  font-size: 1.65rem; letter-spacing: .12em; font-weight: 650;
}
.flx-phone-note { color: var(--muted); margin: .35rem 0 .9rem; }
.flx-empty-phone { color: var(--muted); }
.flx-phone-actions, .flx-links, .flx-pager { display: flex; flex-wrap: wrap; gap: .55rem; }
.flx-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  border-radius: 999px; padding: .62rem 1rem;
  text-decoration: none; border: 1px solid transparent;
  font-weight: 600; cursor: pointer; background: #fff; color: var(--ink);
}
.flx-btn-call { background: var(--orange); color: #fff; }
.flx-btn-call:hover { filter: brightness(1.05); color: #fff; }
.flx-btn-wa { background: #1f8a4c; color: #fff; }
.flx-btn-ghost { border-color: var(--line); }
.flx-btn.is-hidden { display: none; }
.flx-address { margin: 1rem 0 0; color: var(--ink-soft); }
.flx-bio { white-space: pre-line; line-height: 1.65; margin: 0; }
.flx-tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.flx-tags a {
  text-decoration: none; color: var(--ink);
  background: #f7f4ef; border-radius: 999px; padding: .35rem .75rem;
}
.flx-reviews { display: grid; gap: .75rem; }
.flx-review { border-top: 1px solid var(--line); padding-top: .75rem; }
.flx-review header { display: flex; flex-wrap: wrap; gap: .5rem 1rem; align-items: center; }
.flx-stars { color: #d4a017; letter-spacing: .08em; }
.flx-review-form { margin-top: 1.4rem; display: grid; gap: .7rem; }
.flx-review-form label { display: grid; gap: .3rem; font-weight: 600; }
.flx-review-form label span { font-weight: 400; color: var(--muted); }
.flx-review-form input, .flx-review-form textarea {
  font: inherit; font-weight: 400; border: 1px solid var(--line);
  border-radius: .7rem; padding: .65rem .75rem; width: 100%;
}
.flx-rate { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: .15rem; }
.flx-rate input { position: absolute; opacity: 0; width: 0; height: 0; }
.flx-rate label { cursor: pointer; color: #d8d2c8; font-size: 1.55rem; }
.flx-rate label:hover,
.flx-rate label:hover ~ label,
.flx-rate input:checked ~ label { color: #d4a017; }
.flx-map { border-radius: .8rem; overflow: hidden; min-height: 16rem; }
.flx-map iframe { width: 100%; height: 18rem; border: 0; }
@media (max-width: 860px) {
  .flx-shell { grid-template-columns: 1fr; margin-top: -1rem; }
}

/* —— Ana sayfa (PDF mockup) —— */
.hx-call-pill {
  width: auto;
  height: auto;
  min-height: 2.45rem;
  padding: 0.35rem 0.85rem 0.35rem 0.7rem;
  border-radius: 999px;
  border: 0;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.hx-call-pill:hover,
.hx-call-pill:focus-visible {
  background: var(--navy-deep);
  border-color: transparent;
  color: #fff;
  transform: none;
}

.hx-home {
  padding: 1.25rem clamp(1rem, 3vw, 2.4rem) 3rem;
}

.hx-home-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.15rem;
  align-items: start;
}

.hx-home-hero {
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(240, 122, 26, 0.22), transparent 50%),
    linear-gradient(160deg, #0b2a4a 0%, #0e3a66 62%, #164676 100%);
  color: #fff;
  border-radius: 1.35rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  min-height: 28rem;
  box-shadow: 0 18px 40px rgba(11, 42, 74, 0.18);
  animation: riseIn 0.7s var(--ease-out) both;
}

.hx-home-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #d7e6f8;
  font-size: 0.78rem;
  font-weight: 600;
}

.hx-home-hero h1 {
  margin: 0 0 1.25rem;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.12;
  text-transform: none;
  color: #fff;
}

.hx-find {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(7.2rem, 0.72fr) minmax(7.2rem, 0.72fr) auto;
  gap: 0.55rem;
  padding: 0.45rem;
  background: #fff;
  border-radius: 1rem;
  color: var(--ink);
}

.hx-find label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  padding: 0 0.55rem;
  color: var(--muted);
}

.hx-find input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  min-height: 2.6rem;
  outline: none;
}

.hx-find input::placeholder { color: #8b9aab; font-weight: 500; }

.hx-find-district { border-left: 1px solid var(--line); }

.hx-find button {
  border: 0;
  border-radius: 0.75rem;
  background: var(--orange);
  color: #fff;
  font: inherit;
  font-weight: 700;
  min-width: 5.2rem;
  padding: 0 1.1rem;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.hx-find button:hover { background: #d8660d; transform: translateY(-1px); }

.hx-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.hx-chips a {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #e8f1fb;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.18s ease, color 0.18s ease;
}

.hx-chips a:hover { background: #fff; color: var(--navy); }

.hx-home-side { display: grid; gap: 0.85rem; }

.hx-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.hx-trust article {
  border-radius: 0.95rem;
  padding: 0.85rem 0.75rem;
  min-height: 6.4rem;
  color: var(--navy);
  animation: riseIn 0.65s var(--ease-out) both;
}

.hx-trust article:nth-child(1) { background: #e7f6ec; animation-delay: 0.05s; }
.hx-trust article:nth-child(2) { background: #e7f1fb; animation-delay: 0.12s; }
.hx-trust article:nth-child(3) { background: #123a66; color: #fff; animation-delay: 0.18s; }

.hx-trust i { font-size: 1.15rem; }
.hx-trust strong { display: block; margin-top: 0.45rem; font-size: 0.92rem; letter-spacing: -0.02em; }
.hx-trust span { display: block; margin-top: 0.15rem; font-size: 0.75rem; opacity: 0.8; }

.hx-week {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 0.9rem 0.85rem 0.4rem;
  box-shadow: var(--shadow);
}

.hx-week-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.hx-week-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  text-transform: none;
  color: var(--navy);
}

.hx-week-head a { color: var(--orange); font-weight: 700; font-size: 0.86rem; }

.hx-week-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.75rem 0.15rem;
  border-top: 1px solid var(--line);
}

.hx-week-row h3 { margin: 0; font-size: 0.98rem; }
.hx-week-row h3 a { color: var(--navy); }
.hx-week-row p { margin: 0.15rem 0 0; color: var(--muted); font-size: 0.8rem; }

.hx-week-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin-top: 0.3rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 600;
}

.hx-week-meta .stars { color: #e2a100; letter-spacing: 0.04em; }

.hx-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: #e7f6ec;
  color: #1b7a42;
  font-size: 0.72rem;
  font-weight: 700;
}

.hx-dial {
  width: 2.45rem;
  height: 2.45rem;
  display: inline-grid;
  place-items: center;
  border-radius: 0.75rem;
  background: var(--navy);
  color: #fff;
  transition: transform 0.18s ease, background 0.18s ease;
}

.hx-dial:hover { background: var(--orange); transform: translateY(-1px); }

.hx-empty { color: var(--muted); padding: 0.8rem 0 1rem; }

.hx-needs { margin-top: 2.2rem; }

.hx-needs-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.hx-needs-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.04em;
  text-transform: none;
  color: var(--navy);
}

.hx-needs-head a { color: var(--blue); font-weight: 700; }

.hx-need-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.hx-need {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 8.2rem;
  padding: 1.05rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 20px rgba(11, 42, 74, 0.04);
  transition: transform 0.2s var(--ease-out), border-color 0.2s ease, box-shadow 0.2s ease;
  animation: riseIn 0.6s var(--ease-out) both;
}

.hx-need i {
  width: 2.3rem;
  height: 2.3rem;
  display: inline-grid;
  place-items: center;
  border-radius: 0.7rem;
  background: #e8f1fb;
  color: var(--blue);
  font-size: 1.1rem;
}

.hx-need:hover {
  transform: translateY(-3px);
  border-color: #c5d7ee;
  box-shadow: 0 14px 28px rgba(11, 42, 74, 0.08);
}

.hx-page {
  padding: 2rem clamp(1rem, 3vw, 2.4rem) 3.5rem;
}

.hx-page h1 {
  margin: 0.35rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
  text-transform: none;
  color: var(--navy);
}

.hx-kicker {
  margin: 0;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hx-lede { max-width: 40rem; color: var(--ink-soft); margin: 0 0 1.4rem; }

.hx-page h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  text-transform: none;
  color: var(--navy);
}

.hx-city-grid, .hx-steps {
  display: grid;
  gap: 0.65rem;
}

.hx-city-grid { grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr)); }

.hx-city-grid a, .hx-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.85rem 0.9rem;
}

.hx-city-grid a {
  color: var(--navy);
  font-weight: 700;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.hx-city-grid a:hover { border-color: var(--orange); transform: translateY(-2px); }

.hx-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 0.4rem; }

.hx-step strong {
  display: block;
  margin: 0.35rem 0 0.25rem;
  color: var(--navy);
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.hx-step span { color: var(--muted); font-size: 0.9rem; }

.hx-step em {
  font-style: normal;
  color: var(--orange);
  font-weight: 800;
  font-size: 0.78rem;
}

@media (max-width: 980px) {
  .hx-home-stage, .hx-need-grid, .hx-steps, .hx-card-grid, .hx-corp-steps { grid-template-columns: 1fr 1fr; }
  .hx-split, .hx-corp-grid { grid-template-columns: 1fr; }
  .hx-find { grid-template-columns: 1fr; }
  .hx-find-district { border-left: 0; border-top: 1px solid var(--line); }
  .hx-home-hero h1 { max-width: none; }
}

@media (max-width: 680px) {
  .hx-trust, .hx-need-grid, .hx-steps, .hx-home-stage, .hx-card-grid, .hx-corp-steps { grid-template-columns: 1fr; }
  .hx-call-pill span { display: none; }
  .footer-meta { justify-content: flex-start; text-align: left; }
}

.hx-ac { position: relative; min-width: 0; }
.hx-ac > label, .hx-find .hx-ac > label { width: 100%; }
.hx-find select {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  min-height: 2.6rem;
  outline: none;
}
.hx-ac-menu {
  position: absolute;
  z-index: 40;
  left: 0;
  right: 0;
  top: calc(100% + 0.3rem);
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  box-shadow: var(--shadow);
  padding: 0.3rem;
  display: grid;
}
.hx-ac-menu[hidden] { display: none; }
.hx-ac-menu button {
  text-align: left;
  border: 0;
  background: transparent;
  border-radius: 0.6rem;
  padding: 0.55rem 0.7rem;
  font: inherit;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}
.hx-ac-menu button:hover,
.hx-ac-menu button:focus-visible { background: #e8f1fb; }

.hx-band { margin-top: 2.1rem; }
.hx-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.hx-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: start; }
.hx-mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(11, 42, 74, 0.04);
}
.hx-mini h3 { margin: 0.45rem 0 0.25rem; font-size: 1.02rem; letter-spacing: -0.03em; }
.hx-mini h3 a { color: var(--navy); }
.hx-mini p, .hx-mini small { margin: 0; color: var(--muted); font-size: 0.84rem; }
.hx-mini-blog p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 0.35rem;
}

.hx-corp { padding-bottom: 3rem; }
.hx-corp-hero {
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(240, 122, 26, 0.22), transparent 48%),
    linear-gradient(160deg, #071e36 0%, #0b2a4a 58%, #164676 100%);
  color: #fff;
  padding: clamp(2.6rem, 6vw, 4.4rem) clamp(1.1rem, 4vw, 3rem);
}
.hx-corp-hero h1 {
  margin: 0.35rem 0 0.75rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -0.045em;
  text-transform: none;
}
.hx-corp-hero p { max-width: 40rem; margin: 0; color: #d7e6f6; font-size: 1.05rem; }
.hx-corp-steps, .hx-corp-grid, .hx-corp-cta { margin: 1rem clamp(1rem, 3vw, 2.4rem) 0; }
.hx-corp-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.hx-corp-steps li, .hx-corp-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.1rem;
}
.hx-corp-steps span { color: var(--orange); font-weight: 800; letter-spacing: 0.08em; }
.hx-corp-steps strong, .hx-corp-grid h2 {
  display: block;
  margin: 0.4rem 0 0.3rem;
  color: var(--navy);
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  text-transform: none;
  font-size: 1.15rem;
}
.hx-corp-steps p, .hx-corp-grid p { margin: 0; color: var(--muted); }
.hx-corp-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.75rem; }
.hx-corp-grid i { color: var(--orange); font-size: 1.25rem; }
.hx-corp-grid article { border-top: 3px solid var(--navy); }
.hx-corp-cta { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.hx-corp-btn {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.55rem 1rem;
  border-radius: 0.8rem;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
}
.hx-corp-btn-ghost { background: #fff; color: var(--navy); border: 1px solid var(--line); }
