/* =========================
       THEME TOKENS
       ========================= */
:root {
  /* Light defaults */
  --bg: #ffffff;
  --peach: #fff0e9;

  --surface: #ffffff;
  --surface2: #ffffff;

  --border: #eadfd6;

  --text: #111827; /* slate-900 */
  --muted: #6b7280; /* slate-500 */
  --muted2: #9ca3af; /* slate-400 */

  --accent: #f97316; /* orange */
  --accent2: #fb923c;

  --shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  --radius: 18px;
  --radius2: 26px;

  --max: 1100px;
}

html[data-theme="dark"] {
  --bg: #0b1220;
  --peach: rgba(249, 115, 22, 0.1);

  --surface: rgba(255, 255, 255, 0.06);
  --surface2: rgba(255, 255, 255, 0.09);

  --border: rgba(255, 255, 255, 0.12);

  --text: #eef2ff;
  --muted: rgba(238, 242, 255, 0.72);
  --muted2: rgba(238, 242, 255, 0.58);

  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}

/* Section backgrounds (requested) */
.sectionBgPeach {
  background: var(--peach);
}
.sectionBgWhite {
  background: #ffffff;
}
html[data-theme="dark"] .sectionBgWhite {
  background: transparent;
}
.sectionPad {
  padding: 42px 0;
}

/* =========================
       HEADER / NAV
       ========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--border);
}
html[data-theme="dark"] .header {
  background: rgba(7, 11, 20, 0.62);
  border-bottom: 1px solid var(--border);
}
.headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.03);
  padding: 6px;
  border: 1px solid var(--border);
}
html[data-theme="dark"] .brand img {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border);
}
.brandName {
  font-weight: 900;
  letter-spacing: 0.2px;
  line-height: 1.05;
}
.brandTag {
  display: block;
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: right;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
  padding: 10px 10px;
  border-radius: 12px;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.nav a:hover {
  background: rgba(15, 23, 42, 0.06);
  color: var(--text);
}
html[data-theme="dark"] .nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.navRight {
  display: flex;
  gap: 10px;
  align-items: right;
  margin-left: 6px;
}

/* =========================
       BUTTONS
       ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 0.08s ease,
    opacity 0.15s ease,
    background 0.15s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.btn.primary {
  background: linear-gradient(180deg, var(--accent) 0%, #ea6b12 100%);
  color: #ffffff;
  box-shadow: 0 14px 40px rgba(249, 115, 22, 0.18);
  border-color: rgba(249, 115, 22, 0.25);
}
.btn.ghost {
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
html[data-theme="dark"] .btn.ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
  box-shadow: var(--shadow);
}
.btn.small {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
}

/* Theme Toggle */
.themeToggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 700;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
html[data-theme="dark"] .themeToggle {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
  box-shadow: var(--shadow);
}
.ttIcon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ttText {
  font-size: 13px;
}

/* Responsive nav */
@media (max-width: 940px) {
  .nav {
    display: none;
  }
}

/* =========================
       HERO (PEACH)
       ========================= */
.hero {
  padding: 44px 0 18px;
}
.heroGrid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}
@media (max-width: 940px) {
  .heroGrid {
    grid-template-columns: 1fr;
  }
}

.heroH1 {
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
}
@media (max-width: 560px) {
  .heroH1 {
    font-size: 36px;
  }
}
.heroLead {
  margin-top: 14px;
  font-size: 16px;
  color: var(--muted);
  max-width: 62ch;
}
.heroBadges {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
html[data-theme="dark"] .pill {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.06);
}
.pill strong {
  color: var(--text);
}

.heroCtas {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.storeRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}
.storeBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
html[data-theme="dark"] .storeBtn {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
  box-shadow: var(--shadow);
}
.storeBtn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}
.storeHint {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 8px;
}

.heroVisual {
  border-radius: var(--radius2);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
}
html[data-theme="dark"] .heroVisual {
  background: var(--surface);
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.heroVisual img {
  width: min(420px, 86%);
  height: auto;
}

/* =========================
       COUNTRY SEARCH (after hero)
       ========================= */
.searchWrap {
  margin-top: 18px;
  border-radius: var(--radius2);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 18px;
}
html[data-theme="dark"] .searchWrap {
  background: var(--surface);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.searchHeader {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.searchHeader h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.searchHeader p {
  margin: 0;
  color: var(--muted2);
  font-size: 13px;
  font-weight: 750;
}

.searchBox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
}
html[data-theme="dark"] .searchBox {
  background: rgba(7, 11, 20, 0.45);
  border-color: var(--border);
}
.searchBox input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  padding: 4px 4px;
}
.searchBox input::placeholder {
  color: var(--muted);
}
html[data-theme="dark"] .searchBox input::placeholder {
  color: rgba(238, 242, 255, 0.55);
}

.searchClear {
  border: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 950;
  border-radius: 12px;
  padding: 10px 12px;
}
html[data-theme="dark"] .searchClear {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border);
  color: var(--text);
}
.searchClear:hover {
  opacity: 0.95;
}

.searchMeta {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted2);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.chips {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  cursor: pointer;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
}
html[data-theme="dark"] .chip {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}
.chip:hover {
  opacity: 0.95;
}

.results {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 820px) {
  .results {
    grid-template-columns: 1fr;
  }
}
.resultItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border);
  transition:
    transform 0.08s ease,
    opacity 0.15s ease,
    border-color 0.15s ease;
}
html[data-theme="dark"] .resultItem {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border);
}
.resultItem:hover {
  transform: translateY(-1px);
  opacity: 0.98;
  border-color: rgba(249, 115, 22, 0.35);
}
.resultItem[aria-selected="true"] {
  border-color: rgba(249, 115, 22, 0.75);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18);
}
.resultLeft {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.resultName {
  font-weight: 950;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.resultHint {
  font-size: 12px;
  color: var(--muted2);
}
.arrow {
  color: var(--muted);
  font-weight: 950;
}

/* =========================
       SECTIONS
       ========================= */
.sectionTitle {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.sectionTitle h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.01em;
}
.sectionTitle p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  font-size: 13px;
  max-width: 72ch;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 920px) {
  .grid3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.card .k {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  margin: 0;
  font-size: 15px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.18);
}
.card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* Pricing blocks */
.pricingRow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
@media (max-width: 920px) {
  .pricingRow {
    grid-template-columns: 1fr;
  }
}
.plan {
  border-radius: var(--radius2);
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.plan h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.plan .sub {
  margin-top: 6px;
  color: var(--muted2);
  font-size: 13px;
  font-weight: 700;
}
.price {
  margin-top: 12px;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.02em;
}
.price small {
  font-size: 13px;
  color: var(--muted2);
  font-weight: 700;
}
.plan .cta {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.recommended {
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow:
    0 0 0 3px rgba(249, 115, 22, 0.14),
    0 12px 40px rgba(249, 115, 22, 0.12);
}
.ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(249, 115, 22, 0.16);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: var(--accent);
  font-weight: 950;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
}

/* Download block */
.downloadBox {
  border-radius: var(--radius2);
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.downloadBox h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.downloadBox p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* =========================
       FOOTER
       ========================= */
footer {
  border-top: 1px solid var(--border);
  padding: 26px 0 40px;
  color: var(--muted);
  background: #f5e6e0; /* ✅ footer özel rengi */
}

html[data-theme="dark"] footer {
  background: var(--peach); /* dark'ta da hafif peach tint */
}
.footerGrid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 14px;
}
@media (max-width: 920px) {
  .footerGrid {
    grid-template-columns: 1fr;
  }
}
.footerBrand {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footerBrand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  padding: 6px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
}
html[data-theme="dark"] .footerBrand img {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border);
}
.footerCol h4 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.2px;
}
.footerLinks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}
.footerLinks a {
  color: var(--muted);
  padding: 6px 0;
  font-weight: 750;
}
.footerLinks a:hover {
  color: var(--text);
}

/* Social link icons (left) */
.socialLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  padding: 6px 0;
  font-weight: 800;
}
.socialLink:hover {
  color: var(--text);
}
.socialLink .icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
}
html[data-theme="dark"] .socialLink .icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border);
}

/* Footer QR (150x150) inside footerCol */
.footerQr {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  text-align: left;
}
.footerQrTitle {
  font-size: 13px;
  font-weight: 950;
  color: var(--text);
  margin-bottom: 10px;
}
.footerQr img {
  width: 180px;
  height: 180px;
  display: inline-block;
  padding: 10px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  image-rendering: pixelated;
}
.footerQrNote {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted2);
  font-weight: 900;
}

/* Payment trust (vertical logos) */
.paymentTrust {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.paymentTitle {
  font-size: 12px;
  font-weight: 950;
  color: var(--text);
  margin-bottom: 8px;
}
.paymentLogos {
  display: flex;
  flex-direction: line; /* vertical as requested */
  align-items: left;
  align-items: flex-start;
  gap: 10px;
}
.paymentLogos svg {
  width: 90px;
  height: auto;
  align-items: left;
  opacity: 0.88;
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
}
.paymentLogos svg:hover {
  opacity: 1;
  transform: translateX(2px);
}

.footerBottom {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted2);
  font-weight: 700;
}

.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
code {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 12px;
}
html[data-theme="dark"] code {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border);
}
