/*
Theme Name: TezYaptir Özel Tema
Description: Dijiloft tarafından özel olarak kodlanmış, inanılmaz hızlı kurumsal tema.
Author: Dijiloft
Version: 1.0
*/

/* ═══════════════════════════════════════
   PREMIUM TOKENS (CREDIO FINTECH STYLE)
═══════════════════════════════════════ */
:root {
  --bg-light: #f8fafc;
  --bg-dark: #0f172a;
  --bg-surface: #ffffff;
  --bg-surface-hover: #f1f5f9;
  --primary: #ff5e14;
  --primary-dark: #e0480b;
  --primary-hover: #ea580c;
  --primary-glow: rgba(255, 94, 20, 0.25);
  --secondary: #0bcad4;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --border-light: rgba(255, 255, 255, 0.15);
  --border-focus: rgba(255, 94, 20, 0.3);
  --font-heading: 'Inter', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --shadow-float: 0 20px 40px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-light);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Utilities */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 202, 212, 0.1);
  border: 1px solid rgba(11, 202, 212, 0.2);
  color: var(--secondary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tag-dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--secondary);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.sec-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 20px 0;
  letter-spacing: -0.3px;
}

.sec-title span {
  color: var(--primary);
}

.sec-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.8;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: var(--text-light);
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px var(--primary-glow);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 94, 20, 0.4);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 17px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(255, 94, 20, 0.05);
  color: var(--primary);
}

/* Header & Topbar */
.topbar {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-left {
  display: flex;
  gap: 24px;
}

.topbar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-right a {
  color: var(--secondary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.topbar-right a:hover {
  color: var(--text-light);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.3px;
}

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

.nav-links {
  display: flex;
  gap: 36px;
}

.mobile-only {
  display: none;
}


/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--text-main);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


.nav-links a {
  color: var(--text-main);
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s;
}

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

.nav-cta {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 12px 28px;
  border-radius: 50px;
  color: var(--text-main);
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-cta:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}

/* Hero */
.hero {
  position: relative;
  padding: 30px 0 50px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
  top: -100px;
  right: -100px;
  filter: blur(60px);
  opacity: 0.8;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-content h1 .text-primary {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hf-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hf-item svg {
  color: var(--primary);
}

.hero-visual {
  position: relative;
}

.main-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: var(--shadow-float);
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.main-card:hover {
  transform: translateY(-10px);
}

.float-badge {
  position: absolute;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-float);
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}

.fb-1 {
  top: -30px;
  right: -40px;
}

.fb-2 {
  bottom: -40px;
  left: -50px;
  animation-delay: -3s;
}

.fb-icon {
  width: 48px;
  height: 48px;
  background: rgba(11, 202, 212, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fb-text h5 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}

.fb-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Stats Bar */
.stats-wrap {
  position: relative;
  margin-top: -35px;
  z-index: 10;
  padding: 0 5%;
}

.stats-inner {
  max-width: 1440px;
  margin: 0 auto;
  background: #0f172a;
  border-radius: 20px;
  padding: 60px 48px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.stat-box {
  flex: 1;
  min-width: 200px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services */
.services {
  padding: 70px 0;
  background: var(--bg-surface);
}

.services-head {
  text-align: center;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.serv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.scard {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.scard:hover {
  transform: translateY(-8px);
  border-color: var(--border-focus);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.sc-number {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  transition: color 0.4s;
  z-index: 1;
}

.scard:hover .sc-number {
  color: rgba(255, 94, 20, 0.1);
}

.scard-content {
  position: relative;
  z-index: 2;
}

.sc-icon {
  width: 64px;
  height: 64px;
  background: rgba(11, 202, 212, 0.1);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s;
  color: var(--secondary);
}

.scard:hover .sc-icon {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}

.scard h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 14px;
  margin-top: 0;
}

.scard p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.7;
  min-height: 80px;
}

.scard-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.scard:hover .scard-link {
  color: var(--primary);
  gap: 12px;
}

/* Why Us */
.why {
  padding: 70px 0;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.why .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.why-stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ws-card {
  position: relative;
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.ws-card:hover {
  transform: translateX(10px);
}

.ws-card.dark {
  background: #0f172a;
  color: #fff;
}

.ws-card.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 20px 40px rgba(255, 94, 20, 0.2);
}

.ws-bg-num {
  position: absolute;
  right: 20px;
  bottom: -15px;
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.05;
  pointer-events: none;
}

.ws-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ws-card.dark .ws-icon {
  background: rgba(255, 255, 255, 0.05);
  color: var(--secondary);
}

.ws-card.primary .ws-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.ws-content h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 0;
}

.ws-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* Process */
.process {
  padding: 70px 0;
  background: var(--bg-light);
  position: relative;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 80px;
}

.process-line {
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-line-active {
  position: absolute;
  top: 40px;
  left: 10%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), transparent);
  z-index: 1;
}

.pstep {
  text-align: center;
  position: relative;
  z-index: 2;
}

.pnum {
  width: 80px;
  height: 80px;
  background: var(--bg-surface);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  transition: all 0.4s;
  box-shadow: var(--shadow-card);
}

.pnum:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 10px 30px var(--primary-glow);
}

.pstep h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--text-main);
}

.pstep p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Vertical Process Connection Lines */
.pv-step {
  position: relative;
}

.pv-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  /* 54px ikonun yarısı */
  top: 60px;
  /* İkonun altından başla */
  height: calc(100% - 28px);
  /* Bir sonraki ikona kadar uzat */
  width: 2px;
  background-image: linear-gradient(to bottom, var(--primary) 50%, rgba(255, 255, 255, 0) 0%);
  background-position: right;
  background-size: 2px 10px;
  background-repeat: repeat-y;
  opacity: 0.4;
  z-index: 0;
}

.pv-icon {
  position: relative;
  z-index: 1;
}

/* Pricing/Features Banner */
.pricing {
  padding: 70px 0;
  background: var(--bg-light);
}

.feat-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, #1d1d1d 0%, #29bcc8 100%);
  border-radius: 24px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.fb-col {
  padding: 40px 30px;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  border-radius: 20px;
}

.fb-col:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: scale(1.05) translateY(-5px);
  z-index: 5;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.fb-col:last-child {
  border-right: none;
}

.fb-col .fb-icon {
  color: var(--primary);
  margin-bottom: 24px;
  display: inline-flex;
}

.fb-col h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.4;
  margin-top: 0;
}

.fb-col p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.fb-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  margin: -15px 0;
  border-radius: 20px;
  padding: 55px 30px;
  box-shadow: 0 25px 50px rgba(255, 94, 20, 0.3);
  z-index: 2;
  border-right: none;
  transform: scale(1.02);
  transition: all 0.3s ease;
}

.fb-highlight:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 30px 60px rgba(255, 94, 20, 0.4);
}

.fb-highlight .fb-icon,
.fb-highlight h4,
.fb-highlight p {
  color: #fff;
}

.price-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-float);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

/* FAQ */
.faq {
  padding: 70px 0;
  background: var(--bg-surface);
}

.faq-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--border-focus);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 32px;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 32px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-a {
  display: block;
}

/* Footer */
.foot-contact-bar {
  background: var(--primary);
  padding: 50px 0;
}

.foot-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

.foot-contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.foot-contact-item h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px 0;
}

.foot-contact-item p,
.foot-contact-item a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

footer {
  background: var(--bg-surface);
  padding: 80px 0 30px;
  color: var(--text-muted);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 50px;
  margin-bottom: 60px;
}

.foot-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin: 0 0 24px 0;
  font-weight: 700;
  color: var(--text-main);
}

.foot-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.foot-col a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.foot-col a::before {
  content: '→';
  color: var(--primary);
  opacity: 0.8;
  font-size: 0.85rem;
}

.foot-col a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.foot-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.foot-contact-info li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.foot-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

/* Floating WhatsApp */
.float-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s;
  animation: waPulse 2s infinite;
  color: #fff;
}

.float-wa:hover {
  transform: scale(1.1);
  color: #fff;
}

.elementor img {
  border-radius: 20px !important;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .topbar-left {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 3.5rem;
    margin-inline: auto;
  }

  .why .container {
    grid-template-columns: 1fr;
  }

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

  .process-line {
    display: none;
  }

  .feat-banner {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }

  .fb-highlight {
    margin: 0;
    border-radius: 0;
  }

  .foot-contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 40px;
    gap: 0;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease;
    z-index: 1000;
    display: none;
    /* Boşluk ve taşma yapmaması için tamamen gizle */
    overflow-y: auto;
    transform: translateX(100%);
    opacity: 0;
  }

  .nav-links.active {
    display: flex;
    transform: translateX(0);
    opacity: 1;
  }

  .mobile-only {
    display: block;
    width: 100%;
    text-align: center;
  }

  .mobile-menu-top {
    margin-bottom: 40px;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links li a {
    display: block;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    text-align: center;
    transition: color 0.3s;
  }

  .nav-links li a:active {
    color: var(--primary);
  }

  .nav-links .mobile-only li {
    border-bottom: none;
  }

  .nav-cta.web {
    display: none;
  }

  /* Mobile CTA Button Reset */
  .nav-links .nav-cta {
    display: flex !important;
    margin: 30px auto 0;
    width: 100%;
    max-width: 280px;
    height: 55px;
    background: var(--primary);
    color: #fff !important;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 25px var(--primary-glow);
  }

  .nav-cta svg {
    margin-left: 10px;
    stroke: #fff;
  }

  .nav-links.active .nav-cta {
    animation: fadeInUp 0.5s ease forwards 0.3s;
    opacity: 0;
  }

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

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

  /* Footer and other mobile tweaks */
  .stats-inner {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }

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

  .feat-banner {
    grid-template-columns: 1fr;
  }

  .fb-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

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

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .float-wa {
    bottom: 60px !important;
    right: 20px;
    width: 68px;
    height: 68px;
  }
}