:root {
  --section-gap: clamp(28px, 3.2vw, 48px);
  --navy: #101828;
  --bg-wash: #f6f7ff;
  --accent-start: #6f7cf7;
  --accent-end: #a8b6ff;
  --radius: 20px;
  --shadow-sm: 0 6px 14px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 10px 30px rgba(16, 24, 40, 0.08);
  --px: clamp(28px, 4vw, 32px);
  --py: clamp(20px, 3.2vw, 24px);
  --container: 1200px;
  --header-offset: 50px;
  --underline-start: #c7d2fe;
  --underline-end: #e0e7ff;
  --scrim: rgba(16, 24, 40, 0.35);
  --header-h: calc(44px + (var(--py) * 2));

  /* Testimonial layout & controls */
  --testi-btn-size: 34px;
  --testi-icon-size: 16px;
  --testi-pad: clamp(20px, 3vw, 28px);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI,
    Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
  color: var(--navy);
  background: var(--bg-wash);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

/* spacer now includes header height + offset to restore the original gap under the menu */
body::before {
  content: "";
  display: block;
  height: calc(var(--header-h) + var(--header-offset));
}

.container {
  max-width: var(--container);
  margin-inline: auto;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--accent-start);
  outline-offset: 2px;
  border-radius: 10px;
}

/* fixed header to keep it always visible */
.header-sticky-wrap {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-inline: 16px;
}

.header-bar {
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  backdrop-filter: saturate(160%) blur(8px);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  padding: var(--py) var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.wordmark {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system;
}

.hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-inline: 8px;
  outline-offset: 2px;
  order: 3;
}

.hamburger-box {
  position: relative;
  width: 22px;
  height: 14px;
  display: inline-block;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  content: "";
  background: #1f2937;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.hamburger-inner {
  top: 6px;
}

.hamburger-inner::before {
  top: -6px;
}

.hamburger-inner::after {
  top: 6px;
}

#menu-toggle[aria-expanded="true"] .hamburger-inner {
  transform: rotate(45deg);
}

#menu-toggle[aria-expanded="true"] .hamburger-inner::before {
  transform: translateY(6px) rotate(90deg);
}

#menu-toggle[aria-expanded="true"] .hamburger-inner::after {
  opacity: 0;
}

.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  line-height: 1;
  min-height: 44px;
}

.nav-link:hover {
  background: rgba(16, 24, 40, 0.05);
}

.nav-link:active {
  transform: translateY(1px);
}

.mt-0 {
  margin-top: 0;
}

.has-dropdown .dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  transform: translateY(8px);
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: saturate(160%) blur(6px);
  backdrop-filter: saturate(160%) blur(6px);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow-md);
  border-radius: 14px;
  display: none;
  min-width: 220px;
  color: var(--navy);
  z-index: 1001;
}

.has-dropdown.open .dropdown {
  display: block;
}

.rotating-border {
  position: relative;
  --border-radius: 0.1rem;
  --border-size: 0.3rem;
  --border-bg: conic-gradient(#fff 0% 25%, #7c8af9 25% 50%, #404a97 50% 75%, white 75% 100%);
  --padding: 0.01rem;
  position: relative;
  overflow: hidden;
  font-size: 1rem;
  padding: 4.96px;
  border-radius: 40px;
  display: inline-block;
}

.header-bar .rotating-border {
  display: none;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.2rem;
  min-height: 44px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6f7cf7, var(--accent-end));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(111, 124, 247, 0.28);
  transition: transform 0.12s ease, box-shadow 0.15s ease;
}

.btn-cta .arrow {
  width: 16px;
  height: 16px;
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(111, 124, 247, 0.34);
}

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

.mobile-panel {
  display: none;
  position: relative;
}

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

.mobile-panel .mobile-menu {
  margin-top: 12px;
  list-style: none;
  padding: 8px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  backdrop-filter: saturate(160%) blur(8px);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow-sm);
  border-radius: 16px;
}

.mobile-link {
  display: block;
  padding: 14px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.mobile-link:hover {
  background: rgba(16, 24, 40, 0.05);
}

.mobile-sub {
  list-style: none;
  margin: 0 0 8px 0;
  padding: 0 0 0 12px;
}

.mobile-sub a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
}

.mobile-sub a:hover {
  background: rgba(16, 24, 40, 0.05);
}

details summary::-webkit-details-marker {
  display: none;
}

.no-scroll {
  overflow: hidden;
}

main {
  flex: 1 0 auto;
}

.hero {
  position: relative;
  background: url(../img/banner-16.jpg) no-repeat;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -360px;
  height: 360px;
  background: linear-gradient(135deg, #f6f7ff 0%, #eef1ff 45%, #eaf3ff 100%);
  z-index: -1;
}

.hero-inner {
  text-align: center;
  padding: 235px 0 0 0;
}

.hero-title {
  margin-inline: auto;
  max-width: 22ch;
  font-family: "Funnel Display", "Plus Jakarta Sans", "Inter", system-ui,
    -apple-system;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.06;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  color: var(--navy);
  margin-top: 0;
  padding: 0;
}

.text-gradient {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.typewrap {
  position: relative;
  display: inline-block;
  line-height: 1;
  padding-bottom: 0.1em;
}

.cursor {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 5px;
  height: 1em;
  margin-left: -5px;
  background: #3F3EED;
  top: 14px;
}

.rotating-border:before {
  content: "";
  display: block;
  background: conic-gradient(#f8f9fa 0% 25%, #a3c6e6 25% 50%, #001e6e 50% 75%, white 75% 100%);
  width: calc(100% * 1.41421356237);
  padding-bottom: calc(100% * 1.41421356237);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  z-index: -2;
  animation: spin 5s linear infinite;
}

.rotating-border:after {
  content: "";
  position: absolute;
  inset: 0.3rem;
  background: #fff;
  z-index: -1;
  border-radius: 40px;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.type-underline {
  position: absolute;
  left: 0;
  bottom: 0.01em;
  height: 0.16em;
  width: 0;
  background: linear-gradient(90deg,
      var(--underline-start),
      var(--underline-end));
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.hero-sub {
  margin: 0 auto;
  max-width: 760px;
  font-weight: 500;
  opacity: 0.92;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 28px;
  min-height: 0;
}

.radial-eq-wrap {
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 10px 24px rgba(30, 64, 175, 0.15));
}

#radialEq {
  width: clamp(180px, 42vw, 420px);
  height: auto;
  overflow: visible;
}

@media (min-width: 992px) {
  .hamburger {
    display: none;
  }

  .main-nav {
    display: block;
  }

  .header-bar {
    gap: 16px;
  }

  .brand {
    margin-right: 8px;
  }

  .header-bar .rotating-border {
    display: inline-block;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

.feature-tools>.container {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(16, 24, 40, 0.06);
  overflow: hidden;
}

.ft-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: 30px;
}

@media (max-width: 992px) {
  .ft-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.ft-left {
  position: relative;
}

.ft-watermark {
  position: relative;
  inset: auto auto 100% 0;
  font-family: "Space Grotesk", "Funnel Display", "Plus Jakarta Sans", "Inter",
    system-ui, -apple-system;
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 700;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(16, 24, 40, 0.25);
  text-shadow: none;
  user-select: none;
}

.ft-title {
  font-family: "Funnel Display", "Plus Jakarta Sans", "Inter", system-ui,
    -apple-system;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  line-height: 1.1;
  color: #0f172a;
  margin: 6px 0 12px;
}

.ft-title .ft-bracket {
  background: linear-gradient(90deg, #6f7cf7, #a8b6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ft-sub {
  max-width: 48ch;
  opacity: 0.9;
  margin: 0 0 22px;
  font-weight: 500;
}

@media (max-width: 992px) {
  .ft-sub {
    margin-inline: auto;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  min-height: 44px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6f7cf7, var(--accent-end));
  color: #fff;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(111, 124, 247, 0.34);
}

.ft-right {
  position: relative;
}

.ft-right::before {
  content: "";
  position: absolute;
  border: 2px dashed rgba(111, 124, 247, 0.45);
  border-radius: 18px;
  z-index: 0;
  display: block;
}

.wa-section-right::before {
  width: 400px;
  height: 100%;
  max-width: none;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -15px;
}

.phone-section-right::before {
  width: 400px;
  height: 100%;
  max-width: none;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -15px;
}

.outlook-section-right::before {
  width: 100%;
  height: 100%;
  max-width: none;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -15px;
}

.lib-mock {
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

.lib-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  background: #fff;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.feature-tools * {
  box-shadow: none !important;
}

.tools-cta {
  padding: 30px 16px;
  color: #fff;
  background: radial-gradient(1200px 600px at 10% -10%,
      rgba(88, 108, 255, 0.25),
      transparent 60%),
    radial-gradient(1200px 600px at 90% 120%,
      rgba(236, 72, 153, 0.22),
      transparent 60%),
    linear-gradient(135deg, #0b1020 0%, #0f172a 100%);
}

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

.tools-title {
  font-family: "Funnel Display", "Plus Jakarta Sans", "Inter", system-ui,
    -apple-system;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: clamp(2rem, 5.2vw, 3.2rem);
  line-height: 1.08;
  margin: 0 0 10px;
}

.tools-sub {
  font-weight: 600;
  opacity: 0.95;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  margin-bottom: 0;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 3.2vw, 36px);
  justify-items: center;
}

@media (max-width: 992px) {
  .tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: clamp(22px, 3.6vw, 32px);
  border-radius: 18px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 8px 20px rgba(2, 6, 23, 0.25);
  max-width: 480px;
}

.tool-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #4f46e5, #22d3ee);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  margin-bottom: 10px;
}

.tool-icon--blue {
  background: linear-gradient(135deg, #60a5fa, #6366f1);
}

.tool-icon--pink {
  background: linear-gradient(135deg, #f472b6, #ef4444);
}

.tool-icon--green {
  background: linear-gradient(135deg, #34d399, #10b981);
}

.tool-icon--amber {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.tool-icon--violet {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
}

.tool-icon--teal {
  background: linear-gradient(135deg, #22d3ee, #06b6d4);
}

.tool-title {
  margin: 2px 0 4px;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-family: "Funnel Display", system-ui, -apple-system;
}

.tool-blurb {
  margin: 0 0 10px;
  opacity: 0.95;
  max-width: 44ch;
}

.tool-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: #fff;
  text-underline-offset: 3px;
}

/* Logos */
.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg,
      transparent 0%,
      #000 6%,
      #000 94%,
      transparent 100%);
  mask-image: linear-gradient(90deg,
      transparent 0%,
      #000 6%,
      #000 94%,
      transparent 100%);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.logo-marquee.dragging {
  cursor: grabbing;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 30px;
  will-change: transform;
}

.logo-tile {
  flex: 0 0 auto;
  width: clamp(140px, 18vw, 200px);
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.logo-tile img {
  max-width: 80%;
  max-height: 60%;
  object-fit: contain;
  display: block;
}

/* mobile logos: 2 per row, no scroll bar, no JS dragging */
@media (max-width: 767px) {
  .logo-marquee {
    -webkit-mask-image: none;
    mask-image: none;
    cursor: default;
  }

  .logo-track {
    gap: 30px;
  }

  .logo-tile {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* ===================== TESTIMONIAL ===================== */

.testi-carousel {
  position: relative;
  background: linear-gradient(135deg, #f3f4f6 0%, #ede9fe 100%);
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
  padding: 30px;
}

.testi-track {
  display: block;
}

/* iki gövde üst üste, biri aktif biri sırada */
/* tüm kenarlarda aynı boşluk => var(--testi-pad) */
.testi-body {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  column-gap: 60px;
  row-gap: clamp(14px, 3.5vw, 24px);
  align-items: stretch;
  align-content: center;
  height: auto;
}

.testi-media {
  aspect-ratio: 200 / 250;
  align-self: start;
  min-width: 200px;
  width: 100%;
  height: auto;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.12);
  margin: 0;
}

.testi-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testi-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testi-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.brand-g {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #6f7cf7, #a8b6ff);
}

.stars {
  color: #111827;
  letter-spacing: 2px;
  font-size: 14px;
}

.testi-text {
  margin: 6px 0 16px;
  font-weight: 600;
  color: #111827;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0;
}

.avatar {
  display: none;
}

.who .name {
  font-weight: 800;
}

.who .role {
  opacity: 0.8;
  font-size: 0.95em;
}

/* Nav sabit kalıyor - card içinde aynı padding ile sabitleniyor */
.testi-nav {
  position: absolute;
  right: 60px;
  bottom: 60px;
  display: flex;
  gap: 10px;
  z-index: 3;
  transform: translateZ(0);
}

.testi-btn {
  width: var(--testi-btn-size);
  height: var(--testi-btn-size);
  border-radius: 50%;
  background: #fff;
  color: #111827;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(16, 24, 40, 0.08);
  transition: none !important;
}

.testi-btn:hover {
  transform: none !important;
}

.testi-btn:active {
  transform: none !important;
}

.testi-btn:focus,
.testi-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(111, 124, 247, 0.35);
}

.testi-btn svg {
  width: var(--testi-icon-size);
  height: var(--testi-icon-size);
}

.testi-btn svg path {
  stroke-width: 1.6;
}

@media (max-width: 900px) {
  .testi-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testi-media {
    min-width: auto;
    min-height: auto;
    width: 100%;
  }

  .testi-nav {
    right: 30px;
    bottom: 30px;
  }
}

/* ====== Footer (renkli iç + beyaz dış) ====== */
.mega-footer {
  flex-shrink: 0;
  background: #fff;
  padding: 30px 16px;
  background: radial-gradient(1200px 600px at 10% -10%,
      rgba(88, 108, 255, 0.25),
      transparent 60%),
    radial-gradient(1200px 600px at 90% 120%,
      rgba(236, 72, 153, 0.22),
      transparent 60%),
    linear-gradient(135deg, #0b1020 0%, #0f172a 100%);
}

.mega-footer .footer-inner {
  position: relative;
  width: min(100%, calc(var(--container) + 32px));
  margin-inline: auto;
  margin-bottom: 0;
  color: #fff;
}

.mega-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 4vw, 52px);
  align-items: start;
  margin-bottom: 0;
}

@media (max-width: 1000px) {
  .mega-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 28px;
  }
}

@media (max-width: 640px) {
  .mega-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

.mega-footer .footer-heading {
  font-weight: 800;
  margin: 0 0 10px;
}

.mega-footer .footer-heading.big {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  font-family: "Funnel Display", system-ui, -apple-system;
}

.mega-footer .footer-contact address {
  font-style: normal;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #fff;
  opacity: 0.95;
}

.mega-footer .footer-contact a {
  color: #fff;
  text-decoration: underline;
}

.mega-footer .footer-col .col-title {
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
  font-family: "Funnel Display", system-ui, -apple-system;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.mega-footer .footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-footer .footer-col a {
  color: #fff;
  opacity: 0.95;
}

.mega-footer .footer-col a:hover {
  text-decoration: underline;
}

.mega-footer .footer-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.32),
      rgba(255, 255, 255, 0.18));
  margin: 30px 0;
}

.mega-footer .footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.mega-footer .robok {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
}

.mega-footer .robok-mark {
  border-radius: 6px;
}

.mega-footer .robok-type {
  font-size: 1.375rem;
}

.mega-footer .socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mega-footer .socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.mega-footer .socials svg {
  width: 17px;
  height: 17px;
}

.mega-footer .footer-legal {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: #fff;
}

.mega-footer .footer-legal .links a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.no-scroll::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--scrim);
  height: 100%;
}

.mb-60 {
  margin-bottom: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.image-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #525864;
  border-radius: 12px;
  overflow: hidden;
}

.inside-page {
  background: #fff;
  padding: 30px 16px;
  font-size: 20px;
  line-height: 34px;
}

/* Görselin kendisi */
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.swiper-button-next,
.swiper-button-prev {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  margin: 0;
}

.footer-contact p {
  margin-bottom: 0;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.newsletter {
  padding: 30px;
  background: radial-gradient(1200px 600px at 10% -10%,
      rgba(88, 108, 255, 0.25),
      transparent 60%),
    radial-gradient(1200px 600px at 90% 120%,
      rgba(236, 72, 153, 0.22),
      transparent 60%),
    linear-gradient(135deg, #0b1020 0%, #0f172a 100%);
  border-radius: 22px;
  min-height: 450px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: CENTER;
}

.newsletter h3 {
  text-align: center;
  font-size: 45px;
  line-height: 60px;
  color: #fff;
  margin-top: 0;
  font-family: "Funnel Display", system-ui, -apple-system;
}

.container.ft-grid.flex-grid {
  padding: 0;
}

.inside-title {
  text-align: center;
  margin-bottom: 30px;
}

.demo-page-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.left-column {
  background: #f7d093;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to top,
      #f7d093,
      rgb(51 51 51 / 0%));
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to top, rgb(124 137 249 / 33%), rgb(51 51 51 / 0%));
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  padding: 0 30px;
  border-radius: 22px;
}

/* --- Sol Sütun: Bilgi Alanı --- */
.left-column h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 55px;
  margin-top: 0;
  font-family: "Funnel Display", system-ui, -apple-system;
}

.radio-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-logo {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
}

.demo-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.demo-steps li {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  font-family: 'Inter';
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #7784f8;
  /* Sarı/Turuncu daire */
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
  margin-right: 15px;
  flex-shrink: 0;
  color: #fff;
}

/* İstatistik Kartları */
.stats-cards {
  display: grid;
  gap: 30px;
}

.stat-card {
  background-color: #7784f8;
  /* Soluk bej arkaplan */
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: center;
  min-height: 180px;
  font-family: "Funnel Display", system-ui, -apple-system;
}

.stat-card img {
  max-width: 80px;
  height: auto;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
  line-height: normal;
  color: #fff;
}

.stat-description {
  font-size: 16px;
  color: #fff;
  margin: 0;
  font-weight: 600;
  font-family: 'Inter';
  line-height: 28px;
}

/* --- Sağ Sütun: Form Alanı --- */
.form-container {
  /* Koyu form arkaplanı */
  color: #ffffff;
  border-radius: 22px;
  border: 1px solid #eee;
  padding: 30px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 7px;
  color: #000;
  line-height: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #777;
  background-color: #ffffff;
  border-radius: 6px;
  font-size: 16px;
  color: #333;
}

/* Select kutularındaki ok işaretini düzeltmek için */
.form-group select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 24px;
  padding-right: 40px;
  /* Ok için yer aç */
}

.form-group textarea {
  min-height: 67px;
  resize: vertical;
}

.form-group textarea::placeholder {
  font-size: 14px;
}

/* Radyo Buton Grubu */
.radio-group p {
  font-weight: 600;
  color: #000;
  font-size: 14px;
  margin: 0 0 20px;
  line-height: 14px;
}

.radio-option {
  display: flex;
  align-items: center;
}

.radio-option input[type="radio"] {
  margin-right: 10px;
}

.radio-option label {
  margin-bottom: 0;
  font-weight: normal;
}

/* Gönder Butonu */
.submit-btn {
  width: 100%;
  padding: 12px;
  /* Yeşil buton */
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  margin-bottom: 20px;
}

.submit-btn:hover {
  background-color: #008a60;
}

/* Gizlilik Metni */
.fine-print {
  font-size: 10px;
  color: #636363;
  margin-top: 0;
  line-height: 1.5;
  margin-bottom: 0;
  font-style: italic;
}

.fine-print a {
  color: #000000;
  text-decoration: underline;
}

.inside-page .logo-track {
  flex-wrap: wrap;
  row-gap: 30px;
  margin-bottom: 30px;
}

.contact-section {
  width: 100%;
  padding: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.contact-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 20px;
}

.icon-wrapper {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgb(0 0 0 / 10%);
  display: grid;
  place-items: center;
}

.icon-wrapper svg {
  width: 24px;
  height: 24px;
  color: #d9534f;
}

.text-content .label {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 21px;
  font-family: "Funnel Display", system-ui, -apple-system;
}

.text-content p,
.text-content address {
  margin: 0;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: #777777;
  line-height: 28px;
}

.map-embed {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.text-content a {
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 16px;
  font-family: 'Inter';
  color: #777777;
  line-height: 28px;
}

.text-content a:hover {
  color: #6f7cf7;
}

.contact-column .inside-title {
  margin-bottom: 0;
  text-align: left;
}

@media (max-width: 1200px) {
  body {
    /* background: #fff; */
  }

  .demo-page-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .header-bar {
    background: #ffffff;
  }

  .mobile-panel .mobile-menu {
    background: #ffffff;
  }
}

@media (hover: none) {

  .nav-link:hover,
  .mobile-link:hover,
  .mobile-sub a:hover {
    background: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor {
    display: none;
  }

  .testi-body {
    transition: none !important;
  }
}

/* Mobil (coarse pointer) için daha büyük dokunma alanı */
@media (pointer: coarse) {
  .testi-btn {
    width: 40px;
    height: 40px;
  }

  .testi-btn svg {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 992px) {
  .feature-tools .ft-left {
    margin-bottom: 50px;
  }

  .btn-primary.btn-abs {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .feature-tools .ft-left {
    position: static;
  }

  .feature-tools .ft-sub {
    margin-bottom: 0;
  }

  .feature-tools>.container.ft-grid {
    padding-bottom: 110px;
    gap: 0;
  }
}

@media (min-width: 768px) {
  .logo-track {
    gap: 60px;
  }

  .mb-md-80 {
    margin-bottom: 80px;
  }

  .ft-grid,
  .tools-cta,
  .mega-footer,
  .testi-carousel,
  .newsletter {
    padding: 80px;
  }

  .has-dropdown .dropdown {
    display: flex;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: all 0.3s ease;
    flex-direction: column;
  }

  .nav-item.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    z-index: 9;
  }

  .mega-footer .footer-divider {
    margin: 80px 0;
  }

  .has-dropdown .dropdown a {
    padding: 0.75rem 0.9rem;
    transition: all 0.3s ease;
    border-radius: 12px;
    min-height: 44px;
    display: block;
  }

  .has-dropdown .dropdown a:hover {
    background: rgba(16, 24, 40, 0.05);
  }

  .testi-body {
    column-gap: 80px;
    margin-right: 100px;
  }

  .testi-nav {
    right: 80px;
    bottom: 80px;
  }

  .inside-page {
    padding: 80px 16px;
  }

  .left-column {
    padding: 30px;
  }

  .stat-logo {
    justify-content: flex-start;
  }

  .inside-page .logo-track .logo-tile {
    width: calc(25% - 45px);
  }

  .inside-page .logo-track {
    row-gap: 60px;
    margin-bottom: 60px;
  }

  .contact-section {
    padding: 0 0 80px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 0;
  }

  .contact-column {
    gap: 40px;
  }

  .contact-list {
    gap: 40px;
  }

  .inside-title {
    margin-bottom: 60px;
  }
}

@media (min-width: 1200px) {
  .inside-page .logo-track .logo-tile {
    width: calc(20% - 49px);
  }
}

@media (max-width: 767px) {
  .header-sticky-wrap {
    top: 30px;
  }

  .hero-inner {
    padding: 156px 30px 0 30px;
  }

  .stat-card {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .stat-card:last-child {
    margin-bottom: 30px;
  }

  .stat-logo {
    justify-content: center;
  }

  .inside-page .logo-track {
    padding: 0;
    justify-content: start;
  }

  .left-column h1 {
    font-size: 32px;
    text-align: center;
    margin-top: 0;
    line-height: 42px;
  }

  .stat-number {
    font-size: 40px;
  }

  .form-container {
    padding: 25px;
  }

  .inside-page .logo-track .logo-tile {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }

  #radialEq {
    width: 90%;
  }

  .feature-tools {
    padding: 0 16px;
  }

  .logos-section,
  .testimonial-section {
    padding: 0 16px;
  }

  .inside-page {
    font-size: 16px;
    line-height: 28px;
  }

  .contact-column {
    margin-bottom: 30px;
  }

  .contact-column .tools-title {
    text-align: center;
  }

  .cursor {
    margin-left: -3px;
    top: 8px;
  }

  .mega-footer .footer-brand-row {
    flex-direction: column-reverse;
    gap: 20px;
    margin-bottom: 20px;
  }

  .mega-footer .footer-legal {
    flex-direction: column-reverse;
    gap: 20px;
    margin: 0;
  }
}

/* --- MOBILE TWEAKS (WhatsApp Only + Border Hide) --- */
@media (max-width: 992px) {

  /* Border'ı gizle */
  .ft-right::before {
    display: none;
    border: none;
  }

  /* Sadece WhatsApp hizalaması ve genişliği */
  .wa-section-right {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-inline: auto;
    margin-top: 30px;
    /* Mobilde üstten biraz boşluk iyi durur */
  }

  /* WhatsApp görselini Phone genişliğine (400px) sabitler */
  .wa-section-right img,
  .wa-section-right .lib-img {
    width: 100% !important;
    max-width: 400px !important;
    height: auto;
    display: block;
  }
}