/* ================================
   SOCIAFY — Ana Stil Dosyası
   Geliştirici: Proda Medya
   ================================ */

/* ================================
   1. CSS DEĞİŞKENLERİ
   ================================ */
:root {
  --violet:       #6D28D9;
  --violet-2:     #7C3AED;
  --violet-3:     #8B5CF6;
  --violet-bg:    #F0EBFE;
  --violet-faint: #F5F3FF;
  --rose:         #DB2777;
  --rose-2:       #EC4899;

  --ink:          #0D0A14;
  --ink-2:        #1A1033;
  --ink-3:        #080612;
  --bg:           #F4F2FA;
  --surface:      #FFFFFF;

  --text:         #3D3657;
  --text-2:       #7C7A8E;
  --text-3:       #B5B2C4;

  --mint:         #059669;
  --amber:        #D97706;

  --grad:         linear-gradient(135deg, #6D28D9 0%, #DB2777 100%);
  --grad-soft:    linear-gradient(135deg, #F5F3FF 0%, #FDF2F8 100%);
  --grad-dark:    linear-gradient(135deg, #1A1033 0%, #2D1B69 100%);

  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(109, 40, 217, 0.08);
  --shadow-lg:    0 16px 48px rgba(109, 40, 217, 0.14);
  --transition:   0.3s ease;
}

/* ================================
   2. RESET & BASE
   ================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

/* ================================
   3. TİPOGRAFİ
   ================================ */
h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p {
  font-weight: 400;
  color: var(--text-2);
}

/* ================================
   4. UTILITY
   ================================ */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--violet-2);
  background: var(--violet-faint);
  border: 1px solid #DDD6FE;
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-2);
  font-weight: 400;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.35);
  color: #fff;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--violet);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 100px;
  border: 2px solid var(--violet-3);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--violet-faint);
  border-color: var(--violet);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ================================
   5. NAVBAR
   ================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 58px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #EDE9FE;
  transition: box-shadow var(--transition);
  padding: 0;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(109, 40, 217, 0.10);
}

.navbar-brand img {
  height: 32px;
  width: auto;
}

.navbar-nav .nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 12px !important;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--violet);
  background: var(--violet-faint);
}

.navbar-nav .dropdown-menu {
  border: 1px solid #EDE9FE;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 200px;
}

.navbar-nav .dropdown-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  padding: 8px 14px;
  transition: background var(--transition), color var(--transition);
}

.navbar-nav .dropdown-item:hover {
  background: var(--violet-faint);
  color: var(--violet);
}

.navbar-nav .dropdown-divider {
  border-color: #EDE9FE;
  margin: 4px 8px;
}

.badge-soon {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--grad);
  color: #fff;
  padding: 2px 7px;
  border-radius: 100px;
  vertical-align: middle;
  margin-left: 4px;
}

.navbar-btn-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-login {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition);
}

.nav-login:hover {
  color: var(--violet);
}

.nav-start {
  font-size: 0.875rem;
  padding: 9px 20px;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
  color: var(--text);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ================================
   6. HERO
   ================================ */
#hero {
  background: var(--ink);
  min-height: 100vh;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.35;
}

.hero-blob-1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, #6D28D9 0%, transparent 70%);
  top: -120px;
  right: -80px;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #DB2777 0%, transparent 70%);
  bottom: -60px;
  left: -60px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--violet-3);
  background: rgba(109, 40, 217, 0.18);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 24px;
}

#hero h1 {
  color: #fff;
  margin-bottom: 20px;
}

#hero h1 em {
  font-style: normal;
}

.hero-desc {
  color: #A1A1AA;
  font-size: 1.075rem;
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

.hero-trust i {
  color: var(--mint);
  font-size: 0.875rem;
}

/* Hero panel mockup */
.hero-panel {
  background: rgba(26, 16, 51, 0.7);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 92, 246, 0.2);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
}

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

.panel-header-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.panel-header-date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.panel-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 8px;
  transition: background var(--transition);
}

.panel-row:last-of-type {
  margin-bottom: 0;
}

.panel-row:hover {
  background: rgba(255, 255, 255, 0.07);
}

.panel-row-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(109, 40, 217, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
  color: var(--violet-3);
}

.panel-row-text {
  flex: 1;
  min-width: 0;
}

.panel-row-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.panel-row-meta {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
}

.panel-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.panel-badge.approved  { background: rgba(5, 150, 105, 0.18); color: #34D399; }
.panel-badge.pending   { background: rgba(217, 119, 6, 0.18);  color: #FCD34D; }
.panel-badge.preparing { background: rgba(109, 40, 217, 0.25); color: var(--violet-3); }

.panel-stats {
  display: flex;
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
}

.panel-stat {
  flex: 1;
  text-align: center;
}

.panel-stat + .panel-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.panel-stat-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  display: block;
}

.panel-stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ================================
   7. TRUST BAR
   ================================ */
#trust-bar {
  background: var(--violet-faint);
  border-top: 1px solid #EDE9FE;
  border-bottom: 1px solid #EDE9FE;
  padding: 18px 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--violet);
}

.trust-item i {
  font-size: 1rem;
  color: var(--violet-2);
}

/* ================================
   8. NASIL ÇALIŞIR
   ================================ */
#nasil-calisir {
  padding: 100px 0;
  background: var(--surface);
}

.steps-wrapper {
  position: relative;
}

.step-connector {
  position: absolute;
  top: 36px;
  left: calc(16.66% + 36px);
  right: calc(16.66% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--violet-3) 0%, var(--rose-2) 100%);
  opacity: 0.3;
  pointer-events: none;
}

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

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.step-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--grad-soft);
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--violet);
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text);
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ================================
   9. KİM İÇİN
   ================================ */
#kim-icin {
  padding: 100px 0;
  background: #FAF9FF;
}

.target-card {
  background: var(--surface);
  border: 1px solid #EDE9FE;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.target-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.target-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--violet-3);
}

.target-card:hover::before {
  transform: scaleX(1);
}

.target-emoji {
  font-size: 2.25rem;
  margin-bottom: 16px;
  display: block;
}

.target-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.target-card p {
  font-size: 0.9375rem;
  margin-bottom: 18px;
}

.target-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--violet);
  background: var(--violet-faint);
  border: 1px solid #DDD6FE;
  border-radius: 100px;
  padding: 4px 12px;
}

/* ================================
   10. PAKETLER
   ================================ */
#paketler {
  padding: 100px 0;
  background: var(--surface);
}

.pricing-card {
  background: var(--surface);
  border: 1px solid #EDE9FE;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--violet-3);
  border-width: 2px;
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-2);
  margin-bottom: 20px;
  min-height: 38px;
}

.pricing-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-2);
}

.pricing-trial {
  font-size: 0.8rem;
  color: var(--mint);
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pricing-divider {
  border: none;
  border-top: 1px solid #EDE9FE;
  margin: 20px 0;
}

.pricing-features {
  flex: 1;
  margin-bottom: 28px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  min-height: 36px;
  padding: 4px 0;
  border-bottom: 1px solid #F5F3FF;
  color: var(--text);
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-feature.disabled {
  color: var(--text-2);
}

.pricing-feature i.fa-check {
  color: var(--mint);
  flex-shrink: 0;
  font-size: 0.8rem;
}

.pricing-feature i.fa-xmark {
  color: #9CA3AF;
  flex-shrink: 0;
  font-size: 0.8rem;
  opacity: 0.3;
}

/* Grup başlığı — özellik listesi içinde */
.pf-group {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--violet-3);
  padding: 12px 0 4px;
  list-style: none;
  border-bottom: none;
  min-height: unset;
}

.pf-group:first-child {
  padding-top: 0;
}

/* +Ücretli satırı */
.pf-paid-row {
  align-items: center;
}

.pricing-paid-badge {
  background: #FEF3C7;
  color: #92400E;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
}

/* Reklam notu */
.ads-note {
  border: 2px dashed #DDD6FE;
  border-radius: var(--radius);
  padding: 22px 28px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--violet-faint);
}

.ads-note-icon {
  font-size: 1.75rem;
  color: var(--violet);
  flex-shrink: 0;
}

.ads-note-body {
  flex: 1;
  min-width: 200px;
}

.ads-note-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 2px;
}

.ads-note-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  margin: 0;
}

/* ================================
   10b. PAKET KARŞILAŞTIRMA TABLOSU
   ================================ */

.pc-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid #EDE9FE;
  margin-bottom: 40px;
}

.pc-grid {
  display: grid;
  grid-template-columns: minmax(175px, 2.5fr) 1fr 1fr 1fr;
  min-width: 620px;
}

/* Başlık satırı */
.pc-header-spacer {
  background: var(--surface);
  border-bottom: 1px solid #EDE9FE;
}

.pc-pkg-header {
  padding: 28px 20px 24px;
  background: var(--surface);
  border-left: 1px solid #EDE9FE;
  border-bottom: 1px solid #EDE9FE;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pc-pkg-header.pc-featured {
  background: #F8F5FF;
  border-left: 2px solid var(--violet-3);
  border-right: 2px solid var(--violet-3);
  border-bottom: 2px solid var(--violet-3);
}

.pc-pkg-header.pc-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
}

.pc-pkg-header .pricing-badge {
  position: static;
  transform: none;
  display: inline-block;
  margin-bottom: 10px;
}

.pc-pkg-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 4px;
}

.pc-pkg-desc {
  font-size: 0.78rem;
  color: var(--text-2);
  margin-bottom: 14px;
  min-height: 44px;
}

.pc-pkg-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 2px;
}

.pc-pkg-price span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-2);
  margin-top: 3px;
}

.pc-pkg-trial {
  font-size: 0.73rem;
  color: var(--mint);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Grup başlık satırları */
.pc-group {
  background: #F5F3FF;
  border-top: 1px solid #EDE9FE;
  border-bottom: 1px solid #EDE9FE;
  padding: 8px 18px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet);
  display: flex;
  align-items: center;
}

.pc-group-fill {
  background: #F5F3FF;
  border-top: 1px solid #EDE9FE;
  border-bottom: 1px solid #EDE9FE;
  border-left: 1px solid #EDE9FE;
}

.pc-group-fill.pc-feat-bg {
  background: #EDE9FE;
  border-left: 2px solid var(--violet-3);
  border-right: 2px solid var(--violet-3);
}

/* Özellik satırları */
.pc-label {
  padding: 11px 18px;
  font-size: 0.875rem;
  color: var(--text);
  border-bottom: 1px solid #EDE9FE;
  display: flex;
  align-items: center;
  background: var(--surface);
}

.pc-val {
  border-bottom: 1px solid #EDE9FE;
  border-left: 1px solid #EDE9FE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  background: var(--surface);
  padding: 11px 4px;
}

.pc-val.pc-feat-bg {
  background: #F8F5FF;
  border-left: 2px solid var(--violet-3);
  border-right: 2px solid var(--violet-3);
}

.pc-check { color: var(--mint); }

.pc-x {
  color: #D1D5DB;
  font-weight: 400;
  font-size: 1.05rem;
}

.pc-label.pc-last,
.pc-val.pc-last {
  border-bottom: none;
}

.pc-val.pc-feat-bg.pc-last {
  border-bottom: 2px solid var(--violet-3);
}

.pc-paid-badge {
  background: #FEF3C7;
  color: #92400E;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Varyasyon bölümü */
.pc-variations {
  background: #FAF9FF;
  border: 1px solid #EDE9FE;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}

.pc-var-header {
  margin-bottom: 24px;
}

.pc-var-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 6px;
}

.pc-var-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  margin: 0;
}

.pc-var-row {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin: 24px 0 20px;
}

.pc-var-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 10px;
}

.pc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pc-pill {
  background: var(--surface);
  border: 1.5px solid #DDD6FE;
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  line-height: 1.4;
}

.pc-pill:hover {
  border-color: var(--violet-3);
  color: var(--violet);
}

.pc-pill.active {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  font-weight: 600;
}

.pc-var-note {
  font-size: 0.8rem;
  color: var(--text-3);
  margin: 0;
}

/* ================================
   11. PORTFÖY
   ================================ */
#portfolio {
  padding: 100px 0 0;
  background: #FAF9FF;
  overflow: hidden;
}

#portfolio .container {
  padding-bottom: 48px;
}

.portfolio-marquee {
  padding-bottom: 60px;
}

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

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid #EDE9FE;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.portfolio-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.portfolio-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--grad-soft);
}

.portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img-wrap img {
  transform: scale(1.05);
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--grad-soft);
  color: var(--text-2);
}

.portfolio-placeholder-emoji {
  font-size: 2.5rem;
}

.portfolio-placeholder-label {
  font-size: 0.85rem;
  font-weight: 500;
}

.portfolio-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(13, 10, 20, 0.65);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 4px 10px;
}

.portfolio-body {
  padding: 16px 18px;
}

.portfolio-brand {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 3px;
}

.portfolio-note {
  font-size: 0.8rem;
  color: var(--text-2);
  margin: 0;
}

/* ================================
   MARQUEE ANİMASYON
   ================================ */
.marquee-track {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

.marquee-inner.scroll-rtl {
  animation: marquee-rtl 55s linear infinite;
}

.marquee-inner.scroll-ltr {
  animation: marquee-ltr 28s linear infinite;
}

.marquee-track:hover .marquee-inner {
  animation-play-state: paused;
}

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

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

/* Portfolio marquee — kart yok, stagger dizilim */
.portfolio-marquee .marquee-inner {
  align-items: center;
  gap: 14px;
  padding: 24px 0 32px;
}

.portfolio-marquee .portfolio-card {
  width: 230px;
  flex-shrink: 0;
  height: auto;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

/* Reveal animasyonunu marquee'de devre dışı bırak */
.portfolio-marquee .portfolio-card,
.portfolio-marquee .portfolio-card.reveal,
.portfolio-marquee .portfolio-card.reveal.visible {
  opacity: 1 !important;
  transition: transform 0.3s ease;
}

/* Stagger: tek indexli 0px, çift indexli 15px yukarı */
.portfolio-marquee .portfolio-card:nth-child(odd),
.portfolio-marquee .portfolio-card:nth-child(odd).reveal.visible {
  transform: translateY(0px) !important;
}

.portfolio-marquee .portfolio-card:nth-child(even),
.portfolio-marquee .portfolio-card:nth-child(even).reveal.visible {
  transform: translateY(-15px) !important;
}

/* Hover — stagger üzerine hafif lift */
.portfolio-marquee .portfolio-card:nth-child(odd):hover  { transform: translateY(-5px) !important; }
.portfolio-marquee .portfolio-card:nth-child(even):hover { transform: translateY(-20px) !important; }

/* Body gizle — sadece görsel */
.portfolio-marquee .portfolio-body {
  display: none;
}

/* Görsel: kırpmasız, kendi oranında */
.portfolio-marquee .portfolio-img-wrap {
  height: auto;
  aspect-ratio: unset;
  border-radius: 16px;
  overflow: hidden;
}

.portfolio-marquee .portfolio-img-wrap img {
  width: 230px;
  height: auto;
  object-fit: unset;
}

.portfolio-marquee .portfolio-placeholder {
  width: 230px;
  height: 230px;
}

/* Logo marquee satır */
.logo-marquee .marquee-inner {
  align-items: center;
  gap: 56px;
}

/* ================================
   12. PRODA GÜVENCE
   ================================ */
#proda {
  padding: 80px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

#proda .hero-blob-1 {
  opacity: 0.2;
  width: 400px;
  height: 400px;
  top: -80px;
  right: -40px;
}

#proda .hero-blob-2 {
  opacity: 0.15;
  width: 300px;
  height: 300px;
  bottom: -40px;
  left: -30px;
}

.proda-eyebrow {
  color: var(--violet-3);
  background: rgba(109, 40, 217, 0.2);
  border-color: rgba(139, 92, 246, 0.3);
}

.proda-title {
  color: #fff;
}

.proda-title em {
  font-style: normal;
}

.counter-grid {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.counter-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.counter-item:last-child {
  border-right: none;
}

.counter-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.1;
  margin-bottom: 6px;
}

.counter-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.proda-footnote {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
  text-align: center;
}

/* ================================
   13. SSS
   ================================ */
#sss {
  padding: 100px 0;
  background: var(--surface);
}

.accordion-item {
  border: 1px solid #EDE9FE;
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-button {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  padding: 18px 22px;
  border-radius: var(--radius) !important;
}

.accordion-button:not(.collapsed) {
  color: var(--violet);
  background: var(--violet-faint);
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%236D28D9' fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-body {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.65;
  padding: 0 22px 18px;
  background: var(--surface);
}

/* ================================
   14. CTA
   ================================ */
#iletisim {
  padding: 110px 0;
  background: var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#iletisim .hero-blob-1 {
  opacity: 0.2;
}

#iletisim .hero-blob-2 {
  opacity: 0.15;
}

.cta-eyebrow {
  color: var(--violet-3);
  background: rgba(109, 40, 217, 0.2);
  border-color: rgba(139, 92, 246, 0.3);
}

.cta-title {
  color: #fff;
}

.cta-title em {
  font-style: normal;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  margin: 0 auto 36px;
  font-size: 1.0625rem;
}

.btn-primary.btn-cta {
  padding: 18px 44px;
  font-size: 1.0625rem;
  border-radius: 100px;
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.cta-trust-item i {
  color: var(--mint);
}

/* ================================
   15. FOOTER
   ================================ */
footer {
  background: var(--ink-3);
  padding: 72px 0 36px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand img {
  height: 30px;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 270px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}

.footer-social-link:hover {
  background: var(--violet);
  color: #fff;
}

.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--violet-3);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  transition: color var(--transition);
}

.footer-contact-item:hover {
  color: var(--violet-3);
}

.footer-contact-item i {
  width: 16px;
  color: var(--violet-3);
  flex-shrink: 0;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 40px 0 28px;
}

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

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--violet-3);
}

.footer-proda {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-proda a {
  color: var(--violet-3);
  transition: color var(--transition);
}

.footer-proda a:hover {
  color: var(--violet-2);
}

/* ================================
   REFERANS LOGOLAR
   ================================ */
#referanslar {
  padding: 36px 0 32px;
  background: var(--surface);
  border-bottom: 1px solid #EDE9FE;
}

.referans-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  text-align: center;
  margin-bottom: 22px;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-item img {
  height: 38px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.55);
  transition: filter 0.35s ease;
  display: block;
}

.logo-item img:hover {
  filter: grayscale(0%) brightness(1);
}

/* ================================
   16. RESPONSIVE
   ================================ */
@media (max-width: 991.98px) {
  #hero {
    padding: 90px 0 70px;
    min-height: auto;
  }

  .hero-panel {
    margin-top: 48px;
  }

  .step-connector {
    display: none;
  }

  .steps-wrapper .col-md-4 {
    margin-bottom: 32px;
  }

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

  .counter-item {
    min-width: 140px;
  }

  .ads-note {
    flex-direction: column;
    text-align: center;
  }

  .pc-variations {
    padding: 28px 24px;
  }

  .pc-var-row {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 767.98px) {
  #hero {
    padding: 72px 0 60px;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .trust-items {
    gap: 18px;
  }

  .trust-item {
    font-size: 0.8125rem;
  }

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

  .counter-grid {
    gap: 0;
  }

  .counter-item {
    min-width: 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .counter-item:nth-child(2n) {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .counter-item:last-child {
    border-bottom: none;
  }

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

  .footer-legal {
    justify-content: center;
  }

  .cta-trust {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 375px) {
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.625rem; }

  .btn-primary, .btn-ghost, .btn-outline {
    font-size: 0.875rem;
    padding: 11px 20px;
  }
}
