/* Lokita Hosting — koyu lacivert, turkuaz vurgu, temiz kartlar */
:root {
  --bg: #0a1628;
  --bg-soft: #0f2137;
  --surface: #132a45;
  --surface2: #1a3554;
  --text: #e8f1ff;
  --muted: #8ba3c0;
  --accent: #00c8c8;
  --accent-dim: #009e9e;
  --accent-glow: rgba(0, 200, 200, 0.35);
  --danger: #ff6b6b;
  --success: #4ade80;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --header-h: 72px;
  --topbar-h: 40px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  padding-top: calc(var(--topbar-h) + var(--header-h));
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* Top bar */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--topbar-h);
  background: linear-gradient(90deg, #061018, var(--bg-soft));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8125rem;
}

.top-bar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar__promo strong {
  color: var(--accent);
}

.top-bar__phone {
  color: var(--text);
  white-space: nowrap;
}

.top-bar__phone:hover {
  color: var(--accent);
}

/* Header */
.header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 150;
  height: var(--header-h);
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 800;
  font-size: 1.25rem;
}

.logo:hover {
  text-decoration: none;
  color: var(--accent);
}

.logo__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.logo__accent {
  color: var(--accent);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--text);
  border-radius: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a,
.nav button.nav__cart {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9375rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0.5rem 0;
}

.nav a:hover,
.nav button.nav__cart:hover {
  color: var(--text);
  text-decoration: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 0.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  font-family: inherit;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #041018;
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn--primary:hover {
  box-shadow: 0 10px 32px var(--accent-glow);
}

.btn--primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.btn--outline {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.btn--ghost:hover {
  color: var(--text);
}

.btn--block {
  width: 100%;
}

.btn--sm {
  padding: 0.4rem 0.75rem;
  font-size: 0.8125rem;
}

.btn--danger {
  background: transparent;
  border-color: var(--danger);
  color: var(--danger);
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* Hero */
.hero {
  padding: 3rem 0 4rem;
  background: radial-gradient(ellipse 80% 60% at 70% 0%, rgba(0, 200, 200, 0.12), transparent),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__content h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--accent);
  margin: 0 0 0.75rem;
  font-weight: 700;
}

.hero__lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
  max-width: 36ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.875rem;
  color: var(--muted);
}

.hero__trust li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__figure {
  position: relative;
  margin: 0;
  width: min(100%, 520px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero__photo-cap {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 200, 200, 0.28);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero__cap-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0;
  color: var(--text);
}

.hero__cap-sub {
  color: var(--muted);
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
}

/* Sections */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
  text-align: center;
}

.section-desc {
  text-align: center;
  color: var(--muted);
  margin: 0 auto 2rem;
  max-width: 520px;
}

.features {
  padding: 3rem 0;
  background: var(--bg);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.privacy-callout {
  margin-top: 2.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 200, 200, 0.35);
  background: linear-gradient(135deg, rgba(0, 200, 200, 0.08), rgba(10, 22, 40, 0.6));
}

.privacy-callout__title {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.privacy-callout__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.privacy-callout__text strong {
  color: var(--text);
}

.privacy-callout__demo {
  display: block;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: var(--muted);
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
}

.feature-card__body {
  padding: 1.25rem 1.35rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.products {
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--bg), var(--bg-soft));
}

#paketler {
  padding-bottom: 2.5rem;
}

.products__visual {
  margin: 0 auto 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-height: 240px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.products__visual img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.kurumsal__masthead {
  margin: 0 auto 2.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.kurumsal__masthead-img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.products--stripe {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.kurumsal {
  padding: 3rem 0 5rem;
  background: linear-gradient(180deg, var(--bg), #0a1522);
}

.kurumsal__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.kurumsal__highlight {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.kurumsal__highlight h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.kurumsal__highlight p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.kurumsal__plans-title {
  margin: 0 0 1.25rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.products__grid--packages {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  align-items: stretch;
}

.product-card--package {
  min-height: 100%;
  position: relative;
  align-items: stretch;
}

.product-card--package .product-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: 0;
  max-width: calc(100% - 2rem);
  text-align: right;
  z-index: 1;
}

.product-card--package:has(.product-card__badge) .product-card__tier,
.product-card--package:has(.product-card__badge) h3 {
  padding-right: 7rem;
}

.product-card__tier {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.product-card--package .product-card__tagline {
  flex: 0 0 auto;
  margin-bottom: 0.75rem;
}

.product-card--package h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.product-card--package .product-card__price {
  flex: 0 0 auto;
  margin-bottom: 0.75rem;
  line-height: 1.25;
  word-break: break-word;
}

.product-card--package .package-breakdown-wrap {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  max-width: 100%;
  margin: 0 0 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-card--package > .btn {
  margin-top: auto;
  flex-shrink: 0;
}

.package-breakdown {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.package-breakdown td {
  padding: 0.45rem 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}

.package-breakdown__label {
  color: var(--muted);
  padding-right: 0.75rem;
  line-height: 1.4;
  width: 58%;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.package-breakdown__amt {
  width: 42%;
  text-align: right;
  white-space: nowrap;
  font-weight: 600;
  color: var(--text);
}

.package-breakdown__total td {
  border-bottom: none;
  padding-top: 0.65rem;
  font-weight: 800;
  color: var(--accent);
}

.package-breakdown__total .package-breakdown__amt {
  color: var(--accent);
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.product-card:hover {
  border-color: rgba(0, 200, 200, 0.4);
  transform: translateY(-2px);
}

.product-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-glow);
}

.product-card__badge {
  align-self: flex-start;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent);
  color: var(--bg);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.product-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
}

.product-card__tagline {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0 1rem;
  flex: 1;
}

.product-card__price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.product-card__price small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.product-card ul {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.875rem;
}

.product-card li {
  margin-bottom: 0.35rem;
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #060d18;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer__inner {
  text-align: center;
}

.footer__brand {
  margin: 0 0 0.5rem;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer__logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
}

.drawer:not([hidden]) {
  pointer-events: auto;
}

.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.25s;
}

.drawer:not([hidden]) .drawer__backdrop {
  opacity: 1;
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 400px);
  height: 100%;
  background: var(--bg-soft);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.4);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.drawer:not([hidden]) .drawer__panel {
  transform: translateX(0);
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer__head h2 {
  margin: 0;
  font-size: 1.15rem;
}

.drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}

.drawer__foot {
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  align-items: start;
}

.cart-line__title {
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.cart-line__meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.cart-line__controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  grid-column: 1 / -1;
}

.cart-line__controls button {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
}

.cart-line__price {
  font-weight: 700;
  color: var(--accent);
  text-align: right;
}

.cart-empty {
  color: var(--muted);
  text-align: center;
  padding: 2rem 0;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.cart-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.cart-note code {
  color: var(--accent);
  background: rgba(0, 200, 200, 0.12);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}

.modal:not([hidden]) {
  pointer-events: auto;
  opacity: 1;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal__box {
  position: relative;
  width: min(100%, 420px);
  max-height: min(90vh, 640px);
  overflow-y: auto;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  z-index: 1;
}

.modal__box--wide {
  width: min(100%, 520px);
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}

.modal__box h2 {
  margin: 0 0 1rem;
  padding-right: 2.5rem;
  font-size: 1.25rem;
}

.tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tabs__btn {
  flex: 1;
  padding: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--surface);
  color: var(--muted);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

.tabs__btn.is-active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 200, 200, 0.08);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.form label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.form input {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form--compact label {
  margin-bottom: 0.5rem;
}

.form-msg {
  min-height: 1.25rem;
  font-size: 0.85rem;
  margin: 0.5rem 0 0;
}

.form-msg.is-error {
  color: var(--danger);
}

.form-msg.is-ok {
  color: var(--success);
}

.account-logged {
  text-align: center;
}

.account-logged .btn {
  margin-top: 1rem;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.85rem;
}

/* Payment */
.payment-summary {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.payment-summary table {
  width: 100%;
  border-collapse: collapse;
}

.payment-summary td {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.payment-summary td:last-child {
  text-align: right;
  color: var(--accent);
  font-weight: 600;
}

.payment-methods h3 {
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

.payment-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.payment-tabs__btn {
  flex: 1;
  padding: 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--surface);
  color: var(--muted);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.8125rem;
  cursor: pointer;
}

.payment-tabs__btn.is-active {
  border-color: var(--accent);
  color: var(--accent);
}

.pay-panel {
  display: none;
}

.pay-panel.is-active {
  display: block;
}

.iban-box {
  background: var(--surface);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(0, 200, 200, 0.35);
}

.iban-box p {
  margin: 0 0 0.65rem;
}

.iban-copy {
  user-select: all;
  font-family: ui-monospace, monospace;
  word-break: break-all;
}

.secure-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.75rem 0 1rem;
}

.secure-badge {
  flex-shrink: 0;
  background: rgba(141, 5, 5, 0.12);
  color: var(--danger);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
}

.pay-result {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(141, 5, 5, 0.12);
  border: 1px solid var(--danger);
  color: var(--danger);
  font-weight: 600;
  text-align: center;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 500;
  background: var(--surface2);
  color: var(--text);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 200, 200, 0.35);
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.toast:not([hidden]) {
  transform: translateX(-50%) translateY(0);
}

/* Hesap sayfası */
.page-account .account-main {
  padding: 2rem 0 4rem;
  min-height: calc(100vh - 200px);
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.page-account .account-main > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.account-page-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  width: 100%;
}

.account-page-lead {
  margin: 0 0 1.75rem;
  text-align: center;
  max-width: 32rem;
  width: 100%;
}

.account-panel {
  max-width: 480px;
  width: 100%;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.account-panel--profile {
  max-width: 640px;
}

#section-auth .tabs {
  justify-content: center;
}

.profile-section-title {
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-dl {
  margin: 0 0 1.5rem;
}

.profile-dl__row {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 0.5rem 1.5rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-dl__row:last-of-type {
  border-bottom: none;
}

.profile-dl dt {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.profile-dl dd {
  margin: 0;
  font-size: 0.95rem;
  word-break: break-word;
}

.password-mask {
  letter-spacing: 0.15em;
  margin-left: 0.35rem;
}

.status-pill {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-pill--ok {
  background: rgba(74, 222, 128, 0.15);
  color: var(--success);
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 520px) {
  .profile-dl__row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__figure {
    width: 100%;
    max-width: 100%;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .products__visual {
    max-height: none;
  }

  .products__visual img {
    height: 180px;
  }

  .kurumsal__masthead-img {
    max-height: 220px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .top-bar__promo {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: calc(var(--topbar-h) + var(--header-h));
    left: 0;
    right: 0;
    background: var(--bg-soft);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
  }

  body.nav-open .nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a,
  .nav button.nav__cart {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
  }

  .drawer__panel {
    width: 100%;
    max-width: 100%;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .payment-tabs {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .nav {
    display: none; 
    flex-direction: column;
    position: absolute;
    top: 60px; 
    left: 0;
    width: 100%;
    background: #1a1a1a; 
    padding: 20px;
    border-bottom: 2px solid var(--accent);
    z-index: 999;
  }

  .nav.active {
    display: flex !important;
  }

  .nav-toggle {
    display: block !important;
    cursor: pointer;
  }

  .profile-dl__row {
    grid-template-columns: 1fr !important;
    padding: 10px 0;
  }
}