/* =============================
   CSS VARIABLES & RESET
   ============================= */
:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --bg-widget: #111111;
  --border: #1e1e1e;
  --border-hover: #2a2a2a;
  --accent: #00E676;
  --accent-dim: rgba(0, 230, 118, 0.12);
  --text: #ffffff;
  --text-muted: #6b6b6b;
  --text-sub: #4a4a4a;
  --hot: #00E676;
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* =============================
   KAMPANYA BAR
   ============================= */
.campaign-bar {
  width: 100%;
  height: 44px;
  background: linear-gradient(90deg, #00C853, #00E676, #00C853, #00E676, #009624);
  background-size: 200% 100%;
  animation: barBgShift 8s ease-in-out infinite;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

@keyframes barBgShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.campaign-bar-track {
  display: flex;
  white-space: nowrap;
  animation: campaignScroll 30s linear infinite;
}

.campaign-bar-text {
  display: inline-flex;
  align-items: center;
  padding: 0 40px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: #002d14;
  letter-spacing: 2px;
  text-transform: uppercase;
  height: 44px;
  text-shadow: 0 0 8px rgba(0, 230, 118, 0.15);
}

@keyframes campaignScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================
   MOBİL MENÜ
   ============================= */
.mobile-menu {
  display: none;
  position: fixed;
  top: 44px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 32px 24px;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}

.mobile-menu-links li a {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-links li a:hover,
.mobile-menu-links li a:active {
  color: var(--accent);
}

.mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  text-align: center;
}

.mobile-menu-btn:active {
  transform: scale(0.97);
  opacity: 0.8;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* =============================
   HERO
   ============================= */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  padding: 80px 40px 90px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.18);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 22px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-accent {
  background: linear-gradient(135deg, #00E676 0%, #00C853 40%, #69F0AE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  filter: drop-shadow(0 0 24px rgba(0, 230, 118, 0.3));
  animation: accentGlow 3s ease-in-out infinite;
}

@keyframes accentGlow {
  0%, 100% { filter: drop-shadow(0 0 24px rgba(0, 230, 118, 0.3)); }
  50% { filter: drop-shadow(0 0 48px rgba(0, 230, 118, 0.5)); }
}

.hero-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 auto 34px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #e8e8e8;
  transform: translateY(-1px);
}

.btn-arrow {
  transition: transform 0.2s;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-hover);
}

/* Tam Sayfa Animasyonlu Arka Plan - 3D Premium */
.page-bg-anim {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  perspective: 1200px;
  width: 100vw;
  height: 100vh;
}

.page-bg-icon {
  position: absolute;
  width: 56px;
  height: 56px;
  opacity: 0.15;
  color: var(--accent);
  filter: drop-shadow(0 0 20px currentColor) blur(0.3px);
  transform-style: preserve-3d;
  will-change: transform;
}

.page-bg-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.15));
  transition: filter 0.3s ease;
}

@keyframes hero3dFloat {
  0% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1);
    opacity: 0.15;
    filter: drop-shadow(0 0 20px currentColor) blur(0.3px);
  }
  10% {
    opacity: 0.25;
  }
  20% {
    transform: translate3d(12px, -20px, 30px) rotateX(8deg) rotateY(-12deg) rotateZ(15deg) scale(1.1);
    opacity: 0.35;
    filter: drop-shadow(0 0 40px currentColor) blur(0px);
  }
  35% {
    transform: translate3d(-8px, -10px, 15px) rotateX(-5deg) rotateY(8deg) rotateZ(-10deg) scale(0.95);
    opacity: 0.2;
  }
  50% {
    transform: translate3d(18px, -30px, 50px) rotateX(12deg) rotateY(-18deg) rotateZ(25deg) scale(1.2);
    opacity: 0.4;
    filter: drop-shadow(0 0 55px currentColor) blur(0px);
  }
  65% {
    transform: translate3d(-5px, -15px, 20px) rotateX(-8deg) rotateY(5deg) rotateZ(-5deg) scale(1.05);
    opacity: 0.25;
  }
  80% {
    transform: translate3d(10px, -25px, 40px) rotateX(6deg) rotateY(-10deg) rotateZ(20deg) scale(1.15);
    opacity: 0.35;
    filter: drop-shadow(0 0 45px currentColor) blur(0px);
  }
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1);
    opacity: 0.15;
    filter: drop-shadow(0 0 20px currentColor) blur(0.3px);
  }
}

/* INSTAGRAM - Pembe (#E4405F) */
.page-bg-icon-1 {
  top: 6%;
  left: 3%;
  width: 48px;
  height: 48px;
  animation: hero3dFloat 18s ease-in-out infinite;
  animation-delay: 0s;
  color: #E4405F;
  z-index: 1;
}

.page-bg-icon-2 {
  top: 40%;
  right: 2%;
  width: 44px;
  height: 44px;
  animation: hero3dFloat 22s ease-in-out infinite;
  animation-delay: 2s;
  color: #E4405F;
  z-index: 2;
}

.page-bg-icon-3 {
  bottom: 10%;
  left: 6%;
  width: 50px;
  height: 50px;
  animation: hero3dFloat 16s ease-in-out infinite;
  animation-delay: 4s;
  color: #E4405F;
  z-index: 1;
}

.page-bg-icon-4 {
  top: 25%;
  left: 30%;
  width: 42px;
  height: 42px;
  animation: hero3dFloat 20s ease-in-out infinite;
  animation-delay: 1s;
  color: #E4405F;
  z-index: 3;
}

/* TIKTOK - Siyah (#000000) cyan parıltılı */
.page-bg-icon-5 {
  top: 15%;
  left: 50%;
  width: 46px;
  height: 46px;
  animation: hero3dFloat 24s ease-in-out infinite;
  animation-delay: 3s;
  color: #000000;
  z-index: 1;
  filter: drop-shadow(0 0 20px #00f2ea) blur(0.3px);
}

.page-bg-icon-6 {
  bottom: 30%;
  right: 6%;
  width: 52px;
  height: 52px;
  animation: hero3dFloat 19s ease-in-out infinite;
  animation-delay: 5s;
  color: #000000;
  z-index: 2;
  filter: drop-shadow(0 0 20px #ff0050) blur(0.3px);
}

.page-bg-icon-7 {
  top: 60%;
  left: 4%;
  width: 40px;
  height: 40px;
  animation: hero3dFloat 21s ease-in-out infinite;
  animation-delay: 1.5s;
  color: #000000;
  z-index: 1;
  filter: drop-shadow(0 0 20px #00f2ea) blur(0.3px);
}

.page-bg-icon-8 {
  top: 5%;
  right: 25%;
  width: 38px;
  height: 38px;
  animation: hero3dFloat 17s ease-in-out infinite;
  animation-delay: 3.5s;
  color: #000000;
  z-index: 2;
  filter: drop-shadow(0 0 20px #ff0050) blur(0.3px);
}

/* X / TWITTER - Beyaz (#ffffff) */
.page-bg-icon-9 {
  top: 30%;
  left: 10%;
  width: 48px;
  height: 48px;
  animation: hero3dFloat 23s ease-in-out infinite;
  animation-delay: 0.5s;
  color: #ffffff;
  z-index: 3;
}

.page-bg-icon-10 {
  top: 70%;
  right: 10%;
  width: 46px;
  height: 46px;
  animation: hero3dFloat 15s ease-in-out infinite;
  animation-delay: 2.5s;
  color: #ffffff;
  z-index: 1;
}

.page-bg-icon-11 {
  bottom: 15%;
  left: 35%;
  width: 42px;
  height: 42px;
  animation: hero3dFloat 20s ease-in-out infinite;
  animation-delay: 4s;
  color: #ffffff;
  z-index: 2;
}

.page-bg-icon-12 {
  top: 55%;
  left: 55%;
  width: 44px;
  height: 44px;
  animation: hero3dFloat 18s ease-in-out infinite;
  animation-delay: 1s;
  color: #ffffff;
  z-index: 1;
}

/* GOOGLE ADS - Mavi (#4285F4) */
.page-bg-icon-13 {
  top: 10%;
  right: 5%;
  width: 54px;
  height: 54px;
  animation: hero3dFloat 21s ease-in-out infinite;
  animation-delay: 3s;
  color: #4285F4;
  z-index: 2;
}

.page-bg-icon-14 {
  bottom: 5%;
  right: 30%;
  width: 48px;
  height: 48px;
  animation: hero3dFloat 16s ease-in-out infinite;
  animation-delay: 5.5s;
  color: #4285F4;
  z-index: 1;
}

.page-bg-icon-15 {
  top: 45%;
  left: 45%;
  width: 50px;
  height: 50px;
  animation: hero3dFloat 19s ease-in-out infinite;
  animation-delay: 2s;
  color: #4285F4;
  z-index: 3;
}

.page-bg-icon-16 {
  bottom: 40%;
  left: 20%;
  width: 40px;
  height: 40px;
  animation: hero3dFloat 22s ease-in-out infinite;
  animation-delay: 4.5s;
  color: #4285F4;
  z-index: 1;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Arka plan parıltı katmanı */
.page-bg-anim::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(0, 230, 118, 0.02) 0%, transparent 70%);
  animation: heroGlowPulse 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@media (hover: hover) {
  .page-bg-icon:hover {
    animation-play-state: paused !important;
    opacity: 0.8 !important;
    filter: drop-shadow(0 0 80px currentColor) brightness(1.5) !important;
    transform: scale(1.8) !important;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
}

.hero-widget {
  width: 100%;
  max-width: 480px;
  background: var(--bg-widget);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.widget-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.widget-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.widget-count {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
}

.widget-online {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--accent);
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.18);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.online-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

.widget-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.widget-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #161616;
  border: 1px solid #1e1e1e;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.widget-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-sm);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.widget-item:hover {
  background: #1c1c1c;
  border-color: #2a2a2a;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.widget-item:hover .widget-item-name {
  color: var(--accent);
}

.widget-item-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon {
  background: rgba(0, 230, 118, 0.12);
  color: var(--accent);
  transition: all 0.25s ease;
}

.widget-item:hover .check-icon {
  background: rgba(0, 230, 118, 0.25);
  box-shadow: 0 0 12px rgba(0, 230, 118, 0.2);
  transform: scale(1.05);
}

.widget-item-info {
  flex: 1;
  min-width: 0;
}

.widget-item-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.widget-item-sub {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

.rank {
  color: var(--accent);
  font-weight: 600;
  margin-left: 4px;
  transition: opacity 0.25s ease;
}

.widget-item:hover .rank {
  opacity: 0.8;
}

.widget-item-price {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

/* =============================
   SERVICES SECTION
   ============================= */
.services-section {
  padding: 60px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}

.services-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 5px;
}

.services-sub {
  font-size: 14px;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* =============================
   SÜREÇ / PROSEDÜR (Timeline)
   ============================= */
.proc-wrap {
  padding: 0 0 8px;
}
.proc-header {
  margin-bottom: 36px;
}
.proc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.proc-eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.proc-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  margin: 0 0 8px;
}
.proc-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.proc-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.proc-timeline::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent) 0%, rgba(0,230,118,0.15) 100%);
}

.proc-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 12px;
  border: 0.5px solid var(--border);
  background: var(--bg-card);
  margin-bottom: 12px;
  position: relative;
  transition: border-color 0.2s;
  cursor: default;
}
.proc-step:hover {
  border-color: var(--border-hover);
}
.proc-step:last-child {
  margin-bottom: 0;
}

.proc-num-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}
.proc-num {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,230,118,0.08);
  border: 0.5px solid rgba(0,230,118,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.proc-body {
  flex: 1;
  min-width: 0;
  padding-top: 8px;
}
.proc-step-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}
.proc-step-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.3;
}
.proc-step-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 14px;
}
.proc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.proc-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  padding: 3px 10px;
  border-radius: 20px;
}
.proc-tag i {
  font-size: 12px;
  color: var(--accent);
}

.proc-right {
  flex-shrink: 0;
  width: 120px;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.proc-duration {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-align: right;
  white-space: nowrap;
}
.proc-duration strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}
.proc-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(0,230,118,0.08);
  border: 0.5px solid rgba(0,230,118,0.2);
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

.proc-cta {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.proc-cta-text {
  font-size: 13px;
  color: var(--text-muted);
}
.proc-cta-text strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}
.proc-cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  border: none;
  padding: 9px 18px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.proc-cta-btn:hover { opacity: 0.88; color: var(--bg); }

@media (max-width: 540px) {
  .proc-right { display: none; }
  .proc-timeline::before { left: 19px; }
  .proc-num { width: 28px; height: 28px; font-size: 12px; }
  .proc-step { padding: 16px; gap: 14px; }
  .proc-cta { flex-direction: column; }
  .proc-cta-btn { width: 100%; justify-content: center; }
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.25s;
  cursor: pointer;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.hot-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 230, 118, 0.12);
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(0, 230, 118, 0.2);
}

.card-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 6px;
}

.card-meta {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* =============================
   WHATSAPP YORUMLARI / BAŞARILARIMIZ
   ============================= */
.whatsapp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.wa-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.wa-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 230, 118, 0.06);
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
}

.wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.wa-user {
  flex: 1;
  min-width: 0;
}

.wa-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.wa-status {
  font-size: 10px;
  color: var(--accent);
  margin-top: 1px;
}

.wa-time {
  font-size: 10px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.wa-bubble-wrap {
  padding: 12px 16px 16px;
  position: relative;
}

.wa-bubble {
  background: rgba(0, 230, 118, 0.06);
  border: 1px solid rgba(0, 230, 118, 0.1);
  border-radius: 4px 16px 16px 16px;
  padding: 12px 14px;
  position: relative;
  max-width: 100%;
}

.wa-bubble p {
  font-size: 12.5px;
  color: var(--text);
  line-height: 1.65;
  font-family: var(--font-body);
}

.wa-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 6px;
  font-size: 10px;
  color: var(--text-muted);
}

.wa-double-check {
  display: inline-flex;
  align-items: center;
  opacity: 0.8;
}

.wa-double-check svg {
  display: block;
}

/* =============================
   WHATSAPP YORUM CTA
   ============================= */
.wa-cta {
  margin-top: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.wa-cta:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(0, 230, 118, 0.06);
}

.wa-cta-content {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
}

.wa-cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 230, 118, 0.08);
  border: 2px solid rgba(0, 230, 118, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.wa-cta:hover .wa-cta-icon {
  background: rgba(0, 230, 118, 0.15);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.15);
}

.wa-cta-content > div {
  flex: 1;
  min-width: 0;
}

.wa-cta-content h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.wa-cta-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.wa-cta-btn {
  flex-shrink: 0;
  white-space: nowrap;
  background: var(--accent) !important;
  color: var(--bg) !important;
  border: none !important;
  font-size: 13px !important;
  padding: 10px 20px !important;
}

.wa-cta-btn:hover {
  background: #00c853 !important;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .wa-cta-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .wa-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =============================
   REFERENCES / REFERANSLAR
   ============================= */
.references-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.reference-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.reference-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 230, 118, 0.08);
}

.reference-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.reference-card:hover .reference-logo {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.15);
}

.reference-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.reference-card:hover .reference-logo img {
  transform: scale(1.08);
}

.reference-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-top: 2px;
}

.reference-sector {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* =============================
   STATS SECTION
   ============================= */
.stats-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* =============================
   FOOTER
   ============================= */
.footer {
  border-top: 1px solid var(--border);
  padding: 36px 40px 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.2s;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-sep {
  color: var(--text-sub);
  font-size: 11px;
}

.footer .footer-bottom {
  margin-top: 6px;
}

.footer-bottom span {
  font-size: 11px;
  color: var(--text-sub);
  letter-spacing: 0.02em;
}

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 50px 24px 60px;
  }

  .hero-widget {
    flex: unset;
    width: 100%;
  }

  .hero-title {
    font-size: 38px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-section {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 24px 60px;
  }

  .services-section {
    padding: 40px 24px 60px;
  }

  .footer {
    padding: 32px 24px 24px;
  }
}

@media (max-width: 768px) {
  .campaign-bar {
    height: 34px;
  }

  .campaign-bar-text {
    font-size: 11px;
    padding: 0 24px;
    height: 34px;
  }

  .mobile-menu {
    top: 34px;
  }

  .hero {
    padding: 40px 20px 50px;
    gap: 32px;
  }

  .hero-title {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .hero-desc {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 15px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .whatsapp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .wa-card {
    border-radius: 14px;
  }

  .wa-header {
    padding: 10px 12px;
    gap: 8px;
  }

  .wa-avatar {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .wa-name {
    font-size: 11px;
  }

  .wa-status {
    font-size: 9px;
  }

  .wa-time {
    font-size: 9px;
  }

  .wa-bubble-wrap {
    padding: 8px 12px 12px;
  }

  .wa-bubble {
    padding: 10px 12px;
    border-radius: 4px 14px 14px 14px;
  }

  .wa-bubble p {
    font-size: 11.5px;
    line-height: 1.6;
  }

  .references-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .services-header {
    flex-direction: column;
    gap: 16px;
  }

  .services-title {
    font-size: 24px;
  }

  .services-section {
    padding: 30px 20px 50px;
  }

  .service-card {
    padding: 18px 16px;
  }

  .proc-header {
    margin-bottom: 24px;
  }

  .proc-title {
    font-size: 24px;
  }

  .proc-step {
    padding: 18px 16px;
    gap: 16px;
  }

  .proc-num {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .proc-step-title {
    font-size: 14px;
  }

  .proc-step-desc {
    font-size: 12.5px;
    margin-bottom: 10px;
  }

  .proc-tag {
    font-size: 10px;
    padding: 2px 8px;
  }

  .proc-right {
    width: 90px;
  }

  .proc-duration strong {
    font-size: 14px;
  }

  .proc-cta {
    padding: 18px 18px;
    flex-direction: column;
    text-align: center;
  }

  .proc-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 11px 18px;
  }

  .stats-section {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 20px 50px;
  }

  .stat-item {
    padding: 24px 20px;
  }

  .stat-number {
    font-size: 30px;
  }

  .footer {
    padding: 28px 20px 20px;
  }

  .page-bg-icon {
    opacity: 0.03;
  }

  .page-bg-icon-1,
  .page-bg-icon-3,
  .page-bg-icon-5,
  .page-bg-icon-7 {
    display: none;
  }
}

@media (max-width: 480px) {
  .campaign-bar {
    height: 30px;
  }

  .campaign-bar-text {
    font-size: 10px;
    padding: 0 16px;
    height: 30px;
  }

  .mobile-menu {
    top: 30px;
  }

  .hero {
    padding: 28px 16px 40px;
    gap: 32px;
  }

  .hero-title {
    font-size: 28px;
    letter-spacing: -1px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 4px 10px;
  }

  .hero-desc {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    font-size: 13px;
    padding: 10px 18px;
  }

  .widget-header {
    flex-direction: column;
    gap: 10px;
  }

  .widget-count {
    font-size: 22px;
  }

  .widget-item {
    padding: 8px 10px;
    gap: 8px;
  }

  .widget-item-name {
    font-size: 9px;
  }

  .widget-item-sub {
    font-size: 8px;
  }

  .widget-item-price {
    font-size: 10px;
  }

  .services-title {
    font-size: 20px;
  }

  .services-sub {
    font-size: 13px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-grid {
    grid-template-columns: 1fr;
  }

  .references-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reference-card {
    padding: 18px 14px;
  }

  .reference-logo {
    width: 64px;
    height: 64px;
  }

  .reference-name {
    font-size: 12px;
  }

  .reference-sector {
    font-size: 10px;
  }

  .testimonial-card {
    padding: 14px;
  }

  .testimonial-stat-value {
    font-size: 14px;
  }

  .service-card {
    padding: 16px;
  }

  .card-title {
    font-size: 13px;
  }

  .card-meta {
    font-size: 11px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 10px;
  }

  .footer {
    padding: 24px 16px 18px;
  }

  .mobile-menu {
    padding: 24px 20px;
  }

  .mobile-menu-links li a {
    font-size: 20px;
    padding: 12px 0;
  }

  .page-bg-anim {
    display: none;
  }
}

/* iPhone notch safety */
@supports (padding-top: env(safe-area-inset-top)) {
  .campaign-bar {
    padding-top: env(safe-area-inset-top);
    height: calc(44px + env(safe-area-inset-top));
  }

  .mobile-menu {
    top: calc(44px + env(safe-area-inset-top));
    padding-bottom: env(safe-area-inset-bottom);
  }

  .hero {
    padding-top: calc(80px + env(safe-area-inset-top));
  }
}

@media (max-width: 768px) {
  @supports (padding-top: env(safe-area-inset-top)) {
    .hero {
      padding-top: calc(40px + env(safe-area-inset-top));
    }
  }
}
