/* =============================================
   LUFY DIGITAL — Design System
   Inspired by: enhencer.com design language
   ============================================= */

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

:root {
  /* Lufy Digital — Navy Blue color palette */
  --primary: #1e3a5f;
  --primary-hover: #163050;
  --primary-light: rgba(30, 58, 95, 0.08);
  --primary-mid: rgba(30, 58, 95, 0.15);

  --dark: #0d1e33;
  --dark-2: #1e3a5f;
  --dark-3: #2a4f82;

  --bg-white: #ffffff;
  --bg-light: #f4f7fb;
  --bg-mid: #e8edf5;

  --text-main: #0d1e33;
  --text-muted: #4a5e78;
  --text-light: #7a92ab;

  --border: #d8e2ef;
  --border-light: #eaf0f8;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #eef3fb 0%, #e2eaf8 50%, #f4f7fb 100%);
  --gradient-green: linear-gradient(135deg, #1e3a5f 0%, #2a4f82 100%);
  --gradient-dark: linear-gradient(135deg, #0d1e33 0%, #1e3a5f 100%);
  --gradient-card: linear-gradient(135deg, #ffffff 0%, #f4f7fb 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(13, 30, 51, 0.06);
  --shadow-md: 0 4px 12px rgba(13, 30, 51, 0.1);
  --shadow-lg: 0 8px 30px rgba(13, 30, 51, 0.12);
  --shadow-xl: 0 20px 60px rgba(13, 30, 51, 0.15);
  --shadow-green: 0 8px 25px rgba(30, 58, 95, 0.3);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ─── TOP BAR ─── */
:root {
  --topbar-height: 2.75rem;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  height: var(--topbar-height);
  background: #2a5080;
  display: flex;
  align-items: center;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  transition: opacity 0.2s ease;
}

.top-bar-link:hover {
  opacity: 0.7;
}

.top-bar-link i {
  font-size: 0.9rem;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Sora', system-ui, -apple-system, sans-serif;
  background: var(--bg-white);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── TYPOGRAPHY ─── */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-main);
}

h1 {
  font-size: clamp(1.85rem, 4.2vw, 3.2rem);
  letter-spacing: -0.03em;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
  font-weight: 700;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-sm {
  padding: 4rem 0;
}

.section-dark {
  background: var(--dark);
}

.section-light {
  background: var(--bg-light);
}

.text-center {
  text-align: center;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: var(--ease);
  cursor: pointer;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-green);
  color: #fff;
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(59, 180, 122, 0.4);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow-md);
}

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

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--border);
}

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

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

/* ─── HERO CTA BUTTON ─── */
.btn-hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 2.4rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #1e3a5f 0%, #2a5080 50%, #1e3a5f 100%);
  border-radius: var(--radius-full);
  border: none;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 24px rgba(30, 58, 95, 0.35), 0 0 0 1px rgba(79, 70, 229, 0.25);
  text-decoration: none;
}

.btn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.5), rgba(6, 182, 212, 0.4));
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Shine sweep */
.btn-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 60%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.18) 50%, transparent 60%);
  transform: skewX(-15deg);
  animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
  0% {
    left: -80%;
  }

  60%,
  100% {
    left: 130%;
  }
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(30, 58, 95, 0.45), 0 0 0 1px rgba(79, 70, 229, 0.5);
}

.btn-hero:hover::before {
  opacity: 1;
}

.btn-hero i {
  position: relative;
  z-index: 1;
}

.btn-hero span,
.btn-hero> :not(i) {
  position: relative;
  z-index: 1;
}

.btn-hero .btn-arrow {
  margin-left: 0.2rem;
  transition: transform 0.25s ease;
}

.btn-hero:hover .btn-arrow {
  transform: translateX(4px);
}

/* ─── HERO SECONDARY BUTTON ─── */
.btn-hero-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1.05rem 1.6rem;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--bg-light);
  background: transparent;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: color 0.2s ease, gap 0.2s ease;
  text-decoration: none;
  font-family: inherit;
}

.btn-hero-secondary i {
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.btn-hero-secondary:hover {
  color: var(--primary);
}

.btn-hero-secondary:hover i {
  transform: translateX(4px);
}

/* Hero bölümünde (açık arka plan) koyu renk */
.hero-buttons .btn-hero-secondary {
  color: var(--primary);
}

.hero-buttons .btn-hero-secondary:hover {
  color: #0f2240;
}


/* ─── SECTION LABELS ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.section-label.dark {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

/* ─── HEADER / NAVBAR ─── */
.header {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--ease);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  position: relative;
  padding: 0.5rem 0.85rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-radius: var(--radius-md);
  transition: var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
  background: var(--bg-light);
}

/* Dropdown */
.nav-item {
  position: relative;
}

.nav-item>.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-item>.nav-link .chevron {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.nav-item:hover>.nav-link .chevron,
.nav-item.open>.nav-link .chevron {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 0.6rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  transform: translateX(-50%) translateY(-4px);
}

.nav-item:hover .dropdown,
.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--ease);
}

.dropdown-link:hover {
  background: var(--bg-light);
  color: var(--text-main);
}

.dropdown-link .dd-icon {
  width: 2rem;
  height: 2rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.nav-cta {
  margin-left: 0.75rem;
}

.mobile-menu-btn {
  display: none;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 1.3rem;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--topbar-height) + 4.5rem);
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1rem 0 2rem;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - var(--topbar-height) - 4.5rem);
  overflow-y: auto;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 2rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
}

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

.mobile-nav-section {
  padding: 0.5rem 0;
}

.mobile-nav-section-title {
  padding: 0.5rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.mobile-nav-cta {
  padding: 1rem 2rem 0;
}

/* ─── HERO ─── */
.hero {
  padding: calc(10rem + var(--topbar-height)) 0 6rem;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

/* Animated shimmer layer */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(79, 70, 229, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 10%, rgba(167, 139, 250, 0.07) 0%, transparent 60%);
  z-index: 0;
  animation: heroShimmer 8s ease-in-out infinite alternate;
}

/* Moving mesh dots */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(79, 70, 229, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  z-index: 0;
  animation: heroMeshDrift 20s linear infinite;
  opacity: 0.6;
}

@keyframes heroShimmer {
  0% {
    background:
      radial-gradient(ellipse 80% 60% at 20% 30%, rgba(79, 70, 229, 0.1) 0%, transparent 60%),
      radial-gradient(ellipse 60% 50% at 80% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 60% 10%, rgba(167, 139, 250, 0.07) 0%, transparent 60%);
  }

  50% {
    background:
      radial-gradient(ellipse 80% 60% at 40% 50%, rgba(79, 70, 229, 0.12) 0%, transparent 60%),
      radial-gradient(ellipse 60% 50% at 70% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 20% 70%, rgba(167, 139, 250, 0.09) 0%, transparent 60%);
  }

  100% {
    background:
      radial-gradient(ellipse 80% 60% at 70% 20%, rgba(79, 70, 229, 0.08) 0%, transparent 60%),
      radial-gradient(ellipse 60% 50% at 30% 80%, rgba(6, 182, 212, 0.12) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 80% 50%, rgba(167, 139, 250, 0.1) 0%, transparent 60%);
  }
}

@keyframes heroMeshDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 36px 36px;
  }
}


.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

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

.hero>.container>.hero-inner>p {
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Dashboard kartları — hero içinde */
.hero-dash-wrap {
  max-width: 520px;
  margin: 0.3rem auto 0;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  z-index: 2;
}


/* ─── HERO TRUSTED (Bize Güvenen Markalar) ─── */
.hero-trusted {
  margin-top: 3rem;
  text-align: center;
}

.hero-trusted-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.hero-trusted-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  justify-items: center;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.trusted-logo-img {
  height: 48px;
  width: auto;
  max-width: 120px;
  display: block;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.trusted-logo-img:hover {
  opacity: 1;
}

@media (max-width: 480px) {
  .hero-trusted-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem 0.3rem;
  }
  .trusted-logo-img {
    height: 44px;
    max-width: 100%;
  }
}


/* ─── HERO DEKORATIF ÖGELER ─── */

/* Arka plan pattern SVG */
.hero-pattern-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

@media (max-width: 768px) {
  .hero-pattern-svg {
    display: none;
  }
}


.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.18) 0%, transparent 70%);
  top: -200px;
  right: -150px;
  animation: blobFloat 8s ease-in-out infinite alternate;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.14) 0%, transparent 70%);
  bottom: -80px;
  left: -100px;
  animation: blobFloat 10s ease-in-out infinite alternate-reverse;
}

.hero-blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.12) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation: blobFloat 12s ease-in-out infinite alternate;
}

@keyframes blobFloat {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(20px, -30px) scale(1.05);
  }
}

/* SVG Grafik — eski, kaldırıldı */

/* Nokta parçacıkları */
.hero-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  pointer-events: none;
  z-index: 0;
  animation: dotPulse 3s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.6);
    opacity: 0.12;
  }
}

/* ─── HERO VEKTÖR PANELLERİ ─── */
.hvec {
  position: absolute;
  width: 270px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88) 0%, rgba(235, 241, 255, 0.82) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(79, 70, 229, 0.18);
  border-radius: 1.35rem;
  padding: 1.1rem 1.2rem 0.9rem;
  box-shadow:
    0 12px 40px rgba(30, 58, 95, 0.12),
    0 2px 8px rgba(79, 70, 229, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  z-index: 2;
  animation: hvecFloat 5s ease-in-out infinite alternate;
}

/* Subtle accent bar top */
.hvec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.2rem;
  right: 1.2rem;
  height: 2px;
  background: linear-gradient(90deg, #4F46E5, #06B6D4);
  border-radius: 2px;
  opacity: 0.6;
}

.hvec-left {
  left: 2%;
  top: 28%;
  animation-delay: 0s;
}

.hvec-right {
  right: 2%;
  top: 46%;
  animation-delay: 2s;
}

@keyframes hvecFloat {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-14px);
  }
}

@media (max-width: 1100px) {
  .hvec {
    display: none;
  }
}

.hvec-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.hvec-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hvec-title i {
  color: var(--primary);
}

.hvec-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hvec-badge-up {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.hvec-svg {
  width: 100%;
  height: auto;
  display: block;
}

.hvec-footer {
  font-size: 0.67rem;
  color: var(--text-muted);
  margin-top: 0.55rem;
  border-top: 1px solid rgba(79, 70, 229, 0.08);
  padding-top: 0.45rem;
}

/* Bar animasyonları */
.hbar {
  transform-origin: bottom;
  transform-box: fill-box;
}

.hbar-1 {
  animation: barGrow 1.2s ease-out 0.1s both;
}

.hbar-2 {
  animation: barGrow 1.2s ease-out 0.25s both;
}

.hbar-3 {
  animation: barGrow 1.2s ease-out 0.4s both;
}

.hbar-4 {
  animation: barGrow 1.2s ease-out 0.55s both;
}

.hbar-5 {
  animation: barGrow 1.2s ease-out 0.7s both;
}

.hbar-6 {
  animation: barGrow 1.2s ease-out 0.85s both;
}

@keyframes barGrow {
  from {
    transform: scaleY(0);
    opacity: 0;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* Area/line animasyonu */
.hline {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine 2s ease-out 0.5s forwards;
}

.harea {
  animation: fadeIn 1.5s ease-out 1.2s both;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Pulse nokta */
.hpulse {
  animation: hpulseAnim 1.5s ease-in-out infinite;
}

@keyframes hpulseAnim {

  0%,
  100% {
    r: 3;
    opacity: 1;
  }

  50% {
    r: 5;
    opacity: 0.5;
  }
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
}

.hero-stat-value span {
  color: var(--primary);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ─── MARQUEE (Logo Cloud) ─── */
.marquee-section {
  padding: 2.5rem 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 25s linear infinite;
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-light);
  white-space: nowrap;
  padding: 0.5rem 1rem;
}

.marquee-item i {
  font-size: 1.2rem;
}

/* ─── ABOUT SECTION ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

/* Vektör panelli görsel alan (eski) */
.about-visual-vec {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}

/* ─── ABOUT DASHBOARD MOCKUP ─── */
.about-dashboard {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

/* Ana satış kartı */
.adb-main {
  margin-top: 45px;
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  padding: 1.4rem 1.5rem 1rem;
  box-shadow: 0 8px 32px rgba(30, 58, 95, 0.08);
}

.adb-main-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.adb-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.adb-value {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.adb-arrow {
  color: #10b981;
  font-size: 1rem;
}

.adb-cro {
  text-align: right;
}

.adb-cro-pct {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
}

.adb-cro-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.adb-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Sipariş bildirimi */
.adb-notif {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.07);
  animation: notifSlide 0.6s ease-out 1.5s both;
}

@keyframes notifSlide {
  from {
    transform: translateY(12px);
    opacity: 0;
  }

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

.adb-notif-thumb {
  position: relative;
  flex-shrink: 0;
}

.adb-thumb-img {
  width: 44px;
  height: 44px;
  border-radius: 0.65rem;
  object-fit: cover;
}

.adb-notif-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ef4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.adb-notif-text {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text-main);
}

.adb-notif-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  height: 420px;
  box-shadow: var(--shadow-xl);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border);
}

.about-badge-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.about-badge-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
}

.about-badge-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0;
}

.about-text h2 {
  margin-bottom: 1.25rem;
}

.about-text p {
  margin-bottom: 1.25rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
}

.about-feature i {
  color: var(--primary);
  font-size: 1rem;
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-mid);
}

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

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  transition: var(--ease);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  margin: 0;
}

.service-card .service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-5px);
  transition: var(--ease);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ─── STATS SECTION ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
}

.stat-value span {
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ─── FEATURES GRID (icon info boxes) ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ─── FEATURES LIST (compact icon + title rows) ─── */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 560px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  transition: var(--ease);
}

.feature-item:hover {
  border-color: var(--primary-mid);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.feature-item-icon {
  width: 2.4rem;
  height: 2.4rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--ease);
}

.feature-item:hover .feature-item-icon {
  background: var(--primary);
  color: #fff;
}

.feature-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.feature-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-mid);
}

.feature-box:hover::before {
  opacity: 1;
}

.feature-box-icon {
  width: 3.25rem;
  height: 3.25rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  transition: var(--ease);
}

.feature-box:hover .feature-box-icon {
  background: var(--primary);
  color: #fff;
}

.feature-box-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.65rem;
  line-height: 1.4;
}

.feature-box-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}


/* ─── TESTIMONIAL / SUCCESS STORIES ─── */
.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--ease);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-mid);
}

.testimonial-result {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.testimonial-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.brand-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.brand-cat {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── PARTNERS (Platform Logos) ─── */
.partner-logos {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
}

.partner-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.partner-logo-item:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.partner-logo-item i {
  font-size: 2.4rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
}

.partner-logo-item > span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* İkas / Ticimax — wordmark aligned with icon height */
.partner-icon-box {
  height: 2.8rem;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: inherit;
  white-space: nowrap;
}

.section-light {
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* ─── MARQUEE (Partner Logos) ─── */
.marquee-section {
  padding: 2.5rem 0;
}

.marquee-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.marquee-header span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.6;
}

.marquee-outer {
  overflow: hidden;
  width: 100%;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}

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

.marquee-item {
  flex-shrink: 0;
}

.marquee-item img {
  height: 44px;
  width: auto;
  display: block;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.25s ease;
}

.marquee-item:hover img {
  filter: grayscale(0) opacity(1);
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── PRICING ─── */
/* ─── PACKAGES VALUE STRIP ─── */
.pkg-values-strip {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.pkg-values-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.pkg-value-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
}

.pkg-value-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.4rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pricing-tab {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--ease);
}

.pricing-tab.active {
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card .btn {
  margin-bottom: 1rem;
}


.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light), var(--shadow-lg);
  transform: scale(1.02);
}

.pricing-popular {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 0.3rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-name {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  min-height: auto;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pricing-feature i {
  color: var(--primary);
  font-size: 0.85rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.pricing-feature.missing {
  opacity: 0.4;
}

.pricing-feature.missing i {
  color: var(--text-light);
}

.pricing-addon-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(30, 58, 95, 0.07);
  border-left: 3px solid var(--primary);
  padding: 0.35rem 0.6rem;
  margin: 0.75rem 0 0.35rem;
  border-radius: 0 4px 4px 0;
}

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

/* ─── PARTNERSHIP PAGE ─── */
.partnership-hero {
  padding: 10rem 0 6rem;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.partnership-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 180, 122, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.partnership-hero .hero-inner {
  text-align: center;
}

.partnership-hero h1,
.partnership-hero h2,
.partnership-hero p {
  color: #fff;
}

.partnership-hero p {
  color: rgba(255, 255, 255, 0.75);
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--ease);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 180, 122, 0.4);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
}

.benefit-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin: 0;
}

.partner-form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
}

/* ─── PAGE HERO (Inner Pages) ─── */
.page-hero {
  padding: calc(9rem + var(--topbar-height)) 0 4rem;
  background: var(--gradient-hero);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
}

/* ─── BIZ KIMIZ ─── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--ease);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-mid);
  transform: translateY(-3px);
}

.value-icon {
  width: 4rem;
  height: 4rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* Accordion */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-main);
  background: var(--bg-white);
  cursor: pointer;
  transition: var(--ease);
  text-align: left;
}

.accordion-toggle:hover {
  background: var(--bg-light);
}

.accordion-toggle.open {
  background: var(--primary-light);
  color: var(--primary);
}

.accordion-toggle.open .acc-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

.acc-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-body {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.accordion-body.open {
  max-height: 300px;
  padding: 1.25rem 1.5rem;
}

/* ─── REFERANSLAR PAGE ─── */
.referanslar-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  background: var(--bg-white);
  cursor: pointer;
  transition: var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.referans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.referans-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 2 / 1;
  transition: var(--ease);
}

.referans-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-mid);
  transform: translateY(-3px);
}

.referans-card img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}


/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.contact-info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-top: 0.2rem;
}

/* ─── FORMS ─── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  background: var(--bg-white);
  transition: var(--ease);
}

.form-control::placeholder {
  color: var(--text-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

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

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

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

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--ease);
}

.social-btn:hover {
  background: var(--primary);
  color: #fff;
}

.footer-col-title {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--ease);
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
  transition: var(--ease);
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 0.85rem;
  width: 1rem;
}

.footer-contact-item:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
}

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

/* ─── CTA SECTION ─── */
/* ─── CTA PREMIUM ─── */
.cta-section {
  background: var(--gradient-dark);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

/* Dekoratif blob'lar */
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cta-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.25) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}

.cta-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
}

/* Noktalı grid arka plan */
.cta-grid-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* İki sütun layout */
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

/* Sol içerik */
.cta-content {
  text-align: left;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.cta-eyebrow i {
  color: #facc15;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-highlight {
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto 2rem;
  line-height: 1.75;
  font-size: 1.05rem;
  max-width: 720px;
}

/* Checkmark listesi */
.cta-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.cta-checks li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

.cta-checks i {
  color: #4ade80;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* CTA butonlar */
.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Sağ taraf: Feature kartları */
.cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cta-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.cta-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.cta-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.4), rgba(6, 182, 212, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #fff;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.cta-card-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.2rem;
}

/* ─── UTILITY ─── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.text-primary {
  color: var(--primary);
}

.text-muted {
  color: var(--text-muted);
}

.text-white {
  color: #fff;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 2.5rem;
}

.mb-6 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-6 {
  margin-top: 3rem;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.fade-up {
  animation: fadeUp 0.6s ease both;
}

.fade-up-1 {
  animation-delay: 0.1s;
}

.fade-up-2 {
  animation-delay: 0.2s;
}

.fade-up-3 {
  animation-delay: 0.3s;
}

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

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

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

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

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

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .about-img {
    height: 320px;
  }



  .referans-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Logo mobilde daha küçük */
  .nav-logo-img {
    height: 32px;
  }

  /* Top bar mobilde kompakt */
  .top-bar {
    height: 2.5rem;
  }

  :root {
    --topbar-height: 2.5rem;
  }

  .top-bar-link {
    font-size: 0.72rem;
    gap: 0.35rem;
  }

  /* Hero — ortalı, kompakt */
  .hero {
    padding: calc(7rem + var(--topbar-height)) 0 3.5rem;
  }

  .hero-inner {
    text-align: center;
    max-width: 100%;
  }

  .hero-inner .section-label {
    display: none;
  }

  .hero h1 {
    margin-bottom: 0.85rem;
    font-size: 2.125rem;
  }

  .hero>.container>.hero-inner>p {
    margin: 0 auto 1.75rem;
    font-size: 1rem;
    max-width: 100%;
  }

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

  .hero-trusted {
    text-align: center;
    margin-top: 1.75rem;
  }

  .hero-trusted-logos {
    justify-content: center;
  }

  .hero-stats {
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.75rem;
  }

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

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

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

  .about-dashboard {
    margin-top: 0;
  }

  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  /* Testimonial kartları mobilde yatay kaydırma */
  .grid-3 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.25rem;
    padding-bottom: 1.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-mid) var(--bg-light);
  }

  .grid-3::-webkit-scrollbar {
    height: 5px;
  }

  .grid-3::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 4px;
  }

  .grid-3::-webkit-scrollbar-thumb {
    background: var(--primary-mid);
    border-radius: 4px;
  }

  .grid-3>* {
    flex: 0 0 82vw;
    scroll-snap-align: start;
    white-space: normal;
    word-break: break-word;
  }

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

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

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

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

  .section {
    padding: 4rem 0;
  }

  .section-sm {
    padding: 2.5rem 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

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

  .footer-bottom-links {
    justify-content: center;
  }

  .partners-grid {
    gap: 0.75rem;
  }

  /* CTA Premium mobil */
  .cta-section {
    padding: 4rem 0;
  }

  .cta-inner {
    gap: 1rem;
  }

  .cta-eyebrow {
    margin-bottom: 0.75rem;
  }

  .cta-section h2 {
    font-size: 1.75rem;
    margin-bottom: 0.6rem;
  }

  .cta-section p {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
  }

  .cta-buttons {
    gap: 0.75rem;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .referans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .referans-card {
    padding: 1rem 0.75rem;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
  }

  .hero-stat-value {
    font-size: 1.5rem;
  }

  .top-bar-inner {
    padding: 0 1rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: center;
  }

  .hero-stat-value {
    font-size: 1.5rem;
  }
}

/* ─── MODAL OVERLAY ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 30, 51, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(13, 30, 51, 0.25);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-header {
  background: var(--gradient-dark);
  color: #fff;
  padding: 2rem 2rem 1.5rem;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  position: relative;
}

.modal-header .modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.modal-header h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.modal-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.5;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--ease);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2rem;
}

.modal-body .form-group {
  margin-bottom: 1.1rem;
}

.modal-body .form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.modal-body .form-group label .req {
  color: #d63031;
  margin-left: 2px;
}

.modal-body .form-group input,
.modal-body .form-group select,
.modal-body .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.93rem;
  color: var(--text-main);
  background: var(--bg-light);
  transition: var(--ease);
  outline: none;
}

.modal-body .form-group input:focus,
.modal-body .form-group select:focus,
.modal-body .form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px var(--primary-light);
}

.modal-body .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.modal-body textarea {
  resize: vertical;
  min-height: 90px;
}

.modal-free-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary-light);
  border: 1px solid var(--primary-mid);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
}

.modal-free-badge i {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.modal-submit-btn {
  width: 100%;
  padding: 0.9rem;
  background: var(--gradient-green);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: 0.01em;
}

.modal-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
  opacity: 0.93;
}

@media (max-width: 520px) {
  .modal-box {
    border-radius: var(--radius-lg);
  }

  .modal-header {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .modal-body {
    padding: 1.25rem;
  }

  .modal-body .form-row-2 {
    grid-template-columns: 1fr;
  }
}
/* ═══════════════════════════════════════════════════════════
   MOBILE FONT KÜÇÜLTME — max-width: 768px
   Hero başlık: -15%  | Hero altyazı: -20%  | Genel text: -22%
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Hero h1 başlık — %15 küçültme: clamp(1.85*0.85, ...) */
  .hero h1,
  .hero-inner h1 {
    font-size: clamp(1.77rem, 3.57vw, 2.72rem) !important;
  }

  /* Hero altyazı (p) — %20 küçültme: 1.15 * 0.8 = 0.92rem */
  .hero > .container > .hero-inner > p,
  .hero-inner > p {
    font-size: 0.92rem !important;
  }

  /* Genel sayfa içi metinler — %22 küçültme */
  p,
  li,
  .section-desc,
  .card-desc,
  .about-text,
  .service-desc,
  .package-desc,
  .faq-answer,
  .accordion-body,
  .footer-brand-desc,
  .partner-intro,
  .contact-text,
  .testimonial-text,
  .blog-excerpt {
    font-size: 0.78rem !important; /* 16px * 0.78 = 12.5px — %22 küçültme */
  }

}
