:root {
  --primary: #2FBF71;
  --primary-dark: #1E8E5A;
  --primary-soft: #E6F6EE;

  --secondary: #0F2A44;
  --secondary-dark: #081828;

  --background: #F8FAF9;
  --surface: #FFFFFF;
  --surface-soft: #F2F6F4;

  --text-primary: #1C1C1C;
  --text-secondary: #6B7280;

  --border: #E4EAE7;
}
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--background);
  color: var(--text-primary);
}

/* GLASS */
.glass {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: .25s ease;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 20px rgba(47,191,113,0.18);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 10px 24px rgba(47,191,113,0.25);
}

.btn-secondary {
  background: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background: var(--secondary-dark);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
}

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

.subtitle {
  margin-top: 24px;
  color: var(--text-secondary);
}

/* SECTIONS */
.section {
  margin-top: 100px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* PRICES */
.price-list {
  display: flex;
  gap: 24px;
  overflow-x: auto;
}

.price-card {
  min-width: 220px;
  padding: 24px;
}

.price-value {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
}
/* ---------- HERO ---------- */

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta {
  font-size: 16px;
  padding: 18px 42px;
  box-shadow: 0 20px 40px rgba(47,191,113,0.35);
}

.btn-outline {
  padding: 18px 36px;
  border-radius: 18px;
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* HERO CARD STRONG */
.hero-card-strong {
  padding: 36px;
}

.hero-card-desc {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.hero-stats {
  margin-top: 28px;
  display: flex;
  gap: 28px;
}

.hero-stats strong {
  font-size: 20px;
  display: block;
}

.hero-stats span {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ---------- PRICE MARQUEE ---------- */

.price-marquee {
  overflow: hidden;
  position: relative;
}

.price-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollPrices 28s linear infinite;
}

@keyframes scrollPrices {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.price-card {
  min-width: 220px;
  padding: 24px;
  transition: transform .25s ease;
}

.price-card:hover {
  transform: translateY(-4px);
}

/* ---------- HEADER POLISH ---------- */

.header-btn {
  box-shadow: 0 10px 20px rgba(47,191,113,0.25);
}

/* ---------- STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step-card {
  padding: 32px;
  text-align: center;
}

.step-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ---------- TRUST ---------- */
.trust {
  background: var(--surface-soft);
  padding: 80px 40px;
  border-radius: 32px;
}

.trust-content {
  max-width: 700px;
}

.trust-list {
  margin-top: 24px;
  padding-left: 0;
  list-style: none;
}

.trust-list li {
  margin-bottom: 10px;
  font-weight: 500;
}

/* ---------- FINAL CTA ---------- */
.final-cta h2 {
  font-size: 32px;
  font-weight: 800;
}

.final-cta p {
  margin: 16px 0 32px;
  color: var(--text-secondary);
}

/* ---------- FOOTER ---------- */
.footer {
  margin-top: 120px;
  padding: 60px 20px;
  background: var(--secondary);
  color: white;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 32px;
}

.footer-brand strong {
  font-size: 20px;
}

.footer-brand strong span {
  color: var(--primary);
}

.footer-links a {
  display: inline-block;
  margin-right: 16px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.footer-copy {
  font-size: 13px;
  opacity: .7;
}

/* ================= HEADER ================= */

.app-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
}

.app-header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-main {
  color: var(--primary);
}

.logo-accent {
  color: var(--secondary);
  margin-left: 4px;
}

/* NAV */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.logout:hover {
  color: var(--error);
}

/* HEADER CTA */
.header-btn {
  padding: 10px 24px;
  font-size: 14px;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(47,191,113,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .logo {
    font-size: 22px;
  }

  .nav-actions {
    gap: 12px;
  }

  .nav-link {
    display: none; /* mobilde sade */
  }

  .header-btn {
    padding: 10px 20px;
  }
}
/* ================= AUTH ================= */

.auth-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-card {
  max-width: 420px;
  padding: 40px;

  display: grid;              /* 👈 EKLE */
  justify-items: center;      /* 👈 EKLE */
}
.auth-form {
  width: 100%;
  max-width: 360px;   /* 👈 OPTİK MERKEZ */
  margin: 0 auto;
}
.auth-card h1 {
  font-size: 28px;
  font-weight: 800;
}

.auth-subtitle {
  margin-top: 8px;
  margin-bottom: 28px;
  color: var(--text-secondary);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 14px;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
}

.btn-full {
  width: 100%;
  margin-top: 12px;
}

.auth-footer {
  margin-top: 22px;
  text-align: center;
  font-size: 14px;
}

.auth-footer a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}/* ================= LOGIN POLISH ================= */

.auth-card-strong {
  box-shadow: 0 30px 60px rgba(15,42,68,0.12);
  animation: fadeUp .45s ease;
}

.btn-login-cta {
  margin-top: 10px;
  font-size: 16px;
  padding: 16px 0;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(47,191,113,0.35);
}

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

.auth-divider {
  margin: 28px 0 18px;
  text-align: center;
  position: relative;
}

.auth-divider span {
  background: rgba(255,255,255,0.8);
  padding: 0 14px;
  font-size: 13px;
  color: var(--text-secondary);
}

.auth-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--border);
  z-index: -1;
}

/* ERROR */
.form-error {
  background: rgba(239,68,68,0.08);
  color: #EF4444;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  margin-bottom: 16px;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= OFFERS ================= */

.offer-list {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

.offer-card {
  padding: 28px;
}

.offer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.offer-header strong {
  font-size: 16px;
}

.offer-date {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.offer-status {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}

.offer-status.waiting {
  background: rgba(245,158,11,0.12);
  color: #F59E0B;
}

.offer-status.completed {
  background: rgba(34,197,94,0.15);
  color: #22C55E;
}

.offer-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 10px;
}

.offer-body span {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
}

.offer-body strong {
  font-size: 14px;
}

.offer-body .price {
  color: var(--primary-dark);
  font-size: 16px;
}

.offer-message {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(15,42,68,0.05);
  border-radius: 14px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* EMPTY STATE */
.empty-state {
  padding: 60px;
  text-align: center;
}

.empty-state h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.empty-state p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}
/* ================= PROFILE ================= */

.profile-header {
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.profile-info h2 {
  margin: 0;
  font-size: 22px;
}

.profile-info p {
  margin: 4px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.profile-badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(47,191,113,0.12);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 13px;
}

/* PASSWORD */
.password-card {
  padding: 28px;
  max-width: 420px;
}

.password-card h3 {
  margin-bottom: 16px;
}

.password-form {
  max-width: 360px;
}

.success-box {
  background: rgba(34,197,94,0.12);
  color: #22C55E;
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 14px;
  font-size: 13px;
}
/* ================= PASSWORD HORIZONTAL ================= */

.password-card-horizontal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
}

.password-info {
  max-width: 260px;
}

.password-info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.password-info p {
  font-size: 13px;
  color: var(--text-secondary);
}

.password-form-horizontal {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.password-form-horizontal input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 14px;
  min-width: 160px;
}

.password-form-horizontal button {
  padding: 12px 22px;
  white-space: nowrap;
}

/* MOBIL */
@media (max-width: 900px) {
  .password-card-horizontal {
    flex-direction: column;
    align-items: stretch;
  }

  .password-form-horizontal {
    flex-direction: column;
    align-items: stretch;
  }

  .password-form-horizontal input,
  .password-form-horizontal button {
    width: 100%;
  }
}

/* ================= OFFER STEPPER PAGE ================= */
/* ================= HERO MINI ================= */
.hero-mini{
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:flex-start;
  margin-bottom:28px;
}

/* ================= STEPPER ================= */
.stepper-card{ padding:32px; }

.stepper{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:28px;
}

.stepper .line{
  flex:1;
  height:2px;
  background: rgba(228,234,231,0.9);
  border-radius:999px;
}

.stepper-item{
  display:flex;
  gap:12px;
  align-items:center;
  min-width:220px;
  opacity:.6;
  transition:.25s ease;
}

.stepper-item .dot{
  width:36px;height:36px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;
  background: rgba(15,42,68,0.08);
  color: var(--secondary);
  border: 1px solid var(--border);
}

.stepper-item .meta strong{display:block;font-size:14px}
.stepper-item .meta span{display:block;font-size:12px;color:var(--text-secondary)}

.stepper-item.is-active{opacity:1}
.stepper-item.is-active .dot{
  background: var(--primary);
  color:#fff;
  border-color: transparent;
}
.stepper-item.is-done{opacity:1}
.stepper-item.is-done .dot{
  background: rgba(47,191,113,0.14);
  color: var(--primary-dark);
  border-color: rgba(47,191,113,0.22);
}

/* ================= STEP ================= */
.step-pane{ display:none; }
.step-pane.is-active{ display:block; }

.pane-title h3{
  margin:0;
  font-size:18px;
  font-weight:800;
}
.pane-title p{
  margin:8px 0 22px;
  color: var(--text-secondary);
  font-size:13px;
}

/* ================= FORM GRID (🔥 FIX) ================= */
.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;   /* 🔥 ASIL OLAY */
  row-gap: 22px;
}

.form-group{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.form-group input,
.form-group select{
  width:100%;
  padding:16px 18px;
  border-radius:16px;
  border:1px solid var(--border);
  background:#fff;
  font-size:14px;
  box-sizing:border-box;
}

.form-group input:focus,
.form-group select:focus{
  outline:none;
  border-color:var(--primary);
}

/* 2 kolon kaplama */
.col-span-2{
  grid-column: span 2;
}

/* ================= INFO ================= */
.info-strip{
  padding:14px 16px;
  display:flex;
  gap:10px;
  align-items:center;
}
.info-strip strong{color:var(--secondary)}
.info-strip span{color:var(--text-secondary); font-size:13px}

/* ================= UPLOAD ================= */
.upload-card{ margin-top:12px; }

.upload-drop{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:20px;
  border-radius:18px;
  border:1.5px dashed rgba(228,234,231,1);
  background: rgba(255,255,255,0.55);
  cursor:pointer;
}

.upload-drop strong{font-weight:800}
.upload-drop span{font-size:12px;color:var(--text-secondary)}

.preview-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:12px;
}

.preview-item{
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--border);
  background:#fff;
}
.preview-item img{
  width:100%;
  height:74px;
  object-fit:cover;
  display:block;
}

/* ================= CONFIRM ================= */
.confirm-strip{
  margin-top:18px;
  padding:16px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
}

.confirm-strip p{
  margin:6px 0 0;
  color:var(--text-secondary);
  font-size:13px;
}

.check{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  color: var(--text-secondary);
}
.check input{ width:18px; height:18px; }

/* ================= ACTIONS ================= */
.step-actions{
  margin-top:26px;
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
}
.step-actions-right{ display:flex; gap:10px; }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px){
  .hero-mini{ flex-direction:column; }
  .stepper{ flex-direction:column; align-items:flex-start; }
  .stepper .line{ display:none; }
  .stepper-item{ min-width:auto; }
  .form-grid{ grid-template-columns: 1fr; }
  .preview-grid{ grid-template-columns: repeat(3, 1fr); }
  .confirm-strip{ flex-direction:column; align-items:flex-start; }
}

/* üst boşluk fix */
.section{ margin-top:80px; }
main > .section:first-child{ margin-top:0; }/* ================= STEP VALIDATION ================= */

.input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 2px rgba(239,68,68,.15);
}

.input-error:focus {
  outline: none;
  border-color: #ef4444;
}

.form-error-inline {
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
}/* ================= STEP BUTTON POLISH ================= */

.btn-step-prev {
  color: #6B7280;
  background: #f5f7f6;
  border-color: var(--border);
}

.btn-step-prev:hover {
  background: #eef2f0;
  color: var(--text-primary);
}

.btn-step-next {
  padding: 14px 42px;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 12px 28px rgba(47,191,113,0.28);
}

.btn-step-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(47,191,113,0.38);
}.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 42px;      /* 🔥 ideal boy */
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    align-items: baseline;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-main {
    color: var(--primary);
}

.logo-accent {
    color: var(--secondary);
    margin-left: 3px;
}@media (max-width: 768px) {
    .logo-img {
        height: 34px;
    }

    .logo-text {
        font-size: 22px;
    }
}
/* ================= HERO BRAND ================= */

.hero-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-weight: 700;
    font-size: 15px;
    color: var(--secondary);
    opacity: .9;
}

.hero-logo {
    height: 120px;
    width: auto;
    display: block;
}
@media (max-width: 768px) {
    .hero-logo {
        height: 30px;
    }

    .hero-brand {
        font-size: 14px;
    }
}/* ================= SELECT FIX (PREMIUM) ================= */

.select-wrap{
  position: relative;
  width: 100%;
}

.select-field{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  width: 100%;
  padding: 16px 48px 16px 18px;  /* sağdan ok için boşluk */
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 14px;
  color: var(--text-primary);
  box-sizing: border-box;
  cursor: pointer;
}

.select-field:focus{
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(47,191,113,.12);
}

.select-icon{
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;

  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(15,42,68,0.06);
  border: 1px solid rgba(228,234,231,0.9);
  color: var(--secondary);
  font-size: 14px;
  font-weight: 800;
}