* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #f7f7f7;
  overflow-x: hidden;
  width: 100%;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #f7f7f7;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.navbar-logo img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav links */
.navbar-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  text-decoration: none;
  color: #2d2d2d;
  font-size: 17px;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  width: 0;
  height: 2px;
  background: #2d2d2d;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: calc(100% - 28px);
}

/* "Kazanmaya Başla!" — vurgulu link */
.nav-link.highlight {
  color: #2d2d2d;
  font-weight: 700;
}

.nav-link.highlight::after {
  background: #2d2d2d;
}

/* "Hemen Başla" butonu */
.nav-btn {
  text-decoration: none;
  background: linear-gradient(135deg, #b4d9b5 0%, #9ad4b6 50%, #05a6bd 100%);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18.073px;
  font-weight: 500;
  letter-spacing: -0.34px;
  padding: 14px 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  margin-left: 8px;
  box-sizing: border-box;
}

.nav-btn:hover {
  background: linear-gradient(135deg, #9ad4b6 0%, #05a6bd 100%);
  transform: translateY(-1px);
}

/* ── HAMBURger (mobil) ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2d2d2d;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Hamburger açık hali */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  background: #f7f7f7;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 100vw;
}

.hero-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  min-height: calc(100vh - 72px);
}

/* Sol kolon */
.hero-left {
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 49px;
  font-weight: 400;
  line-height: 54.2px;
  color: #000000;
  letter-spacing: -1.5px;
}

.hero-highlight {
  position: relative;
  display: inline;
  color: #000000;
  font-weight: 800;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #f5c400;
  border-radius: 2px;
}

.hero-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.3px;
  color: #000000;
}

.hero-sub strong {
  font-weight: 700;
  color: #111111;
}

.hero-note {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.3px;
  color: #000000;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
}

.hero-btn {
  text-decoration: none;
  background: linear-gradient(135deg, #b4d9b5 0%, #9ad4b6 50%, #05a6bd 100%);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 20.8px;
  letter-spacing: -0.4px;
  padding: 14px 32px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.hero-btn:hover {
  background: linear-gradient(135deg, #9ad4b6 0%, #05a6bd 100%);
  transform: translateY(-1px);
}

.hero-secondary {
  text-decoration: underline;
  text-underline-offset: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: -0.3px;
  color: #000000;
  transition: gap 0.2s;
}

.hero-secondary:hover {
  gap: 12px;
}

/* Sağ kolon — telefon mockup */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: visible;
}

.hero-corner-icon {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 120px;
  height: 120px;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}

/* Video + badge sarmalayıcı */
.video-wrapper {
  position: relative;
  width: 320px;
  height: 650px;
}

@property --angle-video {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes spin-border-video {
  from { --angle-video: 0deg; }
  to   { --angle-video: 360deg; }
}

.video-wrapper::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 27px;
  padding: 3px;
  background: conic-gradient(
    from var(--angle-video),
    transparent 0%,
    transparent 55%,
    #b4d9b5 68%,
    #9ad4b6 80%,
    #05a6bd 90%,
    transparent 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: spin-border-video 3s linear infinite;
  z-index: 3;
}

/* Floating badge genel */
.phone-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border-radius: 50px;
  padding: 10px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  z-index: 10;
}

.badge-icon { font-size: 15px; line-height: 1; }
.badge-text { font-size: 13px; font-weight: 600; color: #111; }

/* Avatar çiftleri */
.badge-avatars { display: flex; }
.avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -6px;
}
.avatar:first-child { margin-left: 0; }
.av1 { background: #ff6b35; }
.av2 { background: #7c3aed; }

/* Badge konumları */
.badge-tl  { top: 60px;  left: -90px;  animation: float 3s ease-in-out infinite; }
.badge-l   { top: 260px; left: -100px; animation: float 3.4s ease-in-out infinite 0.5s; }
.badge-r   { top: 180px; right: -130px; animation: float 3.2s ease-in-out infinite 0.3s; }
.badge-bl  { bottom: 60px; left: -110px; animation: float 2.8s ease-in-out infinite 0.2s; }

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

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 24px;
  z-index: 2;
}

/* ── TABLET ── */
@media (max-width: 1100px) {
  .hero-left {
    padding: 60px 40px 60px 48px;
  }

  .hero-title {
    font-size: 38px;
    line-height: 44px;
  }

  .video-wrapper {
    width: 270px;
    height: 548px;
  }

  /* Badge'ler tablette taşıyor — gizle */
  .phone-badge {
    display: none;
  }
}

/* ── NAV TABLET (hamburger erken devreye girer) ── */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .navbar-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #f7f7f7;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    padding: 16px 24px 24px;
  }

  .navbar-menu.open {
    display: block;
  }

  .navbar-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .nav-link,
  .nav-btn {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
  }

  .nav-btn {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
    letter-spacing: -0.2px;
  }
}

/* ── MOBİL ── */
@media (max-width: 768px) {

  /* Navbar */
  .hamburger {
    display: flex;
  }

  .navbar-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #f7f7f7;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    padding: 16px 24px 24px;
  }

  .navbar-menu.open {
    display: block;
  }

  .navbar-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .nav-link,
  .nav-btn {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
  }

  .nav-btn {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
    letter-spacing: -0.2px;
  }

  /* Hero layout */
  .hero {
    min-height: unset;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .hero-left {
    order: 1;
    padding: 48px 24px 24px;
    gap: 16px;
  }

  .hero-right {
    order: 2;
    height: auto;
    padding: 24px 24px 48px;
    overflow: hidden;
  }

  .video-wrapper {
    width: min(80vw, 320px);
    height: calc(min(80vw, 320px) * 2.03);
  }

  .hero-corner-icon {
    display: none;
  }

  /* Badge'ler mobilden gizlensin (taşar) */
  .phone-badge {
    display: none;
  }

  /* Kazanç badge'i mobilden göster, video içine konumlandır */
  .badge-bl {
    display: flex;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    animation: float 2.8s ease-in-out infinite 0.2s;
    white-space: nowrap;
    max-width: calc(100% - 24px);
    font-size: 11px;
    padding: 8px 12px;
  }

  /* Başlık küçülsün */
  .hero-title {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.8px;
  }

  .hero-sub,
  .hero-note {
    font-size: 15px;
    line-height: 24px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-btn,
  .hero-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 24px;
  }
}

@media (max-width: 480px) {
  .demo-row-2 {
    grid-template-columns: 1fr;
  }
}

/* ── DEMO FORM SECTION ── */
.demo-section {
  background: #f7f7f7;
  padding: 80px 16px;
}

.demo-inner {
  max-width: 512px;
  margin: 0 auto;
}

.demo-header {
  text-align: center;
  margin-bottom: 32px;
}

.demo-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 6vw, 32px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.8px;
  color: #121926;
  margin-bottom: 8px;
}

.demo-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: -0.32px;
  color: #4b5565;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.demo-field-wrap { position: relative; }

.demo-input {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: #121926;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 21px 16px 11px 16px;
  width: 100%;
  height: 52px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.demo-input:focus { border-color: #000; }

.demo-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: #9ca3af;
  pointer-events: none;
  transition: all 0.15s ease;
}

.demo-input:focus ~ .demo-label,
.demo-input:not(:placeholder-shown) ~ .demo-label {
  top: 10px;
  transform: translateY(0);
  font-size: 11px;
  color: #6b7280;
}

.demo-phone-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 52px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
}

.demo-phone-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px 0 14px;
  background: transparent;
  border: none;
  border-right: 1px solid #e5e7eb;
  cursor: pointer;
  flex-shrink: 0;
  height: 100%;
  font-size: 20px;
}

.demo-phone-dial {
  padding: 0 8px 0 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: #121926;
  border-right: 1px solid #f0f0f0;
  flex-shrink: 0;
  user-select: none;
}

.demo-phone-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: #121926;
  background: transparent;
  height: 100%;
}

.demo-phone-input::placeholder { color: #9ca3af; }

.demo-country-drop {
  position: absolute;
  top: 56px;
  left: 0;
  width: 260px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  z-index: 200;
  overflow: hidden;
  display: none;
}

.demo-country-drop.is-open { display: block; }
.demo-country-search-wrap { padding: 8px; }

.demo-country-search {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 16px;
  outline: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-sizing: border-box;
}

.demo-country-list { max-height: 200px; overflow-y: auto; }

.demo-country-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.demo-country-item:hover { background: #f9fafb; }
.demo-country-item.is-selected { background: #f9fafb; }
.demo-country-item-flag { font-size: 18px; }
.demo-country-item-name { font-size: 13px; color: #121926; flex: 1; }
.demo-country-item-dial { font-size: 13px; color: #9ca3af; }

.demo-submit {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #b4d9b5 0%, #9ad4b6 50%, #05a6bd 100%);
  border-radius: 999px;
  padding: 16px;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  transition: opacity 0.2s;
}

.demo-submit:hover { opacity: 0.9; }

.demo-privacy {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
  line-height: 18px;
}

.demo-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}

.demo-success-emoji { font-size: 48px; margin-bottom: 16px; }

.demo-success-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #121926;
  margin-bottom: 8px;
}

.demo-success-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: #4b5565;
}

/* ── DEMO STATS BANNER ── */
.demo-counter-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, #0d1f0e 0%, #0a1a2e 100%);
  border: 1px solid rgba(180, 217, 181, 0.25);
  border-radius: 20px;
  padding: 24px 28px;
  margin-bottom: 28px;
  box-shadow: 0 4px 24px rgba(5, 166, 189, 0.12);
}

.demo-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.demo-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(180, 217, 181, 0.2);
  flex-shrink: 0;
}

.demo-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1;
  background: linear-gradient(135deg, #b4d9b5, #9ad4b6, #05a6bd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.demo-stat-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #9ca3af;
  text-align: center;
  line-height: 1.4;
}

.demo-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.demo-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, #b4d9b5, #9ad4b6, #05a6bd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.demo-badge-sep {
  font-size: 12px;
  color: #d1d5db;
}

.demo-badge-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
}

.demo-req { color: #ef4444; }

.demo-field-plain {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.demo-field-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
}

.demo-input-plain {
  padding: 0 16px;
  height: 52px;
  font-size: 16px;
}

.demo-select-native {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%239ca3af' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  color: #121926;
}

.demo-select-native:invalid { color: #9ca3af; }

.demo-input[type="date"] { color: #121926; cursor: pointer; }

/* Telefon label üstte */
.demo-field-plain .demo-phone-wrap {
  border-radius: 10px;
}

/* ── PROBLEM SECTION ── */
.problem-section {
  background: #f7f7f7;
  padding: 100px 24px;
}

.problem-inner {
  max-width: 860px;
  margin: 0 auto;
}

.problem-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.problem-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 6px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #4b5565;
  letter-spacing: 0.2px;
}

.problem-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 49px;
  font-weight: 400;
  line-height: 54.2px;
  letter-spacing: -1.5px;
  color: #000000;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.problem-card {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.problem-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.problem-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-color: #9ad4b6;
}

.problem-icon {
  font-size: 36px;
  line-height: 1;
  flex-shrink: 0;
}

.problem-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.3px;
  color: #000000;
}

.problem-text strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .problem-section {
    padding: 64px 24px;
  }

  .problem-title {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.8px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .problem-card {
    padding: 24px 20px;
  }
}

/* ── ELEME SECTION ── */
.eleme-section {
  background: #0a0a0a;
  padding: 100px 24px;
}

.eleme-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.eleme-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eleme-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  width: fit-content;
}

.eleme-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 49px;
  font-weight: 400;
  line-height: 54.2px;
  letter-spacing: -1.5px;
  color: #ffffff;
}

.eleme-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.3px;
  color: rgba(255,255,255,0.5);
}

.eleme-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eleme-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 28px;
  transition: background 0.2s, border-color 0.2s;
}

.eleme-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
}

.eleme-x {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.eleme-item-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.3px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .eleme-section {
    padding: 64px 24px;
  }

  .eleme-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .eleme-title {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.8px;
  }
}

/* ── SOSYAL KANIT SECTION ── */
.proof-section {
  background: #f7f7f7;
  padding: 100px 24px;
}

.proof-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.proof-header {
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 6px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #4b5565;
}

.proof-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 49px;
  font-weight: 400;
  line-height: 54.2px;
  letter-spacing: -1.5px;
  color: #000000;
}

.proof-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.3px;
  color: #4b5565;
}

.proof-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #6b7280;
  text-transform: uppercase;
  margin-top: 32px;
  margin-bottom: 4px;
}

.proof-grid {
  display: grid;
  gap: 16px;
}

.proof-testimonials { grid-template-columns: repeat(3, 1fr); }
.proof-earnings-grid { grid-template-columns: repeat(3, 1fr); }
.proof-stories-grid  { grid-template-columns: repeat(2, 1fr); }

/* Kart genel */
.proof-card {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 20px;
  padding: 28px;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.proof-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-color: #9ad4b6;
  transform: translateY(-2px);
}

/* Yorum kartı */
.proof-stars {
  font-size: 16px;
  color: #f5c400;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.proof-comment-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.2px;
  color: #374151;
  margin-bottom: 20px;
  flex: 1;
}

.proof-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.proof-author-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #111111;
}

.proof-author-info {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  color: #9ca3af;
}

/* Kazanç kartı */
.proof-earning {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.proof-earning-placeholder {
  background: #f7f7f7;
  border: 1.5px dashed #d1d5db;
  border-radius: 12px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.proof-earning-placeholder:hover { border-color: #9ad4b6; }

.proof-earning-icon { font-size: 28px; }

.proof-earning-hint {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  color: #9ca3af;
}

.proof-earning-info { text-align: center; }

.proof-earning-amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.8px;
  background: linear-gradient(135deg, #b4d9b5, #05a6bd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-earning-period {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: #9ca3af;
  margin-top: 2px;
}

/* Önce/Sonra kartı */
.proof-story-cols {
  display: flex;
  align-items: center;
  gap: 16px;
}

.proof-story-side {
  flex: 1;
  padding: 16px;
  border-radius: 12px;
}

.proof-before { background: #fff5f5; border: 1px solid #fee2e2; }
.proof-after  { background: #f0fdf4; border: 1px solid #bbf7d0; }

.proof-story-tag {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ef4444;
  margin-bottom: 8px;
}

.proof-after-tag { color: #16a34a; }

.proof-story-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #374151;
}

.proof-story-arrow {
  font-size: 20px;
  color: #9ca3af;
  flex-shrink: 0;
}

/* Mobil */
@media (max-width: 768px) {
  .proof-section { padding: 64px 24px; }

  .proof-title {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.8px;
  }

  .proof-testimonials,
  .proof-earnings-grid,
  .proof-stories-grid { grid-template-columns: 1fr; }

  .proof-story-cols {
    flex-direction: column;
    gap: 8px;
  }

  .proof-story-arrow { transform: rotate(90deg); }
}

.proof-earning-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #b4d9b5 0%, #9ad4b6 50%, #05a6bd 100%);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.2px;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* ── PROMO VİDEOLAR ── */
.promo-videos-section {
  background: #f7f7f7;
  padding: 80px 40px;
}

.promo-videos-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.promo-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.promo-video-card {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(#f7f7f7, #f7f7f7) padding-box,
              linear-gradient(135deg, #b4d9b5, #9ad4b6, #05a6bd) border-box;
  border: 4px solid transparent;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.promo-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .promo-videos-section {
    padding: 56px 24px;
  }

  .promo-videos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ── NELER SAGLIYORUZ SECTION ── */
.features-section {
  background: #ffffff;
  padding: 100px 24px;
}

.features-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.features-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 49px;
  font-weight: 400;
  line-height: 54.2px;
  letter-spacing: -1.5px;
  color: #000000;
}

.features-divider {
  display: flex;
  align-items: center;
  gap: 12px;
}

.features-divider-line {
  width: 60px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #9ad4b6);
  border-radius: 2px;
}

.features-divider-line:last-child {
  background: linear-gradient(90deg, #9ad4b6, transparent);
}

.features-divider-icon {
  width: 24px;
  height: 24px;
  opacity: 0.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.features-card {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 24px;
  padding: 48px 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.features-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: #9ad4b6;
  transform: translateY(-4px);
}

.features-icon-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b4d9b515 0%, #05a6bd15 100%);
  border: 1.5px solid #9ad4b640;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.features-icon {
  font-size: 36px;
  line-height: 1;
}

.features-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: #000000;
}

.features-card-line {
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #b4d9b5, #05a6bd);
  border-radius: 2px;
}

.features-card-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.2px;
  color: #4b5565;
}

@media (max-width: 768px) {
  .features-section { padding: 64px 24px; }

  .features-title {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.8px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ── FOOTER ── */
.footer {
  background: #0a0a0a;
  padding: 64px 24px 32px;
}

.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.2px;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
}

.footer-links-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links ul a {
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-links ul a:hover {
  color: #9ad4b6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-copy {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: #9ad4b6; }

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ── SSS SECTION ── */
.faq-section {
  background: #f7f7f7;
  padding: 100px 24px;
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 49px;
  font-weight: 400;
  line-height: 54.2px;
  letter-spacing: -1.5px;
  color: #000000;
}

.faq-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.3px;
  color: #4b5565;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.is-open {
  border-color: #9ad4b6;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #000000;
}

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: #9ca3af;
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.2s;
  line-height: 1;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  color: #05a6bd;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
}

.faq-item.is-open .faq-answer {
  max-height: 200px;
  padding: 0 28px 24px;
}

.faq-answer p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.2px;
  color: #4b5565;
}

@media (max-width: 768px) {
  .faq-section { padding: 64px 24px; }

  .faq-title {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.8px;
  }

  .faq-question {
    padding: 20px;
    font-size: 15px;
  }

  .faq-answer { padding: 0 20px; }
  .faq-item.is-open .faq-answer { padding: 0 20px 20px; }
}

/* Gerçek ekranlar grid */
.proof-screens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}

.proof-screen-card {
  background: linear-gradient(#ffffff, #ffffff) padding-box,
              linear-gradient(135deg, #b4d9b5, #9ad4b6, #05a6bd) border-box;
  border: 2px solid transparent;
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
}

.proof-screen-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.proof-screen-img {
  width: 100%;
  height: auto;
  display: block;
}

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

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}


/* ── WHATSAPP FLOATING BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55);
}

.wa-fab svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

/* Popup */
.wa-popup {
  background: #fff;
  border-radius: 20px;
  padding: 24px 20px 20px;
  width: 300px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: scale(0.85) translateY(16px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.wa-popup.is-open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.wa-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 20px;
  color: #9ca3af;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.wa-popup-close:hover { color: #374151; }

.wa-popup-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wa-popup-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b4d9b5, #05a6bd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.wa-popup-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wa-popup-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.wa-popup-role {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  color: #6b7280;
}

.wa-popup-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  color: #25d366;
  font-weight: 500;
}

.wa-popup-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 1.8s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.wa-popup-bubble {
  background: #f0f4f8;
  border-radius: 4px 16px 16px 16px;
  padding: 12px 14px;
}

.wa-popup-bubble p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #374151;
  margin: 0;
}

.wa-popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.wa-popup-btn:hover {
  background: #20bd5a;
  transform: translateY(-1px);
}

.wa-popup-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .wa-float {
    bottom: 20px;
    right: 16px;
  }
  .wa-popup {
    width: calc(100vw - 48px);
  }
}
