:root {
  --blue-50: #eef2ff;
  --blue-100: #dce4ff;
  --blue-200: #b8c6ff;
  --blue-300: #8aa0ff;
  --blue-400: #5c78ff;
  --blue-500: #2d5bff;
  --blue-600: #1f48e0;
  --blue-700: #1839b8;
  --blue-800: #122c8c;
  --blue-900: #0b1c55;
  --sky: #7eb6ff;
  --violet: #8b7cff;
  --ink: #0b1c33;
  --ink-soft: rgba(11, 28, 51, 0.72);
  --ink-mute: rgba(11, 28, 51, 0.55);
  --glass: rgba(255, 255, 255, 0.55);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.7);
  --glass-shadow: 0 18px 50px rgba(45, 91, 255, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-script: "Caveat", cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(126, 182, 255, 0.4), transparent 55%),
    radial-gradient(900px 600px at 92% 8%, rgba(45, 91, 255, 0.28), transparent 50%),
    radial-gradient(800px 500px at 50% 110%, rgba(139, 124, 255, 0.18), transparent 55%),
    linear-gradient(160deg, #edf6ff 0%, #d7ebff 45%, #c4e0ff 100%);
  background-attachment: fixed;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.page-home {
  background-color: #f8f9ff;
  background-image:
    radial-gradient(900px 520px at 88% 0%, rgba(167, 139, 250, 0.1), transparent 55%),
    radial-gradient(720px 480px at 8% 12%, rgba(96, 165, 250, 0.08), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8f9ff 35%, #f3f0ff 70%, #eef2ff 100%);
  background-attachment: scroll;
  overflow-x: hidden;
}

body.page-home main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body.modal-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  width: min(1180px, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

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

a {
  color: var(--blue-700);
  text-decoration: none;
}

a:hover {
  color: var(--blue-500);
}

.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  border-radius: var(--radius);
}

.glass-strong {
  background: var(--glass-strong);
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.45rem 0.65rem 0.45rem 1.15rem;
  margin: 1rem auto 0;
  animation: rise 0.7s var(--ease) both;
  position: sticky;
  top: 0.75rem;
  z-index: 20;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 10px 36px rgba(45, 91, 255, 0.1),
    0 4px 16px rgba(139, 124, 255, 0.08);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

.topbar-magaza {
  grid-template-columns: 1fr auto;
}

.topbar-magaza .topnav {
  justify-self: end;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.1rem;
  line-height: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(45, 91, 255, 0.18));
}

.brand-word {
  height: 2.3rem;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  display: block;
  flex-shrink: 0;
}

.topnav-labels {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  user-select: none;
  min-width: 0;
}

.topnav-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: default;
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.topnav-label + .topnav-label {
  position: relative;
}

.topnav-label + .topnav-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.1rem;
  background: rgba(11, 28, 51, 0.1);
}

.topnav-label-icon {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

a.topnav-label {
  cursor: pointer;
  pointer-events: auto;
  color: var(--ink);
}

a.topnav-label:hover {
  color: var(--blue-600);
  background: rgba(45, 91, 255, 0.06);
}

.topnav-label.is-current {
  color: var(--blue-600);
  background: #eef5ff;
}

.topnav-label.is-current::before,
.topnav-label.is-current + .topnav-label::before {
  display: none;
}

.topnav {
  display: flex;
  gap: 0.45rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-align: center;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  box-shadow: 0 12px 28px rgba(45, 91, 255, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(45, 91, 255, 0.42);
  color: #fff;
}

.btn-ghost {
  color: var(--blue-800);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(45, 91, 255, 0.12);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.85);
  color: var(--blue-800);
}

.btn-light {
  color: var(--blue-700);
  background: #fff;
  box-shadow: 0 10px 24px rgba(11, 28, 51, 0.12);
}

.btn-light:hover {
  color: var(--blue-700);
  box-shadow: 0 14px 28px rgba(11, 28, 51, 0.16);
}

.btn-sm {
  padding: 0.58rem 1rem;
  font-size: 0.88rem;
}

.btn-wp {
  color: #065f46;
  background: rgba(209, 250, 229, 0.75);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.btn-buy {
  flex: 1;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* Landing (legacy stubs kept for section-title reuse) */
.section {
  padding: 1.5rem 0 3.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}

.section-lead {
  margin: 0 0 1.5rem;
  color: var(--ink-mute);
  max-width: 36rem;
}

.site-footer {
  margin-top: 2rem;
  padding: 2.5rem 0 2rem;
  color: var(--ink-mute);
  font-size: 0.9rem;
  border-top: 1px solid rgba(45, 91, 255, 0.08);
  background: transparent;
}

body.page-home .site-footer {
  background: rgba(248, 249, 255, 0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem 2rem;
  padding-bottom: 1.75rem;
}

.footer-brand .footer-tel {
  display: inline-block;
  margin-top: 0.65rem;
  line-height: 0;
}

.footer-brand .footer-tel img {
  display: block;
  width: min(280px, 100%);
  height: auto;
}

.footer-brand p {
  margin: 0.85rem 0 1rem;
  max-width: 22rem;
  color: var(--ink-mute);
  font-size: 0.92rem;
}

.footer-col {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.footer-col h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.footer-col a {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-muted {
  color: var(--ink-mute);
  font-size: 0.88rem;
}

.footer-social {
  display: flex;
  gap: 0.55rem;
}

.social-dot {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(45, 91, 255, 0.1);
  border: 1px solid rgba(45, 91, 255, 0.12);
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(45, 91, 255, 0.08);
  font-size: 0.85rem;
}

/* Magaza */
.page-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.5rem 0 1.1rem;
  flex-wrap: wrap;
}

.page-head h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  letter-spacing: -0.04em;
}

.page-head p {
  margin: 0.35rem 0 0;
  color: var(--ink-mute);
}

.cat-rail {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  margin-bottom: 1.1rem;
  scrollbar-width: thin;
}

.cat-btn {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.28);
  color: var(--blue-800);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.cat-btn.is-active,
.cat-btn:hover {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: #fff;
  border-color: transparent;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  animation: rise 0.65s var(--ease) both;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(8, 59, 122, 0.18);
}

.product-media {
  aspect-ratio: 16 / 11;
  background: linear-gradient(145deg, rgba(26, 122, 232, 0.18), rgba(94, 200, 255, 0.25));
  position: relative;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: rgba(8, 59, 122, 0.35);
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(15, 99, 201, 0.92);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
}

.product-body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.product-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.product-desc {
  color: var(--ink-mute);
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
}

.price-old {
  color: var(--ink-mute);
  text-decoration: line-through;
  font-size: 0.9rem;
}

.price-now {
  font-weight: 800;
  color: var(--blue-700);
  font-size: 1.15rem;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.85rem;
  align-items: stretch;
}

.product-buy-wrap {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  min-width: 0;
}

.product-buy-wrap .btn-buy {
  width: 100%;
}

.product-discount-tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% - 0.35rem);
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.28);
  pointer-events: none;
  white-space: nowrap;
}

.empty-state,
.empty-filter {
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--ink-mute);
}

.d-none { display: none !important; }
[hidden] { display: none !important; }

/* Checkout */
.pay-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 1.25rem auto 3rem;
  animation: rise 0.55s var(--ease) both;
}

.pay-header {
  margin-bottom: 1.1rem;
}

.pay-eyebrow {
  margin: 0;
  color: var(--blue-600);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.pay-header h1 {
  margin: 0.25rem 0 0.35rem;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.pay-lead {
  margin: 0;
  color: var(--ink-mute);
}

.checkout-with-aside {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.checkout-step {
  padding: 1.25rem;
}

.checkout-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.field {
  margin-bottom: 0.85rem;
}

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}

.field input,
.field select {
  width: 100%;
  border: 1px solid rgba(10, 79, 163, 0.16);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  padding: 0.78rem 0.9rem;
  font: inherit;
  color: var(--ink);
}

.field input:focus,
.field select:focus {
  outline: 2px solid rgba(26, 122, 232, 0.35);
  border-color: var(--blue-400);
}

.field-error {
  background: rgba(254, 226, 226, 0.85);
  color: #991b1b;
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}

.form-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.checkout-summary {
  padding: 1.15rem;
  position: sticky;
  top: 1rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0.4rem 0;
  font-size: 0.92rem;
}

.summary-line strong {
  font-size: 1.1rem;
  color: var(--blue-700);
}

.legal-checks {
  display: grid;
  gap: 0.55rem;
  margin: 0.9rem 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.legal-checks label {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

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

.choice-item {
  text-align: left;
  width: 100%;
  border: 1px solid rgba(10, 79, 163, 0.14);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  cursor: pointer;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}

.choice-item:hover,
.choice-item[aria-pressed="true"] {
  border-color: var(--blue-400);
  background: rgba(207, 230, 255, 0.75);
}

.choice-item strong {
  display: block;
  margin-bottom: 0.15rem;
}

.choice-item span {
  color: var(--ink-mute);
  font-size: 0.88rem;
}

.pay-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.pay-method {
  border: 1px solid rgba(10, 79, 163, 0.14);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  padding: 1rem;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.pay-method.is-selected {
  border-color: var(--blue-500);
  background: rgba(207, 230, 255, 0.8);
  box-shadow: inset 0 0 0 1px rgba(26, 122, 232, 0.25);
}

.pay-method strong {
  display: block;
  margin-bottom: 0.2rem;
}

.pay-panel {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
}

.pay-panel.is-visible {
  display: block;
}

.pay-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pay-method-icon {
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  color: var(--blue-600);
}

.pay-method-icon svg {
  width: 100%;
  height: 100%;
}

.pay-method-text {
  display: grid;
  gap: 0.15rem;
}

.pay-method-text small {
  color: var(--ink-mute);
  font-size: 0.82rem;
}

.pay-panels h2 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.bank-note {
  color: var(--ink-mute);
  font-size: 0.9rem;
}

.checkout-grid-page {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.75fr);
  gap: 1.25rem;
  align-items: start;
}

.checkout-with-aside.is-form-only {
  grid-template-columns: 1fr;
}

.checkout-with-aside.is-form-only .checkout-main-col {
  width: 100%;
}

.checkout-summary-slim {
  position: sticky;
  top: 5.5rem;
}

.summary-product-name {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.summary-amounts {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.summary-amount-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.92rem;
  align-items: baseline;
}

.summary-amount-taksit strong {
  color: #ea580c;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.summary-amount-total strong {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.btn-complete {
  width: 100%;
}

.checkout-recaptcha {
  display: flex;
  justify-content: center;
  margin: 0 0 0.75rem;
  overflow: hidden;
  max-width: 100%;
}

.checkout-recaptcha .g-recaptcha {
  transform-origin: center top;
}

@media (max-width: 360px) {
  .checkout-recaptcha .g-recaptcha {
    transform: scale(0.92);
  }
}

.referans-hint {
  margin: 0.65rem 0 0;
  color: var(--ink-mute);
  font-size: 0.9rem;
}

/* Koçluk / tavsiye / yayın */
.kocluk-step {
  display: grid;
  gap: 0.85rem;
}

.kocluk-title {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  font-size: 1.25rem;
}

.kocluk-desc {
  margin: 0;
  color: var(--ink-mute);
}

.kocluk-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 1rem;
  align-items: start;
}

.kocluk-main {
  display: grid;
  gap: 0.75rem;
}

.kocluk-list,
.tavsiye-step-list,
.yayin-accordion {
  display: grid;
  gap: 0.65rem;
}

.kocluk-card,
.tavsiye-item,
.yayin-item {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(10, 79, 163, 0.14);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  cursor: pointer;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.kocluk-card.is-selected,
.tavsiye-item.is-selected,
.yayin-item.is-selected {
  border-color: var(--blue-400);
  background: rgba(207, 230, 255, 0.75);
}

.kocluk-card-top,
.yayin-item-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.yayin-item-head .tavsiye-check-mark {
  flex: 0 0 auto;
}

.yayin-item-head strong {
  flex: 1;
  min-width: 0;
}

.kocluk-card small,
.yayin-item-body {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-mute);
  font-size: 0.86rem;
}

.kocluk-price {
  font-weight: 800;
  color: var(--blue-700);
  white-space: nowrap;
}

.kocluk-side {
  position: sticky;
  top: 5.5rem;
}

.kocluk-warn,
.kocluk-praise {
  padding: 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(10, 79, 163, 0.12);
}

.kocluk-warn {
  background: rgba(254, 243, 199, 0.7);
  border-color: rgba(217, 119, 6, 0.25);
}

.kocluk-praise {
  background: rgba(209, 250, 229, 0.7);
  border-color: rgba(5, 150, 105, 0.25);
}

.kocluk-warn h3,
.kocluk-praise h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.kocluk-warn p,
.kocluk-praise p {
  margin: 0 0 0.55rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.kocluk-praise-badge {
  display: inline-block;
  margin: 0 0 0.45rem !important;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.15);
  color: #047857;
  font-size: 0.75rem !important;
  font-weight: 800;
}

.tavsiye-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tavsiye-check-mark {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 6px;
  border: 2px solid rgba(10, 79, 163, 0.3);
  flex: 0 0 auto;
  position: relative;
}

.tavsiye-item.is-selected .tavsiye-check-mark,
.yayin-item.is-selected .tavsiye-check-mark {
  border-color: var(--blue-600);
  background: var(--blue-600);
}

.tavsiye-item.is-selected .tavsiye-check-mark::after,
.yayin-item.is-selected .tavsiye-check-mark::after {
  content: "";
  position: absolute;
  left: 0.22rem;
  top: 0.02rem;
  width: 0.28rem;
  height: 0.55rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.tavsiye-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.tavsiye-meta em {
  font-style: normal;
  font-weight: 800;
  color: var(--blue-700);
  white-space: nowrap;
}

.yayin-item-body {
  display: none;
}

.yayin-item.is-open .yayin-item-body,
.yayin-item.is-selected .yayin-item-body {
  display: block;
}

.pay-product {
  padding: 1.15rem;
  position: sticky;
  top: 5.5rem;
}

.pay-product.is-hidden {
  display: none;
}

.pay-product-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pay-price-lines {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.pay-line {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.pay-line.is-muted {
  color: var(--ink-mute);
}

.pay-line em {
  font-style: normal;
  font-weight: 700;
}

.pay-totals-stack {
  display: grid;
  gap: 0.55rem;
  text-align: right;
}

.pay-total-label,
.pay-taksit-label {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-bottom: 0.15rem;
}

.pay-taksit {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #ea580c;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.pay-total {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

/* Referans overlay */
.ref-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.ref-overlay[hidden] {
  display: none !important;
}

.ref-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 42, 86, 0.45);
  backdrop-filter: blur(6px);
}

.ref-modal {
  position: relative;
  width: min(420px, 100%);
  padding: 1.35rem;
  z-index: 1;
}

.ref-modal h3 {
  margin: 0 1.5rem 0.35rem 0;
  font-family: var(--font-display);
}

.ref-lead {
  margin: 0 0 1rem;
  color: var(--ink-mute);
  font-size: 0.92rem;
}

.ref-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.checkout-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-mute);
}

/* Sipariş detay */
.siparis-detay-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 1.25rem;
  align-items: start;
}

.siparis-detay-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.siparis-meta {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1rem;
}

.siparis-meta div {
  display: grid;
  gap: 0.1rem;
}

.siparis-meta dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  font-weight: 800;
}

.siparis-meta dd {
  margin: 0;
  font-weight: 600;
}

.siparis-kalem-wrap {
  grid-column: 1 / -1;
  overflow-x: auto;
  margin: 0;
}

.siparis-kalem-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.siparis-kalem-table th,
.siparis-kalem-table td {
  padding: 0.5rem 0.65rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(10, 79, 163, 0.12);
}

.siparis-kalem-table thead th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  font-weight: 800;
}

.siparis-kalem-table tbody td:first-child {
  color: var(--ink-mute);
  font-weight: 700;
  white-space: nowrap;
  width: 1%;
}

.siparis-kalem-table th:last-child,
.siparis-kalem-table td:last-child {
  text-align: right;
  white-space: nowrap;
  font-weight: 700;
}

.bank-dl {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.bank-dl div {
  display: grid;
  gap: 0.15rem;
}

.bank-dl dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  font-weight: 800;
}

.bank-dl dd {
  margin: 0;
  font-weight: 700;
}

.iban {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  word-break: break-all;
}

/* Order detail */
.order-wrap {
  width: min(820px, calc(100% - 2rem));
  margin: 1.5rem auto 3rem;
}

.order-card {
  padding: 1.4rem;
  margin-bottom: 1rem;
}

.order-card h1,
.order-card h2 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.order-meta {
  display: grid;
  gap: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.order-lines {
  list-style: none;
  margin: 0;
  padding: 0;
}

.order-lines li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(10, 79, 163, 0.08);
}

.legal-page {
  width: min(820px, calc(100% - 2rem));
  margin: 1.5rem auto 3rem;
  padding: 1.5rem;
}

.legal-page h1 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  margin-top: 0;
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 42, 86, 0.45);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 1rem;
  z-index: 40;
}

.modal-card {
  width: min(640px, 100%);
  max-height: min(80vh, 720px);
  overflow: auto;
  padding: 1.25rem 1.35rem;
}

.modal-card h2 {
  margin-top: 0;
  font-family: var(--font-display);
}

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

@keyframes drift {
  from { transform: translate(-8px, 0); }
  to { transform: translate(12px, 10px); }
}

@keyframes floaty {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}

@keyframes glitch {
  0%, 100% { transform: translate(0); opacity: 0.55; }
  20% { transform: translate(-3px, 1px); opacity: 0.8; }
  40% { transform: translate(3px, -2px); opacity: 0.4; }
  60% { transform: translate(-2px, 2px); opacity: 0.7; }
  80% { transform: translate(2px, -1px); opacity: 0.5; }
}

/* ===== Landing page ===== */
.landing-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.75rem 0 1.75rem;
  min-height: 0;
  overflow: visible;
}

.landing-hero-copy {
  animation: rise 0.75s var(--ease) both;
}

.landing-eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(45, 91, 255, 0.08);
  color: var(--blue-600);
  font-size: 0.82rem;
  font-weight: 700;
}

.landing-hero-copy h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.landing-hero-copy h1 em {
  font-style: normal;
  color: var(--blue-500);
}

.landing-lead {
  margin: 0 0 1.5rem;
  max-width: 32rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.landing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.landing-social-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.landing-social-proof p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-mute);
  max-width: 16rem;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 2px solid #fff;
  margin-left: -0.55rem;
  background: linear-gradient(145deg, var(--blue-300), var(--violet));
}

.avatar-stack span:first-child { margin-left: 0; }
.avatar-stack span:nth-child(2) { background: linear-gradient(145deg, #7eb6ff, #2d5bff); }
.avatar-stack span:nth-child(3) { background: linear-gradient(145deg, #a78bfa, #6366f1); }
.avatar-stack span:nth-child(4) { background: linear-gradient(145deg, #38bdf8, #2563eb); }
.avatar-stack span:nth-child(5) { background: linear-gradient(145deg, #c4b5fd, #2d5bff); }

.landing-hero-visual {
  position: relative;
  min-height: 420px;
  margin-top: 1.25rem;
  padding-top: 0.75rem;
  animation: rise 0.85s var(--ease) 0.1s both;
  overflow: visible;
  max-width: 100%;
  perspective: 1600px;
  perspective-origin: 18% 42%;
}

.landing-illu {
  display: block;
  max-width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.hero-float {
  position: absolute;
  z-index: 2;
  animation: floaty 5s ease-in-out infinite alternate;
}

.hero-float-torus {
  width: 148px;
  top: 22%;
  left: -4%;
  right: auto;
  z-index: 4;
  animation-delay: 0.2s;
}

.hero-float-sphere {
  width: 72px;
  bottom: 8%;
  left: 6%;
  animation-delay: 0.7s;
  z-index: 4;
}

.hero-float-pie {
  width: 88px;
  top: 8%;
  right: 4%;
  animation-delay: 1.1s;
  z-index: 3;
}

.dash-mock {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 0.75rem;
  padding: 0.85rem;
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin-left: 10%;
  transform-origin: 50% 55%;
  transform-style: preserve-3d;
  transform: rotateX(16deg) rotateY(-30deg) translateY(1.15rem) translateZ(0);
  box-shadow:
    -28px 36px 70px rgba(45, 91, 255, 0.2),
    12px 28px 48px rgba(11, 28, 51, 0.12);
  will-change: transform;
}

.dash-side {
  background: rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  padding: 0.85rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.dash-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 0.75rem;
  color: var(--blue-700);
}

.dash-side ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.dash-side li {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-mute);
  padding: 0.35rem 0.45rem;
  border-radius: 8px;
}

.dash-side li.is-on {
  background: rgba(45, 91, 255, 0.12);
  color: var(--blue-600);
}

.dash-main {
  padding: 0.35rem 0.25rem 0.25rem;
}

.dash-hello {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.dash-widgets {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.55rem;
}

.dash-card {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  padding: 0.65rem 0.7rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.dash-card small {
  display: block;
  color: var(--ink-mute);
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.dash-card strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.dash-ring {
  display: grid;
  place-items: center;
  gap: 0.2rem;
  grid-row: span 2;
}

.dash-ring img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.dash-ring span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-mute);
}

.dash-net strong {
  color: #059669;
}

.dash-chart {
  grid-column: span 2;
}

.dash-tasks {
  grid-column: span 3;
}

.dash-tasks ul {
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.25rem;
}

.dash-tasks li {
  font-size: 0.78rem;
  color: var(--ink-soft);
  padding: 0.35rem 0.45rem;
  border-radius: 8px;
  background: rgba(45, 91, 255, 0.05);
}

.dash-ai {
  position: absolute;
  right: 0.5rem;
  bottom: 0.55rem;
  background: linear-gradient(135deg, var(--blue-500), var(--violet));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(45, 91, 255, 0.35);
}

.landing-highlights {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: min(1180px, calc(100% - 2rem));
  margin-top: 0.75rem;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(45, 91, 255, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(45, 91, 255, 0.06);
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.landing-highlights article {
  text-align: left;
  padding: 1rem 1.05rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
  position: relative;
}

.landing-highlights article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 18%;
  right: 0;
  width: 1px;
  background: rgba(45, 91, 255, 0.14);
}

.hi-text {
  min-width: 0;
}

.landing-highlights h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.25;
}

.landing-highlights p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.4;
  color: var(--ink-mute);
  max-width: none;
}

.hi-illu {
  width: 3.35rem;
  height: 3.35rem;
  object-fit: contain;
  margin: 0;
  flex-shrink: 0;
}

.landing-select {
  padding: 1rem 0 3rem;
}

.exam-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.exam-card {
  appearance: none;
  border: 1.5px solid rgba(45, 91, 255, 0.12);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  padding: 1.15rem 1rem;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: var(--ink);
  position: relative;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease), background 0.2s var(--ease);
}

.exam-card:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 91, 255, 0.35);
  box-shadow: 0 14px 30px rgba(45, 91, 255, 0.12);
}

.exam-card.is-selected {
  border-color: var(--blue-500);
  background: rgba(238, 242, 255, 0.95);
  box-shadow: 0 14px 30px rgba(45, 91, 255, 0.16);
}

.exam-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.15rem;
}

.exam-card span:last-child {
  color: var(--ink-mute);
  font-size: 0.85rem;
}

.exam-check {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  border: 1.5px solid rgba(45, 91, 255, 0.25);
  background: #fff;
}

.exam-card.is-selected .exam-check {
  border-color: var(--blue-500);
  background: var(--blue-500);
  box-shadow: inset 0 0 0 3px #fff;
}

.grade-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.grade-chip {
  appearance: none;
  border: 1.5px solid rgba(45, 91, 255, 0.12);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  padding: 1rem 0.75rem;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease), color 0.2s var(--ease);
}

.grade-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 91, 255, 0.35);
}

.grade-chip.is-selected {
  border-color: var(--blue-500);
  background: rgba(45, 91, 255, 0.1);
  color: var(--blue-700);
}

.landing-services {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1rem;
  padding: 0 0 3rem;
  align-items: stretch;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.service-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(45, 91, 255, 0.08);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(45, 91, 255, 0.1);
}

.service-card h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-mute);
}

.svc-illu {
  width: 3.75rem;
  height: 3.75rem;
  object-fit: contain;
  flex-shrink: 0;
}

.svc-arrow {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(45, 91, 255, 0.1);
  color: var(--blue-600);
  font-weight: 800;
}

.promo-netpilot {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 1.85rem 1.6rem 1.6rem;
  color: #fff;
  background: linear-gradient(145deg, #2a67ff 0%, #5b4dff 42%, #9055ff 68%, #ff94a2 100%);
  box-shadow: 0 22px 50px rgba(45, 91, 255, 0.28);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 100%;
  isolation: isolate;
}

.promo-netpilot::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent 0 18px,
      rgba(255, 255, 255, 0.08) 18px 20px
    ),
    radial-gradient(ellipse 80% 50% at 70% 80%, rgba(255, 255, 255, 0.18), transparent 60%);
}

.promo-netpilot > * {
  position: relative;
  z-index: 1;
}

.promo-netpilot h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  letter-spacing: -0.03em;
  line-height: 1.28;
  text-align: left;
  font-weight: 800;
}

.promo-body {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0.75rem 0.5rem;
  align-items: end;
  flex: 1;
}

.promo-copy {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  align-items: flex-start;
  min-width: 0;
}

.promo-netpilot ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.promo-netpilot li {
  position: relative;
  padding-left: 1.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
}

.promo-netpilot li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #4f8cff, #7b5cff);
  box-shadow: 0 4px 10px rgba(20, 40, 120, 0.25);
}

.promo-illu {
  width: min(11.5rem, 100%);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  justify-self: end;
  align-self: center;
  margin: 0;
  filter: drop-shadow(0 16px 28px rgba(40, 20, 90, 0.28));
}

.promo-cta {
  margin-top: auto;
  align-self: flex-start;
  width: auto;
  padding-inline: 1.35rem;
  color: #2a4fd4;
  font-weight: 800;
}

.promo-cta:hover {
  color: #2a4fd4;
}

/* NetPilot döngü kartı */
.dongu-slogan-band {
  margin: 1.5rem auto 0.35rem;
  text-align: center;
}

.dongu-slogan-band .dongu-slogan {
  margin: 0 auto;
  max-width: 28rem;
  font-family: var(--font-script);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #3d6dff;
  text-align: center;
  text-shadow: 0 2px 16px rgba(255, 255, 255, 0.95);
}

.landing-dongu {
  margin: 0.5rem auto 1.35rem;
}

.dongu-card-shell {
  position: relative;
  overflow: visible;
  border-radius: 28px;
  padding: 1.5rem 1.5rem 1.35rem;
  background-color: #f4f7ff;
  background-image: url("../img/backasama.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 56px rgba(70, 90, 180, 0.1);
}

.dongu-head {
  text-align: left;
  max-width: 36rem;
  margin: 0 0 0.75rem;
}

.dongu-brand {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-500);
}

.dongu-head h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #122238;
}

.dongu-lead {
  margin: 0;
  color: var(--ink-mute);
  font-size: 0.92rem;
  line-height: 1.45;
}

.dongu-stage {
  --pair-gap: 1.35rem;
  --card-h: 13.5rem;
  position: relative;
  height: clamp(720px, 80vw, 820px);
  margin-top: 0.35rem;
  padding: 0.5rem 0 0.75rem;
  overflow: visible;
}

.dongu-flow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.dongu-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: min(350px, 37.5%);
  margin: 0;
  pointer-events: none;
  filter: drop-shadow(0 18px 36px rgba(45, 91, 255, 0.22));
}

.dongu-hub img {
  display: block;
  width: 100%;
  height: auto;
}

.dongu-float {
  position: absolute;
  z-index: 0;
  width: 40px;
  height: auto;
  pointer-events: none;
  opacity: 0.85;
  filter: drop-shadow(0 8px 16px rgba(45, 91, 255, 0.2));
  animation: donguBob 9s ease-in-out infinite;
}

.dongu-float--orb {
  top: 42%;
  left: 38%;
  width: 36px;
}

.dongu-float--chat {
  top: 40%;
  right: 36%;
  width: 34px;
  animation-delay: -1.8s;
}

.dongu-float--target {
  top: 48%;
  left: 48%;
  width: 38px;
  animation-delay: -3.2s;
}

@keyframes donguBob {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.dongu-step {
  position: absolute;
  z-index: 3;
  display: block;
  width: min(360px, 32%);
  max-width: 380px;
  padding: 1.15rem 1.05rem 1.1rem;
  border-radius: 22px;
  overflow: visible;
  animation: donguBob 8.5s ease-in-out infinite;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.52) 0%,
      rgba(255, 255, 255, 0.28) 45%,
      rgba(230, 238, 255, 0.22) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 18px 42px rgba(60, 90, 180, 0.14),
    0 2px 0 rgba(255, 255, 255, 0.55) inset,
    0 -1px 0 rgba(120, 150, 220, 0.12) inset;
  backdrop-filter: blur(28px) saturate(1.65);
  -webkit-backdrop-filter: blur(28px) saturate(1.65);
}

/* Sol: hub dikey ortasına kilitli 1–2 çifti */
.dongu-step--1 {
  left: 0;
  top: calc(50% - var(--card-h) - var(--pair-gap) / 2);
  animation-delay: 0s;
}

.dongu-step--2 {
  left: 0;
  top: calc(50% + var(--pair-gap) / 2);
  animation-delay: -0.5s;
}

/* Üst: hub’ın hemen üstü */
.dongu-step--3 {
  top: 1%;
  left: 38%;
  width: min(340px, 30%);
  animation-delay: -0.9s;
}

/* Sağ: hub dikey ortasına kilitli 4–6 çifti */
.dongu-step--4 {
  right: 0;
  left: auto;
  top: calc(50% - var(--card-h) - var(--pair-gap) / 2);
  animation-delay: -1.6s;
}

.dongu-step--6 {
  right: 0;
  left: auto;
  top: calc(50% + var(--pair-gap) / 2);
  width: min(360px, 32%);
  max-width: 380px;
  animation-delay: -2s;
}

/* Alt: hub’ın hemen altı — 3 ile aynı yatay hiza */
.dongu-step--5 {
  left: 38%;
  bottom: 2%;
  top: auto;
  width: min(340px, 30%);
  animation-delay: -1.2s;
}

.dongu-anchor {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
}

.dongu-num {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #4f8cff, #6a5cff);
  box-shadow: 0 6px 14px rgba(45, 91, 255, 0.35);
  z-index: 2;
}

.dongu-step-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
  padding: 1.55rem 5.75rem 0 0.15rem;
}

.dongu-step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #142338;
  white-space: nowrap;
}

.dongu-step ul {
  margin: 0.05rem 0 0.3rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.3rem;
}

.dongu-step li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: #3a4d6e;
  line-height: 1.3;
  white-space: nowrap;
}

.dongu-step li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #5c9dff, #8b7cff);
}

.btn-dongu {
  margin-top: auto;
  align-self: flex-start;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  font-size: 0.76rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, #2d5bff 0%, #5c78ff 50%, #8b7cff 100%);
  box-shadow: 0 10px 22px rgba(45, 91, 255, 0.28);
  white-space: nowrap;
}

.btn-dongu:hover {
  color: #fff;
  box-shadow: 0 14px 28px rgba(45, 91, 255, 0.4);
  transform: translateY(-1px);
}

.btn-dongu svg {
  flex-shrink: 0;
}

.dongu-step-illu {
  position: absolute;
  top: 50%;
  right: -1.5rem;
  transform: translateY(-62%);
  width: clamp(127px, 13.8vw, 186px);
  max-height: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(40, 60, 140, 0.18));
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

.dongu-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.35rem;
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  list-style: none;
  border-radius: 16px;
  background: rgba(236, 242, 255, 0.72);
  border: 1px solid rgba(180, 200, 255, 0.35);
}

.dongu-strip li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #3a4f78;
  white-space: nowrap;
}

.dongu-strip svg {
  flex-shrink: 0;
  color: var(--blue-500);
}

@media (prefers-reduced-motion: reduce) {
  .dongu-step,
  .dongu-float {
    animation: none;
  }
}

@media (min-width: 1021px) and (max-width: 1180px) {
  .dongu-stage {
    --card-h: 12.25rem;
    height: clamp(680px, 84vw, 760px);
  }

  .dongu-hub {
    width: min(288px, 35%);
  }

  .dongu-step {
    width: min(320px, 31%);
    max-width: 340px;
    padding: 1rem 0.9rem;
  }

  .dongu-step--3,
  .dongu-step--5 {
    width: min(300px, 29%);
  }

  .dongu-step h3 {
    font-size: 0.88rem;
  }

  .dongu-step-body {
    padding-right: 5rem;
  }

  .dongu-step-illu {
    width: clamp(110px, 12.1vw, 161px);
    max-height: none;
  }

  .btn-dongu {
    white-space: normal;
    text-align: center;
  }

  .dongu-slogan-band .dongu-slogan {
    font-size: clamp(1.85rem, 3vw, 2.5rem);
  }
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto minmax(200px, 0.95fr);
  gap: 1rem 1.5rem;
  align-items: center;
  padding: 30px 1.75rem;
  margin-bottom: 1rem;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 48% 120% at 86% 50%, rgba(255, 186, 150, 0.42), transparent 62%),
    radial-gradient(ellipse 36% 90% at 78% 35%, rgba(210, 170, 255, 0.28), transparent 58%),
    linear-gradient(100deg, #f8f9ff 0%, #f0f2ff 42%, #faf4f8 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(70, 90, 180, 0.1);
  overflow: hidden;
}

.home-store {
  padding-block: 2rem 2.5rem;
}

.cta-banner-copy {
  min-width: 0;
  max-width: 26rem;
}

.cta-banner-copy h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.9vw, 1.4rem);
  letter-spacing: -0.03em;
  line-height: 1.28;
  color: #152238;
}

.cta-banner-copy p {
  margin: 0;
  color: #6b7a94;
  font-size: 0.88rem;
  line-height: 1.45;
}

.cta-banner-action {
  display: grid;
  place-items: center;
}

.btn-cta-banner {
  color: #fff;
  background: linear-gradient(90deg, #7b5cff 0%, #4f6fff 55%, #2d5bff 100%);
  box-shadow: 0 14px 32px rgba(79, 111, 255, 0.35);
  white-space: nowrap;
  padding: 0.82rem 1.35rem;
  font-size: 0.92rem;
}

.btn-cta-banner:hover {
  color: #fff;
  box-shadow: 0 18px 36px rgba(79, 111, 255, 0.45);
}

.cta-banner-art {
  display: grid;
  place-items: center;
  justify-self: end;
  width: 100%;
  max-width: 300px;
}

.cta-illu {
  display: block;
  width: 100%;
  height: auto;
  max-height: 148px;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
  user-select: none;
}

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.video-modal[hidden] {
  display: none !important;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 48, 0.55);
  backdrop-filter: blur(6px);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  background: #0b1224;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
  line-height: 1;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #111827;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.video-frame.broken {
  background:
    repeating-linear-gradient(
      -12deg,
      #0f172a 0 8px,
      #111827 8px 16px
    );
}

.video-broken-glitch {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 40%, rgba(45, 91, 255, 0.25) 50%, transparent 60%),
    linear-gradient(0deg, transparent 30%, rgba(248, 113, 113, 0.2) 50%, transparent 70%);
  mix-blend-mode: screen;
  animation: glitch 1.4s steps(2, end) infinite;
}

.video-broken-msg {
  position: relative;
  z-index: 1;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  padding: 1rem;
}

.video-broken-msg p {
  margin: 0.65rem 0 0.25rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.video-broken-msg small {
  color: rgba(255, 255, 255, 0.55);
}

.video-play-ghost {
  display: inline-grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  border: 2px dashed rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  position: relative;
}

.video-play-ghost::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.55);
  margin-left: 3px;
}

@media (max-width: 1020px) {
  .topnav-labels {
    display: none;
  }

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

  .landing-hero,
  .landing-services,
  .cta-banner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    text-align: center;
    padding: 30px 1.35rem;
    grid-template-columns: 1fr;
  }

  .cta-banner-copy {
    max-width: none;
  }

  .cta-banner-copy p {
    margin-inline: auto;
  }

  .cta-banner-action {
    order: 2;
    justify-self: center;
  }

  .cta-banner-art {
    order: 3;
    justify-self: center;
    max-width: 240px;
  }

  .cta-illu {
    max-height: 130px;
  }

  .promo-body {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .promo-illu {
    justify-self: center;
    order: -1;
    width: min(10rem, 55%);
  }

  .promo-netpilot h2 {
    text-align: center;
  }

  .promo-copy {
    align-items: center;
  }

  .promo-netpilot ul {
    width: 100%;
    max-width: 18rem;
  }

  .promo-cta {
    align-self: center;
  }

  .dongu-card-shell {
    padding: 1.35rem 1.1rem 1rem;
    overflow: hidden;
  }

  .dongu-slogan-band {
    margin: 1.25rem auto 0.25rem;
  }

  .dongu-slogan-band .dongu-slogan {
    font-size: clamp(1.75rem, 6.5vw, 2.4rem);
  }

  .dongu-head {
    text-align: center;
    max-width: none;
    margin: 0 auto 0.85rem;
  }

  .dongu-stage {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: auto;
    min-height: 0;
    padding: 0.5rem 0 0;
  }

  .dongu-hub {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: min(325px, 90%);
    margin: 0.25rem auto 0.75rem;
    order: -1;
    z-index: 2;
  }

  .dongu-flow,
  .dongu-float {
    display: none;
  }

  .dongu-step {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: none;
    margin-top: 0 !important;
    overflow: hidden;
  }

  .dongu-step-body {
    padding-right: 5.5rem;
  }

  .dongu-step h3,
  .dongu-step li {
    white-space: normal;
  }

  .dongu-step-illu {
    top: 50%;
    right: -0.75rem;
    transform: translateY(-55%);
  }

  .dongu-step--1 { order: 1; }
  .dongu-step--2 { order: 2; }
  .dongu-step--3 { order: 3; }
  .dongu-step--4 { order: 4; }
  .dongu-step--5 { order: 5; }
  .dongu-step--6 { order: 6; }

  .dongu-strip {
    gap: 0.65rem 1rem;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .landing-highlights {
    grid-template-columns: 1fr;
  }

  .landing-highlights article:last-child {
    grid-column: auto;
  }

  .landing-highlights article:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 10%;
    right: 10%;
    width: auto;
    height: 1px;
  }

  .exam-row {
    grid-template-columns: 1fr 1fr;
  }

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

  .dash-mock {
    grid-template-columns: 1fr;
    margin-left: 0;
    transform: rotateX(8deg) rotateY(-12deg);
    box-shadow:
      -12px 20px 40px rgba(45, 91, 255, 0.16),
      0 16px 32px rgba(11, 28, 51, 0.1);
  }

  .dash-side {
    display: none;
  }

  .landing-hero-visual {
    min-height: 0;
    perspective: 1100px;
  }

  .hero-float-torus {
    width: 100px;
    left: 0;
    top: 12%;
  }
}

@media (max-width: 860px) {
  .checkout-with-aside,
  .checkout-form .field-row,
  .checkout-grid-page,
  .kocluk-layout,
  .siparis-detay-grid,
  .pay-methods {
    grid-template-columns: 1fr;
  }

  .checkout-summary,
  .checkout-summary-slim,
  .kocluk-side,
  .pay-product {
    position: static;
  }

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

  .landing-highlights {
    grid-template-columns: 1fr;
  }

  .landing-highlights article:last-child {
    grid-column: auto;
  }

  .landing-highlights article:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 12%;
    right: 12%;
    width: auto;
    height: 1px;
  }

  .exam-row,
  .grade-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .exam-row,
  .grade-row {
    grid-template-columns: 1fr;
  }

  .dash-widgets {
    grid-template-columns: 1fr 1fr;
  }

  .dash-ring {
    grid-row: auto;
  }

  .dash-chart,
  .dash-tasks {
    grid-column: span 2;
  }
}

/* WhatsApp floating widget */
.wp-widget {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  max-width: calc(100vw - 2rem);
}

.wp-panel {
  width: min(340px, calc(100vw - 2rem));
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 60px rgba(11, 28, 51, 0.22);
  border: 1px solid rgba(15, 23, 42, 0.06);
  animation: rise 0.35s var(--ease) both;
}

.wp-panel[hidden] {
  display: none !important;
}

.wp-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  background: linear-gradient(135deg, #075e54 0%, #128c7e 55%, #25d366 140%);
  color: #fff;
}

.wp-panel-agent {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.wp-avatar {
  position: relative;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
}

.wp-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 999px;
}

.wp-online {
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: #25d366;
  border: 2px solid #075e54;
}

.wp-panel-agent strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.wp-panel-agent span {
  display: block;
  font-size: 0.72rem;
  line-height: 1.3;
  opacity: 0.9;
  max-width: 14.5rem;
}

.wp-panel-close {
  appearance: none;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.wp-panel-body {
  min-height: 168px;
  padding: 1rem 0.9rem 1.15rem;
  background-color: #e5ddd5;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.35) 0 1px, transparent 1.5px),
    radial-gradient(circle at 78% 32%, rgba(0, 0, 0, 0.04) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 42% 72%, rgba(0, 0, 0, 0.035) 0 1px, transparent 1.5px),
    radial-gradient(circle at 88% 78%, rgba(255, 255, 255, 0.28) 0 1.4px, transparent 2px),
    linear-gradient(180deg, rgba(229, 221, 213, 0.92), rgba(229, 221, 213, 1));
}

.wp-bubble {
  position: relative;
  max-width: 88%;
  background: #fff;
  border-radius: 4px 16px 16px 16px;
  padding: 0.55rem 0.75rem 1.15rem;
  box-shadow: 0 1px 1px rgba(11, 28, 51, 0.08);
}

.wp-bubble-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #128c7e;
  margin-bottom: 0.2rem;
}

.wp-bubble p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #111b21;
}

.wp-bubble time {
  position: absolute;
  right: 0.55rem;
  bottom: 0.3rem;
  font-size: 0.68rem;
  color: #8696a0;
}

.wp-panel-foot {
  padding: 0.85rem 0.9rem 1rem;
  background: #fff;
}

.wp-start-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  color: #fff !important;
  font-weight: 800;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 12px 28px rgba(18, 140, 126, 0.28);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.wp-start-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(18, 140, 126, 0.36);
  color: #fff !important;
}

.wp-nudge {
  position: relative;
  max-width: min(16rem, calc(100vw - 5rem));
  padding: 0.55rem 0.85rem;
  background: #fff;
  color: #111b21;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 10px 28px rgba(11, 28, 51, 0.16);
  cursor: pointer;
  animation: rise 0.35s var(--ease) both;
}

.wp-nudge[hidden] {
  display: none !important;
}

.wp-nudge::after {
  content: "";
  position: absolute;
  right: 1.15rem;
  bottom: -5px;
  width: 10px;
  height: 10px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 2px 2px 3px rgba(11, 28, 51, 0.06);
}

.wp-widget.is-open .wp-nudge {
  display: none !important;
}

.wp-launcher {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0.7rem;
  min-width: 3.6rem;
  min-height: 3.6rem;
  border-radius: 999px;
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  background: #25d366;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42);
  position: relative;
  flex-shrink: 0;
  transition:
    transform 0.2s var(--ease),
    background 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    padding 0.35s var(--ease),
    gap 0.35s var(--ease);
}

.wp-launcher:hover {
  transform: translateY(-2px);
  background: #20bd5a;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
}

.wp-launcher svg {
  color: #fff;
  flex-shrink: 0;
}

.wp-launcher-label {
  display: inline-block;
  max-width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  line-height: 0;
  pointer-events: none;
  transition: max-width 0.35s var(--ease), opacity 0.25s var(--ease);
}

.wp-widget.is-expanded .wp-launcher {
  padding: 0.78rem 1.1rem 0.78rem 0.95rem;
  gap: 0.55rem;
  min-width: 0;
  min-height: 0;
}

.wp-widget.is-expanded .wp-launcher-label {
  max-width: min(18rem, calc(100vw - 5rem));
  height: auto;
  opacity: 1;
  line-height: 1.25;
}

.wp-launcher-dot {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 0 2px #25d366;
}

.wp-widget.is-expanded .wp-launcher-dot {
  top: 0.35rem;
  right: 0.4rem;
}

.wp-widget.is-open .wp-launcher-dot {
  display: none;
}

@media (max-width: 620px) {
  .wp-widget {
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: calc(100vw - 1.5rem);
  }

  .wp-panel {
    width: min(340px, calc(100vw - 1.5rem));
  }

  .wp-widget.is-expanded .wp-launcher-label {
    max-width: min(16rem, calc(100vw - 5rem));
  }
}

/* ========== NetPilot AI page ========== */
body.page-netpilot {
  background-color: #f7f8fd;
  background-image:
    radial-gradient(900px 520px at 88% 0%, rgba(167, 139, 250, 0.12), transparent 55%),
    radial-gradient(720px 480px at 8% 18%, rgba(96, 165, 250, 0.1), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fd 40%, #eef2ff 100%);
  background-attachment: scroll;
}

body.page-netpilot main {
  padding-bottom: 3rem;
}

.np-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  text-align: left;
  padding: 2.25rem 0 1.25rem;
  width: min(960px, calc(100% - 2rem));
}

.np-hero-copy {
  flex: 1 1 18rem;
  min-width: 0;
}

.np-hero-art {
  flex: 0 0 auto;
  width: min(200px, 38vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(45, 91, 255, 0.22));
}

@media (max-width: 720px) {
  .np-hero {
    flex-direction: column;
    text-align: center;
  }

  .np-hero-cta {
    justify-content: center;
  }

  .np-hero-art {
    width: min(160px, 52vw);
    order: -1;
  }

  .np-lead {
    margin-left: auto;
    margin-right: auto;
  }
}

.np-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(139, 124, 255, 0.16), rgba(45, 91, 255, 0.12));
  color: #6d5ce7;
  font-size: 0.82rem;
  font-weight: 700;
}

.np-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.np-hero h1 em {
  font-style: normal;
  color: #6d5ce7;
}

.np-lead {
  margin: 0 0 1.35rem;
  max-width: 34rem;
  color: var(--ink-mute);
  font-size: 1rem;
  line-height: 1.6;
}

.np-hero-cta {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.np-flow-section {
  margin: 0.5rem auto 2rem;
}

.np-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "c1 c2 c3"
    "c6 c5 c4";
  gap: 1.35rem 1.15rem;
  align-items: stretch;
}

.np-card--1 { grid-area: c1; }
.np-card--2 { grid-area: c2; }
.np-card--3 { grid-area: c3; }
.np-card--4 { grid-area: c4; }
.np-card--5 { grid-area: c5; }
.np-card--6 { grid-area: c6; }

.np-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.15rem 1.1rem 1.2rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 40px rgba(70, 90, 180, 0.1);
}

.np-num {
  position: absolute;
  top: 0.85rem;
  left: 0.9rem;
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2d5bff, #8b7cff);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.np-card h2 {
  margin: 0 0 0.85rem 2.2rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.np-card-body {
  flex: 1;
  min-height: 0;
}

.np-arrow {
  position: absolute;
  z-index: 2;
  color: #5c78ff;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(45, 91, 255, 0.2));
}

.np-arrow--right {
  top: 50%;
  right: -1.05rem;
  transform: translateY(-50%);
}

.np-arrow--left {
  top: 50%;
  left: -1.05rem;
  transform: translateY(-50%);
}

.np-arrow--down {
  bottom: -1.35rem;
  left: 50%;
  transform: translateX(-50%);
}

.np-arrow--mobile {
  display: none;
}

/* Card 1 — results */
.np-results-top {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.np-donut-label {
  font-size: 9px;
  font-weight: 700;
  fill: var(--ink-mute);
}

.np-donut-value {
  font-size: 13px;
  font-weight: 800;
  fill: var(--ink);
}

.np-deneme-meta {
  flex: 1;
  min-width: 0;
}

.np-deneme-meta strong {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 0.45rem;
  color: var(--ink);
}

.np-deneme-meta ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.28rem;
}

.np-deneme-meta li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--ink-mute);
}

.np-deneme-meta b.is-ok { color: #16a34a; }
.np-deneme-meta b.is-bad { color: #e11d48; }
.np-deneme-meta b.is-mute { color: var(--ink-soft); }

.np-line-chart {
  padding: 0.55rem 0.65rem 0.35rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #f5f7ff, #eef2ff);
}

.np-line-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
}

.np-line-chart-head small {
  font-weight: 500;
  color: var(--ink-mute);
}

/* Card 2 — chat */
.np-chat {
  max-height: 250px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0.35rem 0.25rem 0.5rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.np-chat:focus-visible {
  outline: 2px solid rgba(45, 91, 255, 0.35);
  outline-offset: 2px;
  border-radius: 12px;
}

.np-msg {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  max-width: 100%;
}

.np-msg--ai {
  align-self: flex-start;
}

.np-msg--user {
  align-self: flex-end;
  flex-direction: row;
}

.np-avatar {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  object-fit: cover;
}

.np-avatar--ai {
  background: transparent;
  object-fit: cover;
}

.np-avatar--user {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2d5bff, #8b7cff);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.np-bubble {
  max-width: 15.5rem;
  padding: 0.65rem 0.8rem;
  border-radius: 16px 16px 16px 6px;
  background: #efe9ff;
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.45;
}

.np-msg--user .np-bubble {
  border-radius: 16px 16px 6px 16px;
  background: #2d5bff;
  color: #fff;
}

.np-bubble--chip {
  border-radius: 999px !important;
  padding: 0.45rem 0.85rem;
  font-weight: 600;
}

.np-bubble--typing {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  min-width: 3.2rem;
  padding: 0.75rem 0.95rem;
}

.np-bubble--typing span {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #8b7cff;
  animation: np-typing 1.1s infinite ease-in-out;
}

.np-bubble--typing span:nth-child(2) { animation-delay: 0.15s; }
.np-bubble--typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes np-typing {
  0%, 80%, 100% { opacity: 0.35; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-2px); }
}

/* Card 3 — analysis */
.np-analiz {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.np-radar {
  flex-shrink: 0;
}

.np-radar-label {
  font-size: 7.5px;
  font-weight: 700;
  fill: var(--ink-soft);
}

.np-analiz-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.np-pill-stat {
  padding: 0.5rem 0.65rem;
  border-radius: 12px;
  font-size: 0.72rem;
}

.np-pill-stat strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.74rem;
}

.np-pill-stat--ok {
  background: rgba(22, 163, 74, 0.1);
  color: #15803d;
}

.np-pill-stat--warn {
  background: rgba(249, 115, 22, 0.12);
  color: #c2410c;
}

.np-score {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #eef2ff, #f3e8ff);
  font-size: 0.75rem;
  color: var(--ink-mute);
}

.np-score b {
  font-size: 1.05rem;
  color: #6d5ce7;
}

.np-score small {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-mute);
}

/* Card 4 — program build */
.np-program-build {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.np-robot {
  width: 110px;
  height: 110px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.np-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  flex: 1;
}

.np-check-list li {
  position: relative;
  padding: 0.45rem 0.55rem 0.45rem 1.85rem;
  border-radius: 12px;
  background: #f5f7ff;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}

.np-check-list li::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: #2d5bff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2l2.4 2.4 4.6-4.8' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/70% no-repeat;
}

/* Card 5 — schedule */
.np-schedule-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.np-schedule-head strong {
  font-size: 0.82rem;
}

.np-legend {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ink-mute);
}

.np-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.np-legend span::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
}

.np-legend .is-konu::before { background: #34d399; }
.np-legend .is-soru::before { background: #60a5fa; }
.np-legend .is-deneme::before { background: #a78bfa; }

.np-schedule-grid {
  display: grid;
  grid-template-columns: 2.2rem repeat(7, minmax(0, 1fr));
  gap: 0.28rem;
  font-size: 0.58rem;
}

.np-sch-corner,
.np-sch-day,
.np-sch-slot {
  display: grid;
  place-items: center;
  color: var(--ink-mute);
  font-weight: 600;
}

.np-sch-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.05rem;
  min-height: 2.35rem;
  padding: 0.25rem 0.28rem;
  border-radius: 8px;
  line-height: 1.15;
}

.np-sch-cell b {
  font-size: 0.58rem;
  font-weight: 700;
}

.np-sch-cell small {
  opacity: 0.75;
  font-size: 0.52rem;
}

.np-sch-cell.is-konu {
  background: rgba(52, 211, 153, 0.18);
  color: #047857;
}

.np-sch-cell.is-soru {
  background: rgba(96, 165, 250, 0.2);
  color: #1d4ed8;
}

.np-sch-cell.is-deneme {
  background: rgba(167, 139, 250, 0.2);
  color: #6d28d9;
}

.np-schedule-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.7rem auto 0;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.18);
  color: #047857;
  font-size: 0.75rem;
  font-weight: 700;
  width: fit-content;
}

.np-schedule-status span {
  display: grid;
  place-items: center;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: #10b981;
  color: #fff;
  font-size: 0.65rem;
}

/* Card 6 — apply */
.np-apply-top {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.np-daily,
.np-week-dots {
  padding: 0.65rem;
  border-radius: 14px;
  background: #f7f8ff;
}

.np-daily strong,
.np-week-dots strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
}

.np-daily ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.np-daily li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.4rem;
  border-radius: 10px;
  background: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(45, 91, 255, 0.06);
}

.np-tick {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 5px;
  background: #2d5bff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2l2.4 2.4 4.6-4.8' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/70% no-repeat;
  flex-shrink: 0;
}

.np-tick.is-open {
  background: transparent;
  border: 2px solid rgba(45, 91, 255, 0.28);
}

.np-dots-grid {
  display: grid;
  grid-template-columns: 0.55rem repeat(7, 1fr);
  gap: 0.28rem;
  align-items: center;
}

.np-dot-day {
  text-align: center;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--ink-mute);
}

.np-dot {
  width: 0.72rem;
  height: 0.72rem;
  margin: 0 auto;
  border-radius: 999px;
  border: 1.5px solid rgba(45, 91, 255, 0.22);
  background: transparent;
}

.np-dot.is-on {
  border-color: transparent;
  background: linear-gradient(135deg, #2d5bff, #8b7cff);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.np-progress-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.np-progress {
  flex: 1;
  min-width: 0;
}

.np-progress-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
}

.np-progress-meta b {
  color: #6d5ce7;
}

.np-progress-bar {
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(45, 91, 255, 0.1);
  overflow: hidden;
}

.np-progress-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2d5bff, #8b7cff);
}

.np-trophy {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
  flex-shrink: 0;
}

/* Features */
.np-features {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin: 0.5rem auto 2rem;
  text-align: center;
}

.np-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.65rem;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: block;
}

.np-feature-icon--svg {
  display: grid;
  place-items: center;
  color: #6d5ce7;
  background: linear-gradient(135deg, rgba(139, 124, 255, 0.16), rgba(45, 91, 255, 0.12));
  border-radius: 16px;
  padding: 0;
}

.np-feature h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
}

.np-feature p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--ink-mute);
  line-height: 1.45;
}

.np-bottom-cta {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(139, 124, 255, 0.16), transparent 60%),
    linear-gradient(160deg, #ffffff, #f3f0ff);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(70, 90, 180, 0.1);
}

.np-bottom-cta h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.np-bottom-cta p {
  margin: 0 0 1rem;
  color: var(--ink-mute);
}

.np-cta-wide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  max-width: min(28rem, 100%);
  padding: 0.95rem 1.35rem;
  white-space: normal;
  text-align: left;
  line-height: 1.35;
  font-size: 0.95rem;
}

.np-cta-wide .np-cta-ai {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  padding: 0;
}

@media (max-width: 560px) {
  .np-cta-wide {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 1100px) {
  .np-schedule-grid {
    font-size: 0.52rem;
  }

  .np-sch-cell b {
    font-size: 0.52rem;
  }

  .np-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .np-flow {
    grid-template-columns: 1fr;
    grid-template-areas:
      "c1"
      "c2"
      "c3"
      "c4"
      "c5"
      "c6";
    gap: 1rem;
  }

  .np-arrow--right,
  .np-arrow--left,
  .np-arrow--down {
    display: none;
  }

  .np-arrow--mobile {
    display: block;
    position: absolute;
    left: 50%;
    bottom: -0.95rem;
    transform: translateX(-50%);
    color: #5c78ff;
  }

  .np-card--6 .np-arrow--mobile {
    display: none;
  }

  .np-analiz {
    flex-direction: column;
  }

  .np-apply-top {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .np-results-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .np-program-build {
    flex-direction: column;
    text-align: left;
  }

  .np-schedule-grid {
    overflow-x: auto;
    min-width: 100%;
  }

  .np-features {
    grid-template-columns: 1fr;
  }
}



/* ========== Mikro Öğren page ========== */
body.page-mikro {
  background-color: #f4f6fb;
  background-image:
    radial-gradient(900px 520px at 88% 0%, rgba(139, 124, 255, 0.12), transparent 55%),
    radial-gradient(720px 480px at 8% 8%, rgba(45, 91, 255, 0.1), transparent 50%),
    linear-gradient(180deg, #f8faff 0%, #eef2ff 40%, #f4f6fb 100%);
  background-attachment: scroll;
}

body.page-mikro main {
  padding-bottom: 4rem;
}

.mo-hero-wrap {
  position: relative;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
  padding-block: 0.5rem;
}

.mo-hero-clouds {
  position: absolute;
  inset: -8% -6% -12%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.mo-cloud {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.85;
  will-change: transform;
}

.mo-cloud--violet {
  width: 48%;
  height: 78%;
  top: -18%;
  left: 2%;
  background: radial-gradient(circle, rgba(139, 124, 255, 0.72) 0%, rgba(110, 86, 207, 0.28) 42%, transparent 72%);
  animation: moSmokeDrift 18s ease-in-out infinite;
}

.mo-cloud--blue {
  width: 52%;
  height: 82%;
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, rgba(94, 168, 255, 0.78) 0%, rgba(45, 91, 255, 0.32) 40%, transparent 74%);
  filter: blur(64px);
  animation: moSmokeDrift 22s ease-in-out infinite reverse;
}

.mo-cloud--amber {
  width: 42%;
  height: 62%;
  bottom: -22%;
  left: 28%;
  background: radial-gradient(circle, rgba(255, 206, 120, 0.58) 0%, rgba(255, 186, 90, 0.22) 40%, transparent 72%);
  filter: blur(58px);
  opacity: 0.7;
  animation: moSmokeDrift 20s ease-in-out infinite 2s;
}

.mo-cloud--mist {
  width: 78%;
  height: 88%;
  top: 0%;
  left: 10%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(232, 240, 255, 0.28) 48%, transparent 76%);
  filter: blur(48px);
  opacity: 0.9;
}

.mo-cloud--drift {
  width: 36%;
  height: 50%;
  top: 35%;
  left: 38%;
  background: radial-gradient(circle, rgba(180, 200, 255, 0.55) 0%, rgba(139, 124, 255, 0.18) 50%, transparent 75%);
  filter: blur(52px);
  opacity: 0.65;
  animation: moSmokeDrift 16s ease-in-out infinite 1s;
}

@keyframes moSmokeDrift {
  0%,
  100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(3%, -2%) scale(1.06); }
  66% { transform: translate(-2%, 3%) scale(0.96); }
}

.mo-hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.4rem 2rem 2.2rem;
  max-width: none;
  margin-inline: 0;
  background:
    linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.58) 0%,
      rgba(255, 255, 255, 0.34) 42%,
      rgba(236, 242, 255, 0.4) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  box-shadow:
    0 18px 50px rgba(45, 91, 255, 0.12),
    0 2px 0 rgba(255, 255, 255, 0.55) inset,
    0 -1px 0 rgba(120, 150, 220, 0.1) inset;
  backdrop-filter: blur(22px) saturate(1.45);
  -webkit-backdrop-filter: blur(22px) saturate(1.45);
  overflow: hidden;
}

.mo-hero-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  position: relative;
  z-index: 1;
}

.mo-hero-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(45, 91, 255, 0.22));
}

.mo-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0 auto 0.85rem;
  max-width: 20ch;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.6vw, 2.45rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.mo-hero h1 em {
  font-style: normal;
  background: linear-gradient(105deg, #2d5bff 0%, #6e56cf 55%, #8b7cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mo-hero-lead {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 52ch;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.mo-hero-art {
  position: absolute;
  top: 50%;
  width: clamp(110px, 14vw, 180px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 16px 32px rgba(45, 91, 255, 0.18));
  transform: translateY(-42%);
  z-index: 1;
}

.mo-hero-art--left {
  left: 1.5rem;
}

.mo-hero-art--right {
  right: 1.5rem;
}

.mo-workspace {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  margin-top: 1rem;
}

.mo-rail {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  min-width: 0;
}

.mo-card {
  background: #fff;
  border: 1px solid rgba(45, 91, 255, 0.06);
  border-radius: 22px;
  box-shadow: 0 12px 36px rgba(45, 91, 255, 0.07);
  padding: 1.15rem 1.2rem 1.25rem;
}

.mo-card-title {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

/* Tree */
.mo-mode-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.mo-mode-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 0.4rem;
  border-radius: 999px;
  border: 1.5px solid rgba(45, 91, 255, 0.18);
  background: #fff;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.mo-mode-btn.is-active {
  background: linear-gradient(135deg, #2d5bff, #5c78ff);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 18px rgba(45, 91, 255, 0.28);
}

.mo-mode-btn:not(.is-active):hover {
  border-color: rgba(45, 91, 255, 0.35);
  color: var(--ink);
}

.mo-tree-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mo-tree-item,
.mo-tree-sub {
  border: none;
}

.mo-tree-item > summary,
.mo-tree-sub > summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.6rem;
  border-radius: 12px;
  font-weight: 650;
  font-size: 0.92rem;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s var(--ease);
}

.mo-tree-item > summary::-webkit-details-marker,
.mo-tree-sub > summary::-webkit-details-marker {
  display: none;
}

.mo-tree-item > summary::after,
.mo-tree-sub > summary::after {
  content: "";
  margin-left: auto;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--ink-mute);
  border-bottom: 2px solid var(--ink-mute);
  transform: rotate(-45deg);
  transition: transform 0.2s var(--ease);
  opacity: 0.7;
}

.mo-tree-item[open] > summary::after,
.mo-tree-sub[open] > summary::after {
  transform: rotate(45deg);
}

.mo-tree-item > summary:hover,
.mo-tree-sub > summary:hover {
  background: rgba(45, 91, 255, 0.05);
}

.mo-tree-icon {
  display: inline-flex;
  color: var(--blue-500);
  flex-shrink: 0;
}

.mo-tree-children,
.mo-tree-leaves {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.6rem;
}

.mo-tree-sub > summary {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding-left: 0.4rem;
}

.mo-tree-leaf {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  padding: 0.45rem 0.7rem 0.45rem 1rem;
  margin: 0.1rem 0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 550;
  color: var(--ink-soft);
  cursor: pointer;
  position: relative;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}

.mo-tree-leaf--flat {
  padding-left: 0.4rem;
}

.mo-tree-leaf:hover {
  background: rgba(45, 91, 255, 0.05);
  color: var(--ink);
}

.mo-tree-leaf.is-active {
  background: rgba(110, 86, 207, 0.1);
  color: #5b45b8;
  font-weight: 700;
}

.mo-tree-leaf.is-active::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6e56cf;
  transform: translateY(-50%);
}

/* Main topic */
.mo-main {
  min-width: 0;
}

.mo-topic-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.mo-breadcrumb {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  color: var(--ink-mute);
}

.mo-breadcrumb span {
  opacity: 0.55;
  margin: 0 0.15rem;
}

.mo-topic-head h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.mo-topic-desc {
  margin: 0;
  max-width: 42ch;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.mo-progress {
  flex-shrink: 0;
}

.mo-progress-label {
  font-size: 8px;
  fill: var(--ink-mute);
  font-family: var(--font-body);
}

.mo-progress-value {
  font-size: 13px;
  font-weight: 700;
  fill: var(--ink);
  font-family: var(--font-display);
}

.mo-methods-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.mo-method-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
}

.mo-method {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  padding: 0.75rem 0.65rem;
  border-radius: 16px;
  border: 1.5px solid rgba(45, 91, 255, 0.1);
  background: #fafbff;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  color: var(--ink-soft);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.mo-method strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.mo-method > span:last-child {
  font-size: 0.7rem;
  line-height: 1.35;
  color: var(--ink-mute);
}

.mo-method-icon {
  display: inline-flex;
  color: var(--blue-500);
  margin-bottom: 0.15rem;
}

.mo-method:hover {
  border-color: rgba(45, 91, 255, 0.28);
  transform: translateY(-1px);
}

.mo-method.is-active {
  background: #fff;
  border-color: #2d5bff;
  box-shadow: 0 0 0 3px rgba(45, 91, 255, 0.12), 0 10px 24px rgba(45, 91, 255, 0.12);
}

.mo-panels {
  margin-top: 1rem;
}

.mo-panel {
  display: none;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.15rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(238, 242, 255, 0.9), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(45, 91, 255, 0.08);
}

.mo-panel.is-active {
  display: flex;
}

.mo-panel-copy {
  flex: 1;
  min-width: 0;
}

.mo-panel-copy h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.mo-panel-copy p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.mo-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mo-checklist li {
  position: relative;
  padding-left: 1.55rem;
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 550;
}

.mo-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2l2.4 2.4 4.6-4.8' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    linear-gradient(135deg, #6e56cf, #8b7cff);
  background-size: 0.65rem, 100%;
  background-position: center, center;
  background-repeat: no-repeat;
}

.mo-panel-art {
  width: clamp(120px, 22%, 170px);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 12px 24px rgba(45, 91, 255, 0.16));
}

/* Continue / mastery panel */
.mo-continue {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-top: 1.15rem;
  min-width: 0;
}

.mo-continue-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.mo-eta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.mo-eta svg {
  color: var(--blue-500);
  flex-shrink: 0;
}

.mo-eta strong {
  color: var(--ink);
  font-weight: 700;
}

.mo-continue-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.mo-tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1.5px solid rgba(45, 91, 255, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.mo-tool-btn:hover {
  border-color: rgba(45, 91, 255, 0.32);
  color: var(--ink);
  transform: translateY(-1px);
}

.mo-tool-btn[aria-pressed="true"] {
  background: linear-gradient(135deg, rgba(110, 86, 207, 0.12), rgba(139, 124, 255, 0.18));
  border-color: rgba(110, 86, 207, 0.4);
  color: #5b45b8;
}

.mo-insight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.mo-insight {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.95rem 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 28px rgba(45, 91, 255, 0.08);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.mo-insight:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(45, 91, 255, 0.12);
}

.mo-insight-label {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.mo-insight-value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}

.mo-insight-value--sm {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.mo-insight-desc {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.4;
  color: var(--ink-soft);
}

.mo-insight--cta {
  background:
    linear-gradient(145deg, rgba(45, 91, 255, 0.1), rgba(139, 124, 255, 0.14)),
    rgba(255, 255, 255, 0.7);
  border-color: rgba(45, 91, 255, 0.18);
}

.mo-insight-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2d5bff, #6e56cf);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(45, 91, 255, 0.28);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.mo-insight-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(45, 91, 255, 0.34);
}

.mo-next-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: linear-gradient(105deg, rgba(45, 91, 255, 0.08), rgba(139, 124, 255, 0.12), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(45, 91, 255, 0.12);
  box-shadow: 0 10px 28px rgba(45, 91, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.mo-next-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #2d5bff, #8b7cff);
  border-radius: 4px 0 0 4px;
}

.mo-next-step-copy {
  min-width: 0;
  padding-left: 0.35rem;
}

.mo-next-step-kicker {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5b45b8;
}

.mo-next-step-copy p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.mo-next-step-copy strong,
.mo-next-step-copy em {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
}

.mo-next-step-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2d5bff, #5c78ff);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(45, 91, 255, 0.3);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.mo-next-step-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(45, 91, 255, 0.36);
}

.mo-gaps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(45, 91, 255, 0.06);
  box-shadow: 0 10px 28px rgba(45, 91, 255, 0.06);
}

.mo-gaps-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.mo-gap-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.mo-gap-chips li {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(110, 86, 207, 0.1);
  color: #5b45b8;
  font-size: 0.78rem;
  font-weight: 650;
}

.mo-mini-test {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.95rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(45, 91, 255, 0.06), rgba(139, 124, 255, 0.1));
  border: 1.5px solid rgba(45, 91, 255, 0.16);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.mo-mini-test:hover {
  color: var(--ink);
  border-color: rgba(45, 91, 255, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(45, 91, 255, 0.12);
}

.mo-mini-test-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2d5bff, #8b7cff);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(45, 91, 255, 0.28);
}

.mo-mini-test strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.mo-mini-test-meta {
  display: block;
  font-size: 0.72rem;
  color: var(--ink-mute);
  font-weight: 550;
}

.mo-history {
  padding: 1rem 1.1rem 1.05rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(45, 91, 255, 0.06);
  box-shadow: 0 10px 28px rgba(45, 91, 255, 0.06);
}

.mo-history-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.mo-history-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mo-history-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0;
  position: relative;
}

.mo-history-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(50% + 8px);
  bottom: -2px;
  width: 0;
  border-left: 2px dotted rgba(110, 86, 207, 0.3);
}

.mo-history-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6e56cf, #8b7cff);
  box-shadow: 0 0 0 3px rgba(110, 86, 207, 0.15);
  position: relative;
  z-index: 1;
}

.mo-history-label {
  font-size: 0.84rem;
  font-weight: 550;
  color: var(--ink);
}

.mo-history-time {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-mute);
  white-space: nowrap;
}

/* Side */
.mo-side {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  min-width: 0;
}

.mo-stage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.mo-stage {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0;
  position: relative;
}

.mo-stage:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 13px;
  top: calc(50% + 12px);
  bottom: -4px;
  width: 0;
  border-left: 2px dotted rgba(110, 86, 207, 0.35);
}

.mo-stage-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #6e56cf, #8b7cff);
  box-shadow: 0 6px 14px rgba(110, 86, 207, 0.28);
  position: relative;
  z-index: 1;
}

.mo-stage-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
}

.mo-stage-count {
  font-size: 0.72rem;
  font-weight: 650;
  color: var(--ink-mute);
  background: rgba(11, 28, 51, 0.06);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}

.mo-videos-art {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin-bottom: 0.75rem;
}

.mo-videos-note {
  margin: 0 0 0.65rem;
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.mo-videos-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue-600);
  text-decoration: none;
  float: right;
}

.mo-videos-link:hover {
  color: var(--blue-700);
}

.mo-videos::after {
  content: "";
  display: table;
  clear: both;
}

/* Features */
.mo-features {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.35rem 1.25rem;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(45, 91, 255, 0.06);
  box-shadow: 0 12px 36px rgba(45, 91, 255, 0.07);
}

.mo-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
}

.mo-feature img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 16px rgba(45, 91, 255, 0.15));
}

.mo-feature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.mo-feature p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.mo-features-cap {
  position: absolute;
  right: -0.5rem;
  bottom: -1.2rem;
  width: clamp(90px, 12vw, 130px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 14px 28px rgba(45, 91, 255, 0.2));
}

@media (max-width: 1100px) {
  .mo-hero-art {
    width: 100px;
    opacity: 0.85;
  }

  .mo-hero {
    padding-inline: 1.5rem;
  }

  .mo-workspace {
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  }

  .mo-method-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .mo-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-right: 5rem;
  }
}

@media (max-width: 780px) {
  .mo-hero-art {
    display: none;
  }

  .mo-hero {
    padding: 1.75rem 1.25rem;
  }

  .mo-hero-clouds {
    inset: -8% -2% -12%;
  }

  .mo-workspace {
    grid-template-columns: 1fr;
  }

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

  .mo-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .mo-panel-art {
    align-self: center;
    width: 140px;
  }

  .mo-next-step {
    flex-direction: column;
    align-items: flex-start;
  }

  .mo-next-step-btn {
    width: 100%;
  }

  .mo-gaps {
    flex-direction: column;
    align-items: stretch;
  }

  .mo-mini-test {
    width: 100%;
  }

  .mo-features {
    grid-template-columns: 1fr;
    padding-right: 1.25rem;
    padding-bottom: 4rem;
  }

  .mo-features-cap {
    right: 0.5rem;
    bottom: -0.5rem;
    width: 90px;
  }
}

@media (max-width: 480px) {
  .mo-mode-toggle {
    grid-template-columns: 1fr;
  }

  .mo-method-grid {
    grid-template-columns: 1fr;
  }

  .mo-topic-head {
    flex-direction: column;
  }

  .mo-insight-grid {
    grid-template-columns: 1fr;
  }

  .mo-history-item {
    grid-template-columns: auto 1fr;
    gap: 0.45rem 0.65rem;
  }

  .mo-history-time {
    grid-column: 2;
  }
}

/* ========== Deneme Analizleri page ========== */
body.page-deneme {
  background-color: #f7f8fd;
  background-image:
    radial-gradient(900px 520px at 90% 0%, rgba(107, 70, 193, 0.1), transparent 55%),
    radial-gradient(720px 480px at 6% 12%, rgba(49, 130, 206, 0.08), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fd 42%, #eef2ff 100%);
}

body.page-deneme main {
  padding-bottom: 3.5rem;
}

.de-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  padding: 2rem 0 1.5rem;
}

.de-hero-copy {
  flex: 1 1 18rem;
  min-width: 0;
}

.de-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.14), rgba(49, 130, 206, 0.1));
  color: #6b46c1;
  font-size: 0.82rem;
  font-weight: 700;
}

.de-badge img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.de-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.6vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.de-hero h1 em {
  font-style: normal;
  color: #6b46c1;
}

.de-lead {
  margin: 0;
  max-width: 34rem;
  color: var(--ink-mute);
  font-size: 1rem;
  line-height: 1.6;
}

.de-hero-art {
  position: relative;
  flex: 0 0 auto;
  width: min(240px, 42vw);
  height: min(220px, 38vw);
}

.de-hero-art-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 72%;
  height: auto;
  filter: drop-shadow(0 16px 32px rgba(107, 70, 193, 0.28));
}

.de-hero-art-side {
  position: absolute;
  left: 0;
  bottom: 8%;
  width: 48%;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(49, 130, 206, 0.22));
}

.de-hero-chip {
  position: absolute;
  right: 4%;
  bottom: 4%;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #6b46c1;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(107, 70, 193, 0.35);
}

.de-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.04);
  padding: 1.1rem 1.15rem;
}

.de-card h2,
.de-card h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 750;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.de-kpi {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0.25rem auto 1.25rem;
}

.de-kpi-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.de-kpi-card header span {
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--ink-mute);
  line-height: 1.3;
}

.de-kpi-card header img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.de-kpi-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.1;
}

.de-kpi-value--sm {
  font-size: 1.45rem;
}

.de-kpi-sub {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  color: var(--ink-mute);
}

.de-trend {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.de-trend.is-up {
  color: #48bb78;
}

.de-spark {
  margin-top: 0.55rem;
  display: block;
}

.de-progress {
  margin-top: 0.65rem;
  height: 8px;
  border-radius: 999px;
  background: rgba(107, 70, 193, 0.12);
  overflow: hidden;
}

.de-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6b46c1, #805ad5);
}

.de-gauge {
  margin-top: 0.75rem;
}

.de-gauge-track {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(237, 137, 54, 0.25), rgba(15, 23, 42, 0.06) 50%, rgba(72, 187, 120, 0.28));
}

.de-gauge-zero {
  position: absolute;
  left: 50%;
  top: -3px;
  bottom: -3px;
  width: 2px;
  background: rgba(15, 23, 42, 0.25);
  transform: translateX(-50%);
}

.de-gauge-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  background: #48bb78;
  border-radius: 999px;
  opacity: 0.85;
}

.de-gauge-knob {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #6b46c1;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(107, 70, 193, 0.4);
  transform: translate(-50%, -50%);
}

.de-gauge-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  color: #94a3b8;
}

.de-kpi-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.de-mid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.85fr;
  gap: 0.85rem;
  margin: 0 auto 1.25rem;
}

.de-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin: 0 0 0.65rem;
  padding: 0;
  list-style: none;
  font-size: 0.72rem;
  color: var(--ink-mute);
  font-weight: 650;
}

.de-legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  margin-right: 0.3rem;
  vertical-align: -1px;
}

.de-legend i.is-sen { background: #6b46c1; }
.de-legend i.is-ort { background: #63b3ed; }
.de-legend i.is-ust { background: #3182ce; }
.de-legend i.is-dash {
  background: transparent;
  border: 1.5px dashed #3182ce;
}

.de-legend--sm {
  margin-bottom: 0.4rem;
}

.de-chart-wrap {
  width: 100%;
  overflow: hidden;
}

.de-rank-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.de-rank-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: #f8fafc;
  font-size: 0.85rem;
  color: var(--ink-mute);
}

.de-rank-list li strong {
  color: var(--ink);
  font-weight: 750;
}

.de-rank-list li.is-you {
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.14), rgba(49, 130, 206, 0.1));
  color: #6b46c1;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(107, 70, 193, 0.22);
}

.de-rank-list li.is-you strong {
  color: #6b46c1;
}

.de-table-section {
  margin: 0 auto 1.25rem;
}

.de-table-card {
  padding: 1.15rem 1.15rem 0.85rem;
}

.de-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.de-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.de-table th,
.de-table td {
  padding: 0.75rem 0.65rem;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.86rem;
  vertical-align: middle;
}

.de-table th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
  font-weight: 700;
}

.de-subj {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--ink);
}

.de-subj img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.de-acc {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--ink);
}

.de-acc-bar {
  display: inline-block;
  width: 72px;
  height: 7px;
  border-radius: 999px;
  background: rgba(107, 70, 193, 0.12);
  overflow: hidden;
}

.de-acc-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #6b46c1;
}

.de-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.de-pill.is-up {
  background: rgba(72, 187, 120, 0.14);
  color: #2f855a;
}

.de-pill.is-mid {
  background: rgba(49, 130, 206, 0.12);
  color: #2b6cb0;
}

.de-pill.is-down {
  background: rgba(237, 137, 54, 0.16);
  color: #c05621;
}

.de-charts {
  margin: 0 auto 1.25rem;
}

.de-charts-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.de-charts-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
}

.de-select select {
  appearance: none;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%2364748b' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 0.7rem center;
  padding: 0.45rem 2rem 0.45rem 0.8rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--ink);
  cursor: pointer;
}

.de-charts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.de-radar-wrap {
  display: grid;
  place-items: center;
  padding: 0.25rem 0 0.5rem;
}

.de-time-bars {
  display: grid;
  gap: 0.55rem;
}

.de-time-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr 2.4rem;
  gap: 0.55rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--ink-mute);
  font-weight: 650;
}

.de-time-track {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
}

.de-time-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #6b46c1;
}

.de-time-track b {
  position: absolute;
  top: -3px;
  bottom: -3px;
  width: 0;
  border-left: 2px dashed #63b3ed;
  transform: translateX(-1px);
}

.de-time-row small {
  text-align: right;
  color: var(--ink);
  font-weight: 700;
}

.de-heat {
  display: grid;
  gap: 0.4rem;
}

.de-heat-head,
.de-heat-row {
  display: grid;
  grid-template-columns: 5.5rem repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  align-items: center;
}

.de-heat-head {
  font-size: 0.7rem;
  font-weight: 700;
  color: #94a3b8;
  text-align: center;
}

.de-heat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-mute);
}

.de-heat-cell {
  display: grid;
  place-items: center;
  min-height: 2.1rem;
  border-radius: 10px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.de-bottom {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0.85rem;
  margin: 0 auto 1.25rem;
}

.de-ai header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.de-ai header img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.de-ai header h2 {
  margin: 0;
}

.de-ai ul {
  margin: 0 0 1rem;
  padding: 0 0 0 1.1rem;
  display: grid;
  gap: 0.45rem;
  color: var(--ink-mute);
  font-size: 0.9rem;
  line-height: 1.45;
}

.de-ai .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.de-flow-steps {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.de-flow-steps li {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
}

.de-flow-steps img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.de-flow-steps strong {
  font-size: 0.82rem;
  color: var(--ink);
}

.de-flow-arrow {
  position: absolute;
  right: -0.55rem;
  top: 1.1rem;
  color: #6b46c1;
  font-weight: 700;
  font-size: 1.1rem;
}

.de-features {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0 auto;
}

.de-feature {
  text-align: center;
  padding: 0.85rem 0.5rem;
}

.de-feature img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 0.55rem;
  filter: drop-shadow(0 8px 16px rgba(107, 70, 193, 0.18));
}

.de-feature h3 {
  margin: 0 0 0.3rem;
  font-size: 0.9rem;
  font-weight: 750;
  color: var(--ink);
}

.de-feature p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--ink-mute);
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .de-kpi {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .de-mid {
    grid-template-columns: 1fr 1fr;
  }

  .de-mid-rank {
    grid-column: 1 / -1;
  }

  .de-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .de-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .de-hero-art {
    width: min(220px, 70vw);
    height: 180px;
    align-self: center;
  }

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

  .de-mid,
  .de-charts-grid,
  .de-bottom {
    grid-template-columns: 1fr;
  }

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

  .de-flow-steps {
    flex-wrap: wrap;
  }

  .de-flow-arrow {
    display: none;
  }
}

@media (max-width: 520px) {
  .de-kpi {
    grid-template-columns: 1fr;
  }

  .de-charts-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .de-features {
    grid-template-columns: 1fr;
  }

  .de-time-row {
    grid-template-columns: 4.5rem 1fr 2.2rem;
  }

  .de-heat-head,
  .de-heat-row {
    grid-template-columns: 4.5rem repeat(3, minmax(0, 1fr));
  }
}
