/* ============================================================
   Ucuzfatura.com – Global Styles
   Google Fonts: Inter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Reset & Variables ─────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1a56db;
  --primary-dark: #0e3fa8;
  --primary-light: #3b82f6;
  --accent: #06b6d4;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --text: #111827;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --bg: #f8faff;
  --white: #ffffff;
  --card-bg: #ffffff;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow: 0 4px 24px rgba(26, 86, 219, .12);
  --shadow-lg: 0 16px 48px rgba(26, 86, 219, .18);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all .25s cubic-bezier(.4, 0, .2, 1);
  --font: 'Inter', system-ui, sans-serif;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
}

.navbar-logo span {
  color: var(--text);
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 0;
  /* Remove space between name and .com */
}


.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  overflow: hidden;
  /* For slot effect */
  position: relative;
}

.logo-icon span {
  display: block;
  transition: transform 0.4s ease-out, opacity 0.3s;
}

/* Slot machine animations */
.slot-out {
  transform: translateY(100%);
  opacity: 0;
}

.slot-in {
  animation: slotIn 0.4s ease-out forwards;
}

@keyframes slotIn {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  font-weight: 500;
  font-size: .95rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.navbar-links a:hover {
  color: var(--primary);
}

.btn-nav {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition) !important;
}

.btn-nav:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f4fd 50%, #f0fff4 100%);
  padding: 80px 0 60px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 86, 219, .08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 86, 219, .1);
  color: var(--primary);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(26, 86, 219, .2);
}

.hero-badge::before {
  content: '⚡';
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 18px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.trust-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.trust-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-green {
  background: var(--success);
}

.dot-blue {
  background: var(--primary);
}

.dot-orange {
  background: var(--warning);
}

/* ── Form Card ─────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border: 1px solid rgba(26, 86, 219, .08);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.form-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-card-sub {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-section-label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 12px;
  margin-top: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.form-group label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  pointer-events: none;
  opacity: 0.8;
}

.form-control {
  width: 100%;
  padding: 12px 36px 12px 44px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26, 86, 219, .08);
}

.form-control.error {
  border-color: var(--danger);
}

.form-control.success-input {
  border-color: var(--success);
}

/* Removed .amount-suffix to avoid overlap with browser spinners */

.btn-submit {
  width: 100%;
  margin-top: 20px;
  padding: 15px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: .02em;
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 86, 219, .35);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

.btn-submit .spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  display: none;
}

.btn-submit.loading .spinner {
  display: block;
}

.btn-submit.loading .btn-text {
  display: none;
}

.form-disclaimer {
  margin-top: 12px;
  font-size: .78rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}

.form-disclaimer a {
  color: var(--primary);
  text-decoration: underline;
}

/* ── Multi-Step Form ───────────────────────────────────────── */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInUp .3s ease forwards;
}

/* Step progress indicator */
.step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}

.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.dot-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.dot-label {
  font-size: .73rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  transition: var(--transition);
}

.step-dot.active .dot-num {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(26, 86, 219, .35);
}

.step-dot.active .dot-label {
  color: var(--primary);
}

.step-dot.done .dot-num {
  background: var(--success);
  color: #fff;
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 12px;
  margin-bottom: 22px;
  transition: var(--transition);
  position: relative;
}

.step-line.done {
  background: var(--success);
}

/* Service selection cards */
.service-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.service-select-card {
  position: relative;
  cursor: pointer;
}

.service-select-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.ssc-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: var(--transition);
  position: relative;
  text-align: center;
  user-select: none;
}

.ssc-icon {
  font-size: 2rem;
}

.ssc-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
}

.ssc-check {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
}

/* Hover */
.service-select-card:hover .ssc-inner {
  border-color: rgba(26, 86, 219, .4);
  background: rgba(26, 86, 219, .04);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Checked */
.service-select-card input:checked+.ssc-inner {
  border-color: var(--primary);
  background: rgba(26, 86, 219, .06);
  box-shadow: 0 0 0 4px rgba(26, 86, 219, .08);
}

.service-select-card input:checked+.ssc-inner .ssc-check {
  opacity: 1;
  transform: scale(1);
}

.service-select-card input:checked+.ssc-inner .ssc-name {
  color: var(--primary);
}

/* Amount field groups – animated appearance */
.amount-field-group {
  animation: fadeInUp .3s ease forwards;
}

.amount-field-group+.amount-field-group {
  margin-top: 4px;
}

/* Step 2 actions row */
.step2-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}

.btn-back {
  padding: 14px 18px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-back:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(26, 86, 219, .04);
}

/* Submit butonu Geri butonu ile aynı hizada */
.step2-actions .btn-submit {
  margin-top: 0;
}



/* ── Alert (Başarı/Hata) ───────────────────────────────────── */
.alert {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 500;
  margin-top: 16px;
  border: 1px solid transparent;
  align-items: flex-start;
  gap: 12px;
}

.alert.show {
  display: flex;
}

.alert-success {
  background: #f0fdf4;
  color: #065f46;
  border-color: #a7f3d0;
}

.alert-success .alert-icon::before {
  content: '✅';
}

.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fca5a5;
}

.alert-error .alert-icon::before {
  content: '❌';
}

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 0 24px;
  position: relative;
}

.stat-item+.stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, .25);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: .85rem;
  color: rgba(255, 255, 255, .75);
  margin-top: 4px;
}

/* ── Hizmetler ─────────────────────────────────────────────── */
.services-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(26, 86, 219, .08);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  cursor: default;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: rgba(26, 86, 219, .2);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 12px;
  transition: var(--transition);
}

.service-link:hover {
  gap: 8px;
}

/* ── Nasıl Çalışır ─────────────────────────────────────────── */
.how-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f4ff, #e8f4fd);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(33.33% + 12px);
  right: calc(33.33% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(26, 86, 219, .3);
  position: relative;
  z-index: 1;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: .87rem;
  color: var(--text-muted);
}

/* ── Partnerler ────────────────────────────────────────────── */
.partners-section {
  padding: 80px 0;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}

.partner-logo {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.partner-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(50%);
  transition: var(--transition);
}

.partner-logo:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: rgba(26, 86, 219, .25);
}

.partner-logo:hover img {
  filter: grayscale(0%);
}

/* ── Reklam Bölümü ─────────────────────────────────────────── */
.ads-section {
  padding: 60px 0;
  background: #f8faff;
}

.ads-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.ad-banner {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius);
  padding: 40px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.ad-banner::before {
  content: '💡';
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 80px;
  opacity: .15;
}

.ad-banner-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.ad-banner-content p {
  font-size: .9rem;
  opacity: .85;
  max-width: 360px;
}

.btn-ad {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--primary);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  transition: var(--transition);
  white-space: nowrap;
  margin-top: 16px;
}

.btn-ad:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
}

.adsense-placeholder {
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  color: var(--text-light);
  font-size: .85rem;
  gap: 10px;
}

.adsense-placeholder .ads-icon {
  font-size: 2rem;
}

/* ── İş Birliği ────────────────────────────────────────────── */
.collaboration-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--text) 0%, #1e3a5f 100%);
  color: #fff;
  text-align: center;
}

.collaboration-section .section-tag {
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .9);
}

.collaboration-section .section-title {
  color: #fff;
}

.collaboration-section .section-desc {
  color: rgba(255, 255, 255, .7);
}

.collab-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.collab-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.collab-card:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateY(-3px);
}

.collab-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.collab-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.collab-card p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
}

.btn-collab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(26, 86, 219, .35);
}

.btn-collab:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(26, 86, 219, .45);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: #0a0f1e;
  color: rgba(255, 255, 255, .7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand .navbar-logo {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.footer-brand .navbar-logo span {
  color: rgba(255, 255, 255, .7);
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: .87rem;
  color: rgba(255, 255, 255, .55);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, .35);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, .7);
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .6;
  }
}

/* ── Earngo.co Reklam Kartı ────────────────────────────────── */
.earngo-ad-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #0f2027, #203a43, #2c5364);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-decoration: none;
  color: #fff;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, .1);
  position: relative;
  overflow: hidden;
}

.earngo-ad-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, .08), transparent);
  pointer-events: none;
}

.earngo-ad-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
  border-color: rgba(255, 215, 0, .3);
}

.earngo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .75);
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: .04em;
  width: fit-content;
}

.earngo-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.earngo-logo span {
  color: #fbbf24;
}

.earngo-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.earngo-desc {
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
  margin-bottom: 14px;
}

.earngo-features {
  list-style: none;
  margin-bottom: 20px;
}

.earngo-features li {
  font-size: .82rem;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 5px;
}

.earngo-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #111;
  font-weight: 700;
  font-size: .88rem;
  padding: 10px 20px;
  border-radius: 50px;
  transition: var(--transition);
  width: fit-content;
  box-shadow: 0 4px 14px rgba(251, 191, 36, .35);
}

.earngo-ad-card:hover .earngo-cta {
  box-shadow: 0 8px 24px rgba(251, 191, 36, .55);
  transform: scale(1.03);
}

/* ── Partner Text Logoları ─────────────────────────────────── */
.partner-text {
  font-size: .92rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: -.01em;
}

.animate-fade-up {
  animation: fadeInUp .6s ease forwards;
}


/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-item+.stat-item::before {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .navbar-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 16px;
    box-shadow: var(--shadow);
  }

  .navbar {
    position: relative;
  }

  .hamburger {
    display: block;
  }

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

  .hero {
    padding: 40px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 28px 22px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .ads-grid {
    grid-template-columns: 1fr;
  }

  .collab-cards {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .partners-logos {
    gap: 10px;
  }

  .collab-cards {
    grid-template-columns: 1fr;
  }
}