@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap");

:root {
  --bg: #f5f5f6;
  --surface: #ffffff;
  --surface-soft: #f7f0ea;
  --text: #121826;
  --muted: #626c78;
  --line: #e8eaee;
  --primary: #f67c1f;
  --primary-strong: #e1650d;
  --dark: #101828;
  --hero-soft: #f3dbd3;
  --shadow: 0 18px 44px rgba(20, 26, 39, 0.09);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.lang-tr .lang-en,
body.lang-en .lang-tr {
  display: none;
}

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

:target {
  scroll-margin-top: 92px;
}

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(232, 234, 238, 0.9);
  background: rgba(245, 245, 246, 0.9);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 7px 18px rgba(246, 124, 31, 0.28);
  background: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-badge {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #ffa358);
  box-shadow: 0 7px 18px rgba(246, 124, 31, 0.28);
  font-size: 16px;
  font-weight: 700;
}

.brand-name {
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 9px 11px;
  color: var(--muted);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--text);
  background: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 3px;
}

.lang-btn {
  border: 0;
  background: transparent;
  padding: 6px 10px;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
}

.lang-btn.active {
  color: #fff;
  background: var(--dark);
}

.download-btn {
  background: var(--primary-strong);
  color: #fff;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.hero-section {
  padding: 10px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 24px;
  align-items: center;
}

.hero-left {
  min-width: 0;
}

.hero-right {
  min-width: 0;
  min-height: 420px;
  position: relative;
  display: grid;
  place-items: center;
  padding: 20px 0;
}

.hero-slider {
  position: relative;
  width: min(330px, 88%);
  aspect-ratio: 0.58;
  border-radius: var(--radius-xl);
  border: 1px solid #f2d8ce;
  background: var(--hero-soft);
  box-shadow: var(--shadow);
  padding: 12px;
  overflow: hidden;
}

.hero-badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff6ea;
  color: #bf5f17;
  border: 1px solid #f8dfc9;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 600;
}

.hero-title {
  margin: 12px 0 0;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: clamp(34px, 5.2vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.hero-title .accent {
  color: var(--primary);
}

.hero-desc {
  margin: 16px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.hero-cta-row {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-store-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-market-btn {
  min-width: 162px;
  min-height: 50px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid #d9dfea;
  background: #fff;
  color: var(--dark);
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
}

.hero-market-btn.dark {
  border-color: #101828;
  background: #101828;
  color: #fff;
  box-shadow: 0 10px 20px rgba(16, 24, 40, 0.24);
}

.badge-top {
  display: block;
  font-size: 10px;
  line-height: 1.15;
  font-weight: 500;
  opacity: 0.85;
}

.badge-main {
  display: block;
  margin-top: 3px;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
}

.market-text {
  display: block;
}

.market-icon,
.store-icon {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.market-icon {
  width: 22px;
  height: 22px;
}

.store-icon {
  width: 18px;
  height: 18px;
}

.market-icon svg,
.store-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid transparent;
  min-height: 45px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 700;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #ff9d4b);
  box-shadow: 0 10px 22px rgba(246, 124, 31, 0.28);
}

.hero-proof {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.proof-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #57bf83;
  box-shadow: 0 0 0 6px rgba(87, 191, 131, 0.2);
}

.hero-slide {
  position: absolute;
  inset: 12px 12px 40px;
  width: calc(100% - 24px);
  height: calc(100% - 46px);
  border-radius: 20px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(32, 40, 56, 0.22);
  display: none;
  opacity: 0;
  transform: scale(0.992);
}

.hero-slide.is-active {
  display: block;
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  animation: heroSlideFadeIn 320ms ease;
}

@keyframes heroSlideFadeIn {
  from {
    opacity: 0;
    transform: scale(0.992);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  z-index: 3;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(25, 32, 46, 0.28);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 18px;
  border-radius: 999px;
  background: var(--primary);
}

.features-section,
.how-section,
.community-section,
.cta-section {
  padding: 48px 0;
}

.how-section {
  background: #efe8e3;
}

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

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

.section-heading h2 {
  margin: 0;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: clamp(28px, 3.7vw, 46px);
  line-height: 1.1;
}

.section-heading p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.text-link {
  color: var(--primary-strong);
  font-size: 14px;
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: #f4efe9;
  border: 1px solid #ece4db;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: #fff;
  color: var(--primary-strong);
  font-size: 18px;
}

.feature-card h3 {
  margin: 14px 0 0;
  font-size: 21px;
  font-family: "Sora", "Outfit", sans-serif;
}

.feature-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step-card {
  background: #f6f2ee;
  border: 1px solid #e8dfd6;
  border-radius: var(--radius-lg);
  padding: 18px;
  text-align: center;
  position: relative;
}

.step-number {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.step-visual {
  width: min(120px, 100%);
  aspect-ratio: 1;
  margin: 14px auto 10px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 32px;
  box-shadow: var(--shadow);
}

.visual-1 {
  background: linear-gradient(160deg, #f3f4f8, #dbe1eb);
}

.visual-2 {
  background: linear-gradient(160deg, #2a2d37, #1a1f2c);
}

.visual-3 {
  background: linear-gradient(160deg, #2a8c8d, #2572a0);
}

.step-card h3 {
  margin: 8px 0 0;
  font-size: 20px;
  font-family: "Sora", "Outfit", sans-serif;
}

.step-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.community-card {
  background: #f2efeb;
  border: 1px solid #e5e0da;
  border-radius: 20px;
  padding: 10px;
  min-height: 240px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.community-card:nth-child(2n) {
  background: #ececf0;
}

.community-card:nth-child(3n) {
  background: #eadfcf;
}

.community-card img {
  width: min(130px, 72%);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(33, 39, 52, 0.18);
}

.city-chip {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(223, 223, 223, 0.8);
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 11px;
  color: #6b7380;
}

.likes {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  color: #5a6470;
}

.cta-banner {
  border-radius: 28px;
  padding: clamp(20px, 4vw, 34px);
  color: #fff;
  background: linear-gradient(135deg, #ff6f2b, #ff4d4f 54%, #7f1a7c);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.cta-banner::before {
  width: 170px;
  height: 170px;
  left: 23%;
  top: -36px;
}

.cta-banner::after {
  width: 350px;
  height: 350px;
  right: -90px;
  bottom: -170px;
}

.cta-copy h2 {
  margin: 0;
  max-width: 470px;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.06;
}

.cta-copy p {
  margin: 14px 0 0;
  max-width: 510px;
  color: rgba(255, 255, 255, 0.9);
}

.store-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-btn {
  min-width: 130px;
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.store-btn.dark {
  background: rgba(12, 15, 25, 0.35);
}

.cta-phone {
  display: flex;
  justify-content: center;
}

.mini-phone {
  width: min(260px, 80%);
  aspect-ratio: 0.67;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: #f1cfc5;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.mini-phone img {
  width: 62%;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(29, 34, 50, 0.22);
}

.footer {
  margin-top: 34px;
  padding: 26px 0 12px;
  border-top: 1px solid #e6e8ed;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
}

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

.footer-brand {
  margin-bottom: 10px;
}

.footer-social-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer h4 {
  margin: 0 0 8px;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 16px;
}

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

.footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links-list a:hover {
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.footer-contact-inline {
  color: var(--muted);
  font-size: 14px;
  word-break: break-word;
}

.footer-contact-inline:hover {
  color: var(--text);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 6px 12px 6px 7px;
  border-radius: 999px;
  border: 1px solid #e3e8f2;
  background: #fff;
  box-shadow: 0 8px 18px rgba(18, 24, 38, 0.08);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}

.footer-social-icon-wrap {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.footer-social-link--instagram {
  color: #7d255d;
  border-color: #f4cedf;
  background: linear-gradient(135deg, #fff3e8 0%, #ffe9f5 100%);
}

.footer-social-link--instagram .footer-social-icon-wrap {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 55%, #8134af 100%);
  box-shadow: 0 8px 16px rgba(221, 42, 123, 0.3);
}

.footer-social-link--tiktok {
  color: #f7fbff;
  border-color: #141a29;
  background: linear-gradient(135deg, #101828 0%, #1f2937 100%);
}

.footer-social-link--tiktok .footer-social-icon-wrap {
  background: #0b0f1a;
  box-shadow: -2px 0 0 #25f4ee, 2px 0 0 #fe2c55;
}

.footer-social-icon {
  width: 13px;
  height: 13px;
  display: block;
  fill: currentColor;
}

.brand-logo-wrap,
.main-nav a,
.download-btn,
.btn,
.hero-market-btn,
.hero-slider,
.hero-slide,
.hero-dot,
.feature-card,
.feature-icon,
.step-card,
.step-visual,
.community-card,
.community-card img,
.cta-banner,
.store-btn,
.footer-links-list a,
.footer-social-link,
.footer-social-icon-wrap,
.text-link {
  transition: transform 260ms ease, box-shadow 260ms ease, background-color 260ms ease,
    color 260ms ease, border-color 260ms ease, opacity 260ms ease;
}

@media (hover: hover) {
  .brand:hover .brand-logo-wrap {
    transform: rotate(-6deg) scale(1.06);
  }

  .download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(246, 124, 31, 0.3);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(246, 124, 31, 0.33);
  }

  .hero-market-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(16, 24, 40, 0.16);
  }

  .hero-market-btn.dark:hover {
    box-shadow: 0 16px 26px rgba(16, 24, 40, 0.34);
  }

  .hero-right:hover .hero-slider {
    box-shadow: 0 24px 54px rgba(20, 26, 39, 0.14);
  }

  .hero-right:hover .hero-slide.is-active {
    transform: translateY(-4px) rotate(-1deg) scale(1.01);
  }

  .feature-card:hover {
    transform: translateY(-6px);
    border-color: #e1d4c8;
    background: #f8f2ec;
    box-shadow: 0 16px 30px rgba(31, 24, 14, 0.08);
  }

  .feature-card:hover .feature-icon {
    transform: scale(1.07);
    box-shadow: 0 10px 18px rgba(246, 124, 31, 0.18);
  }

  .step-card:hover {
    transform: translateY(-6px);
    border-color: #deccb9;
    box-shadow: 0 16px 32px rgba(33, 28, 21, 0.09);
  }

  .step-card:hover .step-visual {
    transform: translateY(-4px) scale(1.03);
  }

  .community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(20, 22, 30, 0.12);
  }

  .community-card:hover img {
    transform: scale(1.04);
  }

  .cta-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(43, 20, 45, 0.24);
  }

  .store-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.28);
  }

  .store-btn.dark:hover {
    background: rgba(12, 15, 25, 0.5);
  }

  .footer-social-link:hover {
    transform: translateY(-2px);
  }

  .footer-social-link:hover .footer-social-icon-wrap {
    transform: scale(1.06);
  }

  .footer-social-link--instagram:hover {
    box-shadow: 0 14px 24px rgba(221, 42, 123, 0.22);
  }

  .footer-social-link--tiktok:hover {
    box-shadow: 0 14px 24px rgba(16, 24, 40, 0.32);
  }

  .footer-links-list a.footer-social-link--instagram:hover {
    color: #7d255d;
  }

  .footer-links-list a.footer-social-link--tiktok:hover {
    color: #f7fbff;
  }

  .text-link:hover {
    color: var(--primary);
    transform: translateX(2px);
  }
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 11px;
  border-top: 1px solid #eceef2;
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.legal-wrap {
  padding: 28px 0 36px;
}

.legal-head,
.legal-body,
.support-box {
  padding: 22px;
}

.legal-head p,
.legal-body p,
.legal-body li,
.support-box p,
.support-box li {
  color: var(--muted);
}

.legal-head h1 {
  margin: 0;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.legal-body {
  margin-top: 14px;
}

.legal-body h2 {
  margin: 12px 0 6px;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 22px;
}

.legal-body h3 {
  margin: 10px 0 6px;
  font-family: "Sora", "Outfit", sans-serif;
  font-size: 19px;
}

.legal-body ul {
  margin: 0 0 10px 18px;
  padding: 0;
}

.support-box {
  margin-top: 14px;
}

body.js-ready .reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.97);
  filter: blur(6px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.21, 0.98, 0.32, 0.99),
    filter 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

body.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .brand-logo-wrap,
  .main-nav a,
  .download-btn,
  .btn,
  .hero-slider,
  .hero-slide,
  .hero-dot,
  .feature-card,
  .feature-icon,
  .step-card,
  .step-visual,
  .community-card,
  .community-card img,
  .cta-banner,
  .store-btn,
  .footer-links-list a,
  .footer-social-link,
  .footer-social-icon-wrap,
  .text-link,
  .reveal {
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 1060px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .feature-grid,
  .steps-grid,
  .community-grid,
  .cta-banner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .community-card {
    min-height: 220px;
  }

  .cta-phone {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 22px);
  }

  .header-inner {
    min-height: 68px;
  }

  .download-btn {
    display: none;
  }

  .hero-section {
    padding-top: 20px;
  }

  .hero-market-btn {
    min-width: 148px;
  }

  .hero-title {
    font-size: clamp(30px, 10vw, 48px);
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-right {
    min-height: 320px;
  }

  .hero-slider {
    width: min(320px, 94%);
  }

  .footer {
    margin-top: 24px;
  }

  .footer-inner {
    align-items: flex-start;
  }
}
