:root {
  --orange: #ff5b16;
  --orange-dark: #e94807;
  --violet: #5424eb;
  --violet-dark: #3514a7;
  --ink: #17151d;
  --muted: #6f6b78;
  --line: #ece9f1;
  --surface: #f7f6f9;
  --page: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner,
.nav-inner,
.page-shell {
  width: min(1320px, calc(100% - 100px));
  margin: 0 auto;
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 180px minmax(320px, 560px) 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: fit-content;
}

.brand img {
  width: 60px;
  height: 60px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(255, 91, 22, 0.14));
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  color: var(--orange);
  font-size: 31px;
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 1;
}

.brand-wordmark b {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.085em;
}

.brand-wordmark span {
  color: #f06424;
}

.search {
  position: relative;
  display: flex;
  align-items: center;
  height: 44px;
  border: 1px solid #ded8ef;
  border-radius: 30px;
  background: #faf9fb;
  overflow: hidden;
  transition: 160ms ease;
}

.search:focus-within {
  border-color: rgba(84, 36, 235, 0.5);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(84, 36, 235, 0.08);
}

.search-icon {
  width: 19px;
  height: 19px;
  margin-left: 22px;
  border: 2px solid #7f788a;
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  right: -6px;
  bottom: -3px;
  background: #7f788a;
  transform: rotate(45deg);
  border-radius: 2px;
}

.search input {
  position: relative;
  z-index: 2;
  height: 100%;
  flex: 1;
  min-width: 0;
  padding: 0 18px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
}

.search-rotating-text {
  position: absolute;
  z-index: 1;
  left: 62px;
  right: 94px;
  overflow: hidden;
  color: #aaa5b1;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}

.search:focus-within .search-rotating-text,
.search.has-value .search-rotating-text {
  opacity: 0;
}

.search button {
  align-self: stretch;
  padding: 0 22px;
  border: 0;
  color: #fff;
  background: var(--violet);
  cursor: pointer;
  font-weight: 700;
}

.account-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.account-actions > a:not(.primary-button):hover {
  color: var(--violet);
}

.member-tools,
.quick-actions {
  display: flex;
  align-items: center;
}

.member-tools {
  justify-content: flex-end;
  gap: 15px;
}

.quick-actions {
  gap: 6px;
}

.quick-action {
  position: relative;
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 36px;
  border: 1px solid #e5def7;
  border-radius: 11px;
  color: #62557e;
  background: linear-gradient(145deg, #fff, #f7f4ff);
  box-shadow: 0 7px 18px rgba(54, 31, 110, 0.08);
  transition: 150ms ease;
}

.quick-action:hover,
.quick-action:focus-visible {
  color: var(--violet);
  border-color: #cfc1ff;
  background: #f4f0ff;
  box-shadow: 0 10px 22px rgba(84, 36, 235, 0.15);
  outline: 0;
  transform: translateY(-2px);
}

.quick-action svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-action.favorite-action svg {
  fill: currentColor;
  stroke-width: 1.5;
}

.quick-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  padding: 0 4px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: #f1262f;
  box-shadow: 0 4px 10px rgba(241, 38, 47, 0.32);
  font-size: 9px;
  font-weight: 850;
  line-height: 1;
}

.header-tool {
  position: relative;
  display: inline-flex;
}

.header-tool > .quick-action {
  cursor: pointer;
}

.header-popover {
  position: absolute;
  z-index: 120;
  top: calc(100% + 15px);
  right: -78px;
  width: min(470px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid #e5deef;
  border-radius: 15px;
  color: #29242f;
  background: #fff;
  box-shadow: 0 24px 65px rgba(35, 23, 56, .24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.header-popover::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 88px;
  width: 13px;
  height: 13px;
  border-top: 1px solid #e5deef;
  border-left: 1px solid #e5deef;
  background: #fff;
  transform: rotate(45deg);
}

.header-tool.open .header-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.header-popover > header {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 2px solid var(--violet);
  background: #fff;
}

.header-popover > header strong {
  font-size: 17px;
  font-weight: 850;
}

.header-popover > header a {
  color: var(--violet);
  font-size: 11px;
  font-weight: 750;
}

.header-popover-list {
  max-height: 380px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.header-preview-item {
  min-height: 86px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #eeeaf2;
  color: #39333f;
  background: #fff;
}

.header-preview-item:hover,
.header-preview-item.is-unread {
  background: #faf8ff;
}

.header-preview-avatar {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff8a46);
  font-size: 18px;
  font-weight: 900;
}

.notification-mark {
  color: var(--violet);
  background: #f0ebff;
}

.header-preview-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.header-preview-copy b,
.header-preview-copy strong,
.header-preview-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-preview-copy b {
  font-size: 12px;
  font-weight: 820;
}

.header-preview-copy strong {
  font-size: 12px;
  font-weight: 760;
}

.header-preview-copy small {
  color: #77707f;
  font-size: 11px;
}

.header-preview-item time {
  align-self: end;
  padding-bottom: 3px;
  color: #9a93a1;
  font-size: 9px;
}

.header-popover-footer {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--violet);
  background: #fff;
  font-size: 13px;
  font-weight: 850;
}

.header-popover-empty {
  margin: 0;
  padding: 34px 20px;
  color: #8a8390;
  text-align: center;
  font-size: 13px;
}

.favorites-popover {
  right: -42px;
  width: 290px;
}

.favorites-popover::before {
  right: 52px;
}

.favorite-popover-links {
  display: grid;
}

.favorite-popover-links a {
  min-height: 58px;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-bottom: 1px solid #eeeaf2;
  color: #3d3744;
}

.favorite-popover-links a:hover {
  color: var(--violet);
  background: #faf8ff;
}

.favorite-popover-links span {
  color: var(--violet);
  font-size: 20px;
  text-align: center;
}

.favorite-popover-links b {
  font-size: 13px;
}

.favorite-popover-links i {
  color: #aaa3b1;
  font-size: 20px;
  font-style: normal;
}

.simple-favorites-page {
  width: min(900px, calc(100% - 36px));
  min-height: 340px;
  margin: 54px auto;
  padding: 54px;
  border: 1px solid #e7e1ef;
  border-radius: 26px;
  background: linear-gradient(135deg, #fff, #f6f2ff);
  box-shadow: 0 22px 55px rgba(44, 26, 72, .1);
}

.simple-favorites-page > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.simple-favorites-page h1 {
  margin: 10px 0 14px;
  font-size: clamp(32px, 5vw, 52px);
}

.simple-favorites-page p {
  max-width: 650px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.simple-favorites-page a {
  display: inline-flex;
  margin-top: 18px;
  padding: 13px 18px;
  border-radius: 12px;
  color: #fff;
  background: var(--violet);
  font-weight: 800;
}

.member-listing-button {
  padding: 11px 14px;
}

.button-short-label {
  display: none;
}

.account-menu {
  position: relative;
}

.account-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 2px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.account-menu-trigger:hover,
.account-menu.open .account-menu-trigger {
  color: var(--violet);
}

.account-trigger-name {
  max-width: 105px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.account-avatar,
.account-profile-avatar {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(145deg, var(--orange), #ff8a46);
  box-shadow: 0 5px 14px rgba(255, 91, 22, 0.22);
}

.account-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 850;
  overflow: hidden;
}

.account-avatar img,
.account-profile-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.account-chevron {
  width: 7px;
  height: 7px;
  margin-left: 1px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.account-menu.open .account-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.account-dropdown {
  position: absolute;
  z-index: 80;
  top: calc(100% + 14px);
  right: -8px;
  width: 226px;
  overflow: hidden;
  border: 1px solid #ebe6f2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(40, 24, 70, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.account-dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 32px;
  width: 14px;
  height: 14px;
  border-top: 1px solid #ebe6f2;
  border-left: 1px solid #ebe6f2;
  background: #fff;
  transform: rotate(45deg);
}

.account-menu.open .account-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.account-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid #eeeaf3;
}

.account-profile-avatar {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  font-size: 16px;
  font-weight: 850;
  overflow: hidden;
}

.member-tools .account-dropdown {
  right: auto;
  left: 0;
}

.member-tools .account-dropdown::before {
  right: auto;
  left: 28px;
}

.account-profile span:last-child {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.account-profile small {
  color: #aaa3b1;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.account-profile strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  text-overflow: ellipsis;
}

.account-dropdown-links {
  display: grid;
}

.account-dropdown-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 43px;
  padding: 0 14px;
  border-bottom: 1px solid #f0edf4;
  color: #423d48;
  font-size: 13px;
  font-weight: 600;
  transition: 140ms ease;
}

.account-dropdown-links a:hover {
  padding-left: 17px;
  color: var(--violet);
  background: #faf8ff;
}

.account-dropdown-links a b {
  color: #a8a1ae;
  font-size: 20px;
  font-weight: 400;
}

.account-dropdown-links .account-logout {
  border-bottom: 0;
  color: #ef3e36;
  background: #fffafa;
}

.primary-button,
.hero-cta {
  border-radius: 14px;
  background: linear-gradient(135deg, #ff712d, var(--orange));
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 91, 22, 0.2);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.primary-button {
  padding: 12px 16px;
  border-radius: 12px;
}

.help-link {
  color: var(--violet);
}

.primary-button:hover,
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 91, 22, 0.28);
}

.category-nav {
  position: relative;
  z-index: 55;
  border-top: 1px solid #f2eff6;
}

.nav-inner {
  position: static;
  min-height: 58px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
}

.nav-item {
  position: static;
  flex: 1 0 auto;
  display: flex;
}

.nav-trigger {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  color: #2f2354;
  font-size: 13px;
  font-weight: 680;
  border-bottom: 3px solid transparent;
  transition: 160ms ease;
}

.nav-trigger:hover,
.nav-item:focus-within .nav-trigger {
  color: var(--violet);
  border-color: var(--violet);
}

.nav-icon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 20px;
}

.nav-icon img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: invert(22%) sepia(97%) saturate(5250%) hue-rotate(251deg)
    brightness(88%) contrast(102%);
  opacity: 0.9;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-trigger:hover .nav-icon img,
.nav-item:focus-within .nav-icon img {
  transform: translateY(-1px);
  opacity: 1;
}

.nav-chevron {
  margin-left: 2px;
  color: #9d94ad;
  font-size: 12px;
  transition: transform 160ms ease;
}

.nav-item:hover .nav-chevron,
.nav-item:focus-within .nav-chevron {
  transform: rotate(180deg);
}

.nav-glyph {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--violet);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.package-glyph {
  position: relative;
  border: 1.8px solid currentColor;
  border-radius: 3px;
}

.package-glyph::before,
.package-glyph::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}

.expert-glyph {
  position: relative;
  border: 1.8px solid currentColor;
  border-radius: 50%;
}

.expert-glyph::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 5px;
  width: 5px;
  height: 5px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.expert-glyph::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 2px;
  width: 8px;
  height: 4px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.direct-nav-item .nav-trigger {
  cursor: pointer;
}

.package-glyph::before {
  top: 4px;
  left: 1px;
  width: 12px;
  height: 1.5px;
  transform: rotate(25deg);
}

.package-glyph::after {
  top: 1px;
  left: 7px;
  width: 1.5px;
  height: 13px;
  transform: rotate(28deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: min(1240px, calc(100vw - 100px));
  min-height: 330px;
  display: none;
  grid-template-columns: 310px 1fr;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid #e8e3ef;
  border-radius: 0 0 18px 18px;
  background: #fff;
  box-shadow: 0 22px 45px rgba(24, 18, 34, 0.18);
  transform: translateX(-50%);
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  display: grid;
}

.mega-menu-sidebar {
  position: relative;
  padding: 12px 0;
  background: #f8f7f9;
  border-right: 1px solid var(--line);
}

.mega-menu-sidebar > a {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 20px;
  color: #393440;
  font-size: 14px;
  font-weight: 620;
  transition: 140ms ease;
}

.mega-menu-sidebar > a:hover,
.mega-menu-sidebar > a:focus-visible,
.mega-menu-sidebar > a.active {
  color: var(--violet);
  background: #fff;
  padding-left: 24px;
}

.mega-menu-sidebar .mega-menu-all {
  min-height: 50px;
  margin-bottom: 6px;
  color: var(--orange);
  background: #fff;
  font-weight: 780;
}

.mega-menu-content {
  padding: 28px 30px 30px;
}

.mega-menu-content-panel[hidden] {
  display: none;
}

.mega-menu-content-panel:not([hidden]) {
  animation: mega-panel-in 170ms ease-out;
}

.mega-menu-text-panel {
  min-width: 0;
}

.mega-menu .mega-brand-list {
  max-height: 540px;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  align-items: start;
  gap: 16px 12px;
  overflow-y: auto;
  padding: 4px 14px 12px 0;
  scrollbar-color: #ff7a3d #f2edf9;
  scrollbar-width: thin;
}

.mega-brand-group {
  min-width: 0;
  display: grid;
  align-content: start;
}

.mega-menu .mega-brand-group > strong {
  margin-bottom: 5px;
  padding: 7px 9px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff7d3f);
  box-shadow: 0 5px 12px rgba(255, 91, 22, .18);
  font-size: 14px !important;
  font-weight: 900;
  line-height: 1;
}

.mega-menu .mega-brand-list a {
  min-height: 32px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e9e2f3;
  color: #39295f;
  font-size: 14px !important;
  font-weight: 740;
  line-height: 1.2;
  padding: 4px 3px;
  white-space: normal;
}

.mega-menu .mega-brand-list a:hover {
  padding-left: 7px;
  color: var(--orange);
  background: #fff6f1;
}

@keyframes mega-panel-in {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

.mega-menu-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.mega-menu-heading span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.mega-menu-heading h3 {
  margin: 5px 0 0;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.mega-menu-heading > a {
  color: var(--violet);
  font-size: 12px;
  font-weight: 740;
}

.mega-menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mega-menu-cards.four-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mega-menu-cards.four-cards .mega-card-photo {
  height: 120px;
}

.mega-menu-cards > a {
  min-width: 0;
  display: grid;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.mega-menu-cards > a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(41, 28, 63, 0.1);
}

.mega-card-photo {
  height: 145px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 10px;
  background-color: #ffd21f;
  background-image: linear-gradient(135deg, #ffcb05 0%, #ffe777 52%, #ffc400 100%) !important;
  box-shadow: inset 0 -18px 36px rgba(213, 142, 0, .12);
  color: #111;
  text-align: center;
}

.mega-card-photo > span {
  font-size: clamp(15px, 1.15vw, 20px);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.mega-menu-cards b,
.mega-menu-cards small {
  padding: 0 8px;
}

.mega-tourism-groups {
  display: grid;
  gap: 20px;
}

.mega-tourism-group h4 {
  margin: 0 0 9px;
  color: #242129;
  font-size: 15px;
  font-weight: 850;
}

.mega-menu-cards.tourism-card-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.mega-menu-cards.tourism-card-grid > a {
  padding: 5px;
  border-radius: 10px;
}

.mega-menu-cards.tourism-card-grid .mega-card-photo {
  height: 78px;
  padding: 8px;
  border-radius: 7px;
}

.mega-menu-cards.tourism-card-grid .mega-card-photo > span {
  font-size: 12px;
  line-height: 1.2;
}

.mega-menu-cards b {
  font-size: 14px;
}

.mega-menu-cards small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.menu-page-overlay {
  position: fixed;
  z-index: 40;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(18, 15, 22, 0.56);
  transition: opacity 150ms ease, visibility 150ms ease;
  cursor: default;
}

body.mega-menu-open .menu-page-overlay {
  visibility: visible;
  opacity: 1;
}

.page-shell {
  padding-top: 22px;
}

.search-message {
  margin: 0 0 14px;
  padding: 11px 16px;
  color: var(--violet-dark);
  background: #f3efff;
  border-radius: 12px;
  font-size: 14px;
}

.hero {
  position: relative;
  height: 390px;
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(470px, 1.05fr) minmax(470px, 0.95fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid #eee7f8;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 25%, rgba(133, 83, 255, 0.19), transparent 24%),
    radial-gradient(circle at 91% 74%, rgba(255, 102, 36, 0.14), transparent 22%),
    linear-gradient(105deg, #fff8e9 0%, #fffdfb 46%, #f2ebff 100%);
  box-shadow: 0 18px 45px rgba(58, 37, 91, 0.07);
}

.hero::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  top: -90px;
  left: 28%;
  border: 1px solid rgba(84, 36, 235, 0.15);
  border-radius: 50%;
}

.hero-media {
  position: relative;
  height: 100%;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  padding: 34px 28px 24px 48px;
  isolation: isolate;
}

.hero-media > img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 305px;
  object-fit: cover;
  border-radius: 160px 28px 28px 38px;
  box-shadow: 0 20px 34px rgba(44, 29, 22, 0.18);
  animation: reveal 320ms ease;
}

.hero-card-accent {
  position: absolute;
  z-index: 1;
  width: 76%;
  height: 76%;
  left: 26px;
  top: 31px;
  border-radius: 50%;
  background: linear-gradient(150deg, #8f5bff, #6237ef);
  opacity: 0.82;
}

.floating-phone {
  position: absolute;
  z-index: 4;
  width: 82px;
  height: 140px;
  right: 34px;
  bottom: 20px;
  display: grid;
  place-items: center;
  padding: 8px;
  background: #1d1a22;
  border: 4px solid #27232c;
  border-radius: 18px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
  transform: rotate(5deg);
}

.floating-phone::before {
  content: "";
  position: absolute;
  inset: 5px;
  background: #fff;
  border-radius: 11px;
}

.floating-phone img {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.hero-copy {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 100px 58px 48px;
  animation: reveal 300ms ease;
}

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

.eyebrow,
.section-heading span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.hero-copy h1 {
  margin: 14px 0 2px;
  font-size: clamp(41px, 3.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.hero-copy h1::first-letter {
  color: var(--ink);
}

.hero-copy h2 {
  max-width: 570px;
  margin: 12px 0;
  font-size: clamp(23px, 2vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.hero-copy p {
  max-width: 520px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.hero-cta {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 16px 20px;
  font-weight: 750;
}

.hero-cta span {
  font-size: 22px;
}

.qr-motif {
  position: absolute;
  z-index: 2;
  right: 38px;
  top: 60px;
  width: 92px;
  height: 92px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  opacity: 0.19;
  transform: rotate(3deg);
}

.qr-motif i {
  background: var(--violet);
  border-radius: 3px;
}

.qr-motif i:nth-child(2),
.qr-motif i:nth-child(4),
.qr-motif i:nth-child(9) {
  background: var(--orange);
  transform: scale(0.58);
}

.slider-arrow,
.quick-carousel > button {
  display: grid;
  place-items: center;
  border: 1px solid #e4dfeb;
  border-radius: 50%;
  color: #1f1c24;
  background: #fff;
  box-shadow: 0 8px 24px rgba(34, 25, 47, 0.12);
  cursor: pointer;
  transition: 150ms ease;
}

.slider-arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  width: 52px;
  height: 52px;
  font-size: 40px;
  line-height: 1;
  transform: translateY(-50%);
}

.slider-arrow:hover,
.quick-carousel > button:hover {
  color: #fff;
  border-color: var(--violet);
  background: var(--violet);
}

.slider-arrow-left {
  left: -20px;
}

.slider-arrow-right {
  right: -20px;
}

.slide-dots {
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 17px;
  display: flex;
  gap: 7px;
}

.slide-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: #c8bfd8;
  cursor: pointer;
  transition: 150ms ease;
}

.slide-dots button.active {
  width: 26px;
  background: var(--violet);
}

.slide-count {
  position: absolute;
  z-index: 10;
  right: 21px;
  bottom: 17px;
  padding: 5px 11px;
  color: #4a4450;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(117, 102, 132, 0.25);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.categories {
  padding: 52px 0 48px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 7px 0 0;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.section-heading a {
  color: var(--violet);
  font-size: 14px;
  font-weight: 740;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.featured-card {
  position: relative;
  min-width: 0;
  padding-bottom: 15px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.featured-card:hover {
  transform: translateY(-5px);
  border-color: #dcd2ff;
  box-shadow: 0 15px 28px rgba(46, 32, 64, 0.1);
}

.category-image {
  height: 150px;
  margin: 6px;
  border-radius: 12px;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 220ms ease;
}

.featured-card:hover .category-image {
  transform: scale(1.02);
}

.featured-card > span {
  display: block;
  padding: 8px 38px 0 15px;
  font-size: 16px;
  font-weight: 720;
}

.featured-card > i {
  position: absolute;
  right: 15px;
  bottom: 13px;
  color: var(--violet);
  font-style: normal;
  font-size: 20px;
}

.quick-carousel {
  position: relative;
  margin-top: 26px;
}

.quick-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 1fr);
  grid-template-rows: 1fr;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 2px 14px;
}

.quick-row::-webkit-scrollbar {
  display: none;
}

.quick-card {
  scroll-snap-align: start;
  min-width: 0;
}

.quick-card div {
  height: 112px;
  border-radius: 13px;
  background-color: var(--surface);
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(28, 23, 36, 0.04);
}

.quick-card span {
  display: block;
  padding: 10px 4px 0;
  color: #39353f;
  font-size: 14px;
  text-align: center;
  font-weight: 650;
}

.quick-carousel > button {
  position: absolute;
  z-index: 3;
  right: -20px;
  top: 38px;
  width: 48px;
  height: 48px;
  font-size: 34px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 70px;
  padding: 28px 34px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(115deg, #3b17b5, #6a3df2 58%, #8d63ff);
  border-radius: 22px;
}

.trust-strip div {
  display: grid;
  gap: 5px;
  padding: 7px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip b {
  font-size: 17px;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

footer {
  min-height: 130px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px max(50px, calc((100vw - 1320px) / 2));
  border-top: 1px solid var(--line);
  background: #faf9fb;
}

footer img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

footer p {
  flex: 1;
  color: #5f5967;
  font-size: 14px;
}

footer span {
  color: #938d9d;
  font-size: 13px;
}

@media (max-width: 1220px) {
  .header-inner,
  .nav-inner,
  .page-shell {
    width: min(100% - 40px, 1120px);
  }

  .header-inner {
    grid-template-columns: 90px 1fr auto;
    gap: 20px;
  }

  .account-actions {
    gap: 12px;
  }

  .member-tools {
    gap: 7px;
  }

  .quick-actions {
    gap: 4px;
  }

  .quick-action {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .member-listing-button {
    padding: 10px 11px;
  }

  .nav-inner {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .nav-trigger {
    min-width: 140px;
  }

  .hero {
    height: 420px;
    grid-template-columns: 0.95fr 1.05fr;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-copy {
    padding-right: 58px;
    padding-left: 35px;
  }

  .qr-motif {
    display: none;
  }

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

@media (max-width: 820px) {
  .header-popover,
  .favorites-popover {
    position: fixed;
    top: 132px;
    right: 14px;
    left: 14px;
    width: auto;
  }

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

  .header-inner,
  .nav-inner,
  .page-shell {
    width: min(100% - 28px, 760px);
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    grid-template-columns: 68px 1fr;
    min-height: 88px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .search {
    height: 49px;
  }

  .search button {
    display: none;
  }

  .account-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
    gap: 10px;
    margin: -8px 0 14px;
  }

  .member-tools {
    width: 100%;
    justify-content: space-between;
  }

  .account-dropdown {
    right: auto;
    left: 0;
    width: min(226px, calc(100vw - 28px));
  }

  .account-dropdown::before {
    right: auto;
    left: 28px;
  }

  .primary-button {
    padding: 10px 13px;
  }

  .nav-inner {
    width: 100%;
    min-height: 58px;
    padding: 0 14px;
  }

  .nav-trigger {
    min-width: 116px;
    font-size: 12px;
  }

  .nav-item {
    flex: 0 0 auto;
  }

  .mega-menu,
  .nav-chevron,
  .menu-page-overlay {
    display: none !important;
  }

  .nav-icon,
  .nav-icon img {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  .hero {
    height: auto;
    min-height: 620px;
    grid-template-columns: 1fr;
    align-content: start;
  }

  .hero-media {
    min-height: 285px;
    height: 285px;
    padding: 28px 30px 0;
  }

  .hero-media > img {
    height: 245px;
    border-radius: 110px 24px 24px 28px;
  }

  .hero-card-accent {
    height: 80%;
  }

  .floating-phone {
    width: 65px;
    height: 112px;
    right: 26px;
    bottom: -4px;
  }

  .floating-phone img {
    width: 45px;
    height: 45px;
  }

  .hero-copy {
    height: auto;
    padding: 36px 36px 70px;
  }

  .hero-copy h1 {
    font-size: 43px;
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
  }

  .slider-arrow-left {
    left: 8px;
  }

  .slider-arrow-right {
    right: 8px;
  }

  .featured-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    scrollbar-width: none;
  }

  .featured-card {
    flex: 0 0 min(72vw, 290px);
    scroll-snap-align: start;
  }

  .quick-row {
    grid-auto-columns: 145px;
  }

  .quick-carousel > button {
    right: -8px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    padding: 17px 10px;
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  footer {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  footer p {
    min-width: calc(100% - 90px);
    margin-top: 12px;
  }

  footer span {
    width: 100%;
    padding-left: 86px;
  }
}

@media (max-width: 500px) {
  .header-inner {
    gap: 10px;
  }

  .search input {
    font-size: 14px;
    padding-right: 12px;
  }

  .account-actions {
    font-size: 13px;
    gap: 7px;
  }

  .account-trigger-name,
  .button-full-label {
    display: none;
  }

  .button-short-label {
    display: inline;
  }

  .member-tools {
    gap: 6px;
  }

  .quick-action {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .member-listing-button {
    padding: 9px 10px;
  }

  .hero {
    min-height: 580px;
  }

  .hero-media {
    min-height: 245px;
    height: 245px;
    padding: 22px 22px 0;
  }

  .hero-media > img {
    height: 208px;
  }

  .hero-copy {
    padding: 28px 24px 66px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy h2 {
    font-size: 23px;
  }

  .hero-copy p {
    font-size: 15px;
  }

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

  .section-heading h2 {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.help-body {
  min-height: 100vh;
  background: #faf9fc;
}

.help-header {
  width: min(1180px, calc(100% - 48px));
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

.help-brand,
.help-header nav {
  display: flex;
  align-items: center;
}

.help-brand {
  gap: 12px;
  color: var(--violet-dark);
  font-weight: 750;
}

.help-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.help-header nav {
  gap: 22px;
  font-size: 13px;
  font-weight: 680;
}

.help-header .primary-button {
  color: #fff;
}

.help-page {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 70px;
}

.help-hero {
  padding: 58px;
  overflow: hidden;
  border: 1px solid #ebe5f6;
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 91, 22, 0.16), transparent 24%),
    linear-gradient(125deg, #f2edff, #fffaf2);
}

.help-hero > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.help-hero h1 {
  max-width: 680px;
  margin: 12px 0;
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: -0.055em;
}

.help-hero p {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.help-hero form {
  max-width: 620px;
  height: 52px;
  display: flex;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid #dcd3f3;
  border-radius: 28px;
  background: #fff;
}

.help-hero input {
  flex: 1;
  min-width: 0;
  padding: 0 22px;
  border: 0;
  outline: 0;
  background: transparent;
}

.help-hero button {
  padding: 0 28px;
  border: 0;
  color: #fff;
  background: var(--violet);
  font-weight: 750;
  cursor: pointer;
}

.help-faq {
  padding: 54px 0;
}

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

.help-faq details {
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.help-faq summary {
  padding: 22px 0;
  cursor: pointer;
  font-weight: 750;
}

.help-faq details p {
  margin: -4px 0 22px;
  color: var(--muted);
  line-height: 1.55;
}

.help-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px;
  color: #fff;
  border-radius: 22px;
  background: linear-gradient(115deg, #3b17b5, #7549f7);
}

.help-actions h2,
.help-actions p {
  margin: 0;
}

.help-actions p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.75);
}

.help-actions > div:last-child {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .help-header nav a:not(.primary-button) {
    display: none;
  }

  .help-hero {
    padding: 36px 24px;
  }

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

  .help-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Uzman Bul */
.expert-page {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.expert-intro {
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(220px, .55fr);
  align-items: center;
  gap: 24px;
  padding: 48px 54px;
  overflow: hidden;
  border: 1px solid #e7e0f5;
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 91, 22, 0.18), transparent 26%),
    linear-gradient(125deg, #f2edff 0%, #fffaf5 100%);
}

.expert-intro > div:first-child > span,
.expert-form-heading > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.expert-intro h1 {
  max-width: none;
  margin: 12px 0 14px;
  font-size: clamp(32px, 3.3vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.expert-intro p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.expert-intro ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.expert-intro li {
  padding: 9px 13px;
  border: 1px solid #ded3fa;
  border-radius: 999px;
  color: #49388b;
  background: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 750;
}

.expert-visual {
  position: relative;
  width: 220px;
  height: 220px;
  justify-self: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--violet), #8a62ff);
  box-shadow: 0 24px 55px rgba(84, 36, 235, 0.24);
}

.expert-visual-person::before,
.expert-visual-person::after {
  content: "";
  position: absolute;
  left: 50%;
  background: #fff;
  transform: translateX(-50%);
}

.expert-visual-person::before {
  top: 47px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
}

.expert-visual-person::after {
  bottom: 39px;
  width: 116px;
  height: 72px;
  border-radius: 70px 70px 24px 24px;
}

.expert-visual i {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 5px solid #ffb28c;
  border-radius: 50%;
}

.expert-visual i:nth-of-type(1) { top: 10px; right: 15px; }
.expert-visual i:nth-of-type(2) { bottom: 20px; left: 4px; width: 15px; height: 15px; }
.expert-visual i:nth-of-type(3) { top: 72px; left: -20px; width: 29px; height: 29px; }

.expert-form-card {
  margin-top: 26px;
  padding: 38px 42px 42px;
  border: 1px solid #e8e2f0;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(45, 26, 74, 0.08);
}

.expert-form-heading h2 {
  margin: 8px 0 8px;
  font-size: 30px;
  letter-spacing: -0.035em;
}

.expert-form-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.expert-form-error {
  margin-top: 22px;
  padding: 13px 15px;
  border: 1px solid #ffc7c1;
  border-radius: 12px;
  color: #bd2d25;
  background: #fff6f5;
  font-size: 13px;
  font-weight: 700;
}

.expert-form-success {
  margin-top: 22px;
  padding: 13px 15px;
  border: 1px solid #a7e1c0;
  border-radius: 12px;
  color: #176b3b;
  background: #edf9f2;
  font-size: 13px;
  font-weight: 700;
}

.expert-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.expert-form label {
  display: grid;
  gap: 8px;
}

.expert-form label > span {
  color: #393440;
  font-size: 13px;
  font-weight: 750;
}

.expert-form input,
.expert-form textarea {
  width: 100%;
  border: 1px solid #ded8e8;
  border-radius: 13px;
  outline: 0;
  color: var(--ink);
  background: #fbfafd;
  font: inherit;
  transition: 150ms ease;
}

.expert-form input {
  height: 50px;
  padding: 0 15px;
}

.expert-form textarea {
  min-height: 126px;
  padding: 14px 15px;
  resize: vertical;
}

.expert-form input:focus,
.expert-form textarea:focus {
  border-color: rgba(84, 36, 235, 0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(84, 36, 235, 0.08);
}

.expert-form-wide,
.expert-form-consent,
.expert-form-submit {
  grid-column: 1 / -1;
}

.expert-form .expert-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #625d69;
  font-size: 12px;
  line-height: 1.45;
}

.expert-form .expert-form-consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin: 1px 0 0;
  accent-color: var(--violet);
}

.expert-form .expert-form-consent span {
  color: inherit;
  font: inherit;
}

.expert-form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.expert-form-submit small {
  color: #8d8796;
  line-height: 1.4;
}

.expert-form-submit button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #ff712d, var(--orange));
  box-shadow: 0 12px 26px rgba(255, 91, 22, 0.22);
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 820px) {
  .expert-intro {
    grid-template-columns: 1fr;
    padding: 38px 28px;
  }

  .expert-visual {
    display: none;
  }

  .expert-intro h1 {
    white-space: normal;
  }

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

  .expert-form-wide,
  .expert-form-consent,
  .expert-form-submit {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .expert-page {
    width: min(100% - 28px, 520px);
    padding-top: 24px;
  }

  .expert-form-card {
    padding: 28px 20px;
  }

  .expert-form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .expert-form-submit button {
    width: 100%;
  }
}

/* Paketler ve kredi hesaplama sayfaları */
.utility-body {
  min-height: 100vh;
  background: #fbfaff;
}

.utility-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.utility-header-inner {
  width: min(1180px, calc(100% - 48px));
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
}

.utility-header nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 700;
}

.utility-header nav a:not(.primary-button):hover {
  color: var(--violet);
}

.packages-page,
.credit-page {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 80px;
}

.packages-hero,
.credit-intro {
  max-width: 1100px;
  margin: 0 auto 42px;
  text-align: center;
}

.packages-hero > span,
.credit-intro > span,
.package-comparison > div > span,
.credit-results > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.packages-hero h1,
.credit-intro h1 {
  margin: 12px 0 14px;
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.packages-hero h1 {
  font-size: clamp(34px, 4.1vw, 52px);
  white-space: nowrap;
}

.packages-hero p,
.credit-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.package-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  overflow: hidden;
  border: 1px solid #e7e1ef;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(42, 26, 70, 0.08);
  transition: 180ms ease;
}

.package-card::before {
  content: "";
  position: absolute;
  top: -72px;
  right: -58px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(84, 36, 235, 0.07);
}

.package-card:nth-child(1) { border-top: 7px solid #9b94a5; }
.package-card:nth-child(2) { border-top: 7px solid var(--orange); }
.package-card:nth-child(3) { border-top: 7px solid var(--violet); }
.package-card:nth-child(4) { border-top: 7px solid #f5b400; }

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(42, 26, 70, 0.14);
}

.package-card.featured {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(150deg, #ff7131, #f04b0d);
  box-shadow: 0 24px 55px rgba(255, 91, 22, 0.24);
}

.package-card.featured::before {
  background: rgba(255, 255, 255, 0.12);
}

.package-card.package-card-baslangic,
.package-card.package-card-avantaj,
.package-card.package-card-profesyonel,
.package-card.package-card-kurumsal {
  color: #fff;
  border: 1px solid transparent;
}

.package-card-baslangic {
  background: linear-gradient(150deg, #1597bb, #0877a5);
  box-shadow: 0 22px 50px rgba(8, 119, 165, .22);
}

.package-card-avantaj,
.package-card-avantaj.featured {
  background: linear-gradient(150deg, #ff7131, #f04b0d);
  box-shadow: 0 24px 55px rgba(255, 91, 22, .24);
}

.package-card-profesyonel {
  background: linear-gradient(150deg, #7752ed, #4f2acb);
  box-shadow: 0 22px 50px rgba(84, 36, 235, .23);
}

.package-card-kurumsal {
  background: linear-gradient(150deg, #20a878, #08735f);
  box-shadow: 0 22px 50px rgba(8, 115, 95, .23);
}

.package-card-baslangic::before,
.package-card-avantaj::before,
.package-card-profesyonel::before,
.package-card-kurumsal::before {
  background: rgba(255, 255, 255, .12);
}

.package-card-baslangic > p,
.package-card-avantaj > p,
.package-card-profesyonel > p,
.package-card-kurumsal > p,
.package-card-baslangic .package-price small,
.package-card-avantaj .package-price small,
.package-card-profesyonel .package-price small,
.package-card-kurumsal .package-price small {
  color: rgba(255, 255, 255, .8);
}

.package-card-baslangic .package-icon,
.package-card-avantaj .package-icon,
.package-card-profesyonel .package-icon,
.package-card-kurumsal .package-icon {
  background: #fff;
}

.package-card-baslangic .package-icon { color: #0877a5; }
.package-card-avantaj .package-icon { color: var(--orange); }
.package-card-profesyonel .package-icon { color: #5c37d8; }
.package-card-kurumsal .package-icon { color: #08735f; }

.package-popular {
  position: absolute;
  top: 15px;
  right: 14px;
  padding: 6px 8px;
  border-radius: 999px;
  color: #b33a0b;
  background: #fff4df;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.package-icon {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  color: var(--violet);
  background: #f0ecff;
}

.featured .package-icon {
  color: var(--orange);
  background: #fff;
}

.package-icon span {
  position: relative;
  width: 21px;
  height: 18px;
  display: block;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.package-icon span::before,
.package-icon span::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.package-icon span::before {
  top: 4px;
  left: 1px;
  width: 15px;
  height: 2px;
  transform: rotate(25deg);
}

.package-icon span::after {
  top: 1px;
  left: 9px;
  width: 2px;
  height: 13px;
  transform: rotate(28deg);
}

.package-card h2 {
  margin: 0 0 10px;
  font-size: 25px;
}

.package-card > p {
  min-height: 66px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.package-card.featured > p,
.package-card.featured .package-price small {
  color: rgba(255, 255, 255, 0.78);
}

.package-card-baslangic > p,
.package-card-avantaj > p,
.package-card-profesyonel > p,
.package-card-kurumsal > p {
  color: #fff;
}

.package-price {
  display: grid;
  gap: 4px;
  margin: 24px 0;
}

.package-price strong {
  font-size: 34px;
  letter-spacing: -0.045em;
}

.package-price small {
  color: #9992a2;
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 23px;
  font-size: 13px;
  line-height: 1.35;
}

.package-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.package-card.featured li::before {
  color: #fff;
}

.package-card-baslangic li::before,
.package-card-avantaj li::before,
.package-card-profesyonel li::before,
.package-card-kurumsal li::before {
  color: #fff;
}

.package-button {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid #dcd3f5;
  border-radius: 13px;
  color: var(--violet);
  background: #f7f4ff;
  font-size: 13px;
  font-weight: 800;
}

.package-card.featured .package-button {
  color: var(--orange);
  border-color: #fff;
  background: #fff;
}

.package-card-baslangic .package-button,
.package-card-avantaj .package-button,
.package-card-profesyonel .package-button,
.package-card-kurumsal .package-button {
  border-color: #fff;
  background: #fff;
}

.package-card-baslangic .package-button { color: #0877a5; }
.package-card-avantaj .package-button { color: var(--orange); }
.package-card-profesyonel .package-button { color: #5c37d8; }
.package-card-kurumsal .package-button { color: #08735f; }

.package-comparison {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 42px;
  padding: 34px 38px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(120deg, #3514a7, #7348f7);
}

.package-comparison h2 {
  margin: 8px 0 9px;
  font-size: 30px;
}

.package-comparison p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.package-comparison a {
  flex: 0 0 auto;
  padding: 13px 17px;
  border-radius: 12px;
  color: var(--violet-dark);
  background: #fff;
  font-weight: 800;
}

.package-faq {
  padding: 58px 0 0;
}

.package-faq h2 {
  margin: 0 0 20px;
  font-size: 32px;
}

.package-faq > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.package-faq details {
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.package-faq summary {
  padding: 20px 0;
  cursor: pointer;
  font-weight: 800;
}

.package-faq p {
  margin: -3px 0 20px;
  color: var(--muted);
  line-height: 1.5;
}

.package-help-page {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 80px;
}

.package-help-intro {
  margin-bottom: 30px;
  text-align: center;
}

.package-help-intro > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
}

.package-help-intro h1 {
  margin: 10px 0 12px;
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -.045em;
}

.package-help-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.package-help-form {
  padding: 30px;
  border: 1px solid #e7e1ef;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(42, 26, 70, .08);
}

.package-help-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.package-help-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.package-help-form input,
.package-help-form select,
.package-help-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #ddd5e8;
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 500;
  outline: none;
}

.package-help-form input:focus,
.package-help-form select:focus,
.package-help-form textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(84, 36, 235, .1);
}

.package-help-form textarea {
  resize: vertical;
}

.package-help-form button {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 0 18px;
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(120deg, #3514a7, #7348f7);
  font-weight: 850;
  cursor: pointer;
}

.package-help-notice {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
}

.package-help-notice p { margin: 0; }
.package-help-notice p + p { margin-top: 5px; }
.package-help-notice.success { color: #176b3b; background: #eaf8f0; }
.package-help-notice.error { color: #a72b20; background: #fff0ee; }
.package-help-honeypot { position: absolute !important; left: -9999px !important; }

.expert-pool-page {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.expert-pool-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.expert-pool-heading > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
}

.expert-pool-heading h1 {
  margin: 10px 0 10px;
  font-size: clamp(36px, 5vw, 54px);
  letter-spacing: -.05em;
}

.expert-pool-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.expert-pool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.expert-request-card {
  padding: 24px;
  border: 1px solid #e6dff1;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(42, 26, 70, .07);
}

.expert-request-card > div,
.expert-request-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.expert-request-card > div span {
  padding: 6px 10px;
  border-radius: 999px;
  color: #4f2acb;
  background: #f0ecff;
  font-size: 12px;
  font-weight: 800;
}

.expert-request-card time {
  color: #9992a2;
  font-size: 11px;
}

.expert-request-card h2 {
  margin: 20px 0 9px;
  font-size: 22px;
}

.expert-request-card p {
  min-height: 70px;
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.55;
}

.expert-request-card > a {
  padding: 13px 15px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(125deg, #5424eb, #7651ef);
  font-size: 13px;
}

.expert-pool-empty {
  padding: 28px;
  border: 1px dashed #d8cfeb;
  border-radius: 18px;
  color: var(--muted);
  background: #fff;
  text-align: center;
}

.utility-footer {
  min-height: 90px;
  padding: 22px max(24px, calc((100vw - 1180px) / 2));
}

.utility-footer a {
  color: var(--orange);
  font-size: 20px;
  font-weight: 900;
}

.credit-calculator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 24px;
  padding: 26px;
  border: 1px solid #e8e2f2;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(42, 26, 70, 0.1);
}

.credit-calculator form {
  display: grid;
  gap: 18px;
  padding: 12px;
}

.credit-calculator label {
  display: grid;
  gap: 8px;
  color: #4d4656;
  font-size: 13px;
  font-weight: 750;
}

.credit-calculator input {
  height: 52px;
  padding: 0 16px;
  border: 1px solid #ded6ec;
  border-radius: 13px;
  outline: 0;
  background: #fbfaff;
}

.credit-calculator input:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(84, 36, 235, 0.08);
}

.credit-calculator button {
  height: 52px;
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #ff712d, var(--orange));
  font-weight: 850;
  cursor: pointer;
}

.credit-results {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 28px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(145deg, #3514a7, #6940ed);
}

.credit-results > span {
  color: #ffb38c;
}

.credit-results > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.credit-results small {
  color: rgba(255, 255, 255, 0.7);
}

.credit-results strong {
  font-size: 20px;
}

.credit-results p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-faq > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .utility-header-inner {
    min-height: 70px;
  }

  .utility-header nav a:not(.primary-button) {
    display: none;
  }

  .packages-page,
  .credit-page {
    width: min(100% - 28px, 620px);
    padding-top: 40px;
  }

  .package-grid,
  .credit-calculator {
    grid-template-columns: 1fr;
  }

  .packages-hero h1 {
    font-size: clamp(30px, 10vw, 46px);
    white-space: normal;
  }

  .package-card > p {
    min-height: 0;
  }

  .package-comparison {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 24px;
  }

  .credit-calculator {
    padding: 14px;
  }

  .package-help-page {
    width: min(100% - 28px, 620px);
    padding-top: 40px;
  }

  .package-help-form {
    padding: 22px 18px;
  }

  .package-help-fields {
    grid-template-columns: 1fr;
  }

  .expert-pool-page {
    width: min(100% - 28px, 620px);
    padding-top: 40px;
  }

  .expert-pool-grid {
    grid-template-columns: 1fr;
  }
}
