/* ── TOKENS ── */
:root {
  --bg: #e8f4f2;
  --bg-alt: #dff0ee;
  --surface: #f4fafa;
  --surface-2: #ffffff;
  --accent: #00516e;
  --accent-mid: #006a8f;
  --accent-light: #63babc;
  --accent-ghost: rgba(26, 122, 110, 0.08);
  --accent-border: rgba(26, 122, 110, 0.15);
  --text-1: #102220;
  --text-2: #3a5c58;
  --text-3: #6b8c88;
  --border: rgba(13, 30, 28, 0.08);
  --shadow-sm: 0 2px 12px rgba(13, 30, 28, 0.06);
  --shadow-md: 0 8px 32px rgba(13, 30, 28, 0.1);
  --shadow-lg: 0 24px 64px rgba(13, 30, 28, 0.13);
  --silk: cubic-bezier(0.16, 1, 0.3, 1);
  --silk-dur: 0.8s;
  --radius: 16px;
  --radius-lg: 24px;
}

/* Temel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, Helvetica, Arial, Sans-Serif, serif;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

body {
  margin: 0;
}

/*  ══════════════════════════════════════════
       TOP BAR
    ══════════════════════════════════════════ */
.top-bar {
  background-image: url(banner1.jpg);
  color: #fff;
  font-size: 14px;
  padding: 7px 0;
}

.contact-info {
  width: 85%;
}

.contact-info span {
  margin-right: 10px;
}

.contact-info span a {
  padding-left: 10px;
}

.social-links {
  width: 15%;
  text-align: right;
}

.social-links a {
  color: #fff;
  transition: 0.3s;
  font-size: 17px;
}

.social-links a:hover {
  color: #dacccc;
}

.top-container {
  width: 65%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-container {
  width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mid-container {
  padding: 20px;
  max-width: 600px;
}
/*  ══════════════════════════════════════════
       HEADER
    ══════════════════════════════════════════ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.4s ease-in-out;
}

.header-hidden {
  transform: translateY(-100%); /* Aşağı kaydırınca yukarı gizlenir */
}

/*  ══════════════════════════════════════════
       NAV
    ══════════════════════════════════════════ */
.navbar {
  background: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.logo {
  width: 17%;
  align-items: center;
}

.logo-img {
  height: 50px; /* Logonun yüksekliğini buradan ayarla */
  width: auto; /* Oranı korumak için genişliği otomatiğe bırak */
  display: block; /* Altındaki boşlukları temizler */
  transition: 0.3s; /* Hover animasyonu için */
}

.logo a {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.nav-container {
  display: flex;
  width: 66%;
  text-align: right;
  justify-content: center;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
  transition: 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: #00516e;
}

.search {
  background: white;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  border: 1px solid #444;
  width: 17%;
  visibility: hidden;
}
/*  ══════════════════════════════════════════
       HAMBURGER NAV
    ══════════════════════════════════════════ */
.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #333;
  transition: 0.4s;
}
/*  ══════════════════════════════════════════
       UTLITY
    ══════════════════════════════════════════ */
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-ghost);
  border: 1px solid var(--accent-border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-label::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.section-title {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-1);
}
.section-title em {
  font-style: italic;
  font-family: "Playfair Display", serif;
  color: var(--accent);
}
.section-sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 520px;
  margin-top: 16px;
}
/*  ══════════════════════════════════════════
       HERO
    ══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background-image: url(bg4.jpg);
  background-position: center;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
}
/* Decorative background circles */
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55vw;
  height: 55vw;
  max-width: 720px;
  max-height: 720px;
  background: radial-gradient(
    ellipse at center,
    rgba(91, 191, 181, 0.18) 0%,
    rgba(42, 157, 143, 0.06) 50%,
    transparent 75%
  );
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 40vw;
  height: 40vw;
  max-width: 500px;
  max-height: 500px;
  background: radial-gradient(
    ellipse at center,
    rgba(26, 122, 110, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
.hero-badge span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-2);
}
.hero-badge strong {
  color: var(--accent);
}
.hero-title {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-1);
}
.hero-title em {
  font-style: italic;
  font-family: "Playfair Display", serif;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary-lg {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 14px 32px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background var(--silk-dur) var(--silk),
    transform var(--silk-dur) var(--silk),
    box-shadow var(--silk-dur) var(--silk);
  box-shadow: 0 6px 24px rgba(26, 122, 110, 0.3);
}
.btn-primary-lg:hover {
  background: var(--accent-mid);
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(26, 122, 110, 0.4);
}
.btn-primary-lg .btn-arrow {
  transition: transform 0.4s var(--silk);
}
.btn-primary-lg:hover .btn-arrow {
  transform: translateX(4px);
}
.btn-outline-lg {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--accent);
  border: 1.5px solid var(--accent-border);
  padding: 13px 28px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.4s var(--silk), border-color 0.4s var(--silk),
    transform var(--silk-dur) var(--silk);
}
.btn-outline-lg:hover {
  background: var(--accent-ghost);
  border-color: var(--accent);
  transform: scale(1.02);
}

/* Trust badges */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-3);
  font-weight: 500;
}
.trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}
.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-dashboard {
  width: 100%;
  max-width: 520px;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform var(--silk-dur) var(--silk);
}
.hero-dashboard:hover {
  transform: scale(1.01);
}
.dashboard-bar {
  background: var(--bg-alt);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.db-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.db-dot:nth-child(1) {
  background: #ff5f57;
}
.db-dot:nth-child(2) {
  background: #ffbd2e;
}
.db-dot:nth-child(3) {
  background: #28ca41;
}
.dashboard-body {
  padding: 24px;
}
.db-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.db-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-1);
}
.db-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-ghost);
  border: 1px solid var(--accent-border);
  padding: 3px 10px;
  border-radius: 100px;
}
.db-chart {
  height: 80px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 20px;
}
.db-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--accent-ghost);
  border: 1px solid var(--accent-border);
  transition: height 1s var(--silk);
}
.db-bar.active {
  background: var(--accent);
  border-color: var(--accent);
}
.db-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.db-stat {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 14px;
  border: 1px solid var(--border);
}
.db-stat-val {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.03em;
}
.db-stat-label {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 2px;
}
.db-stat-change {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
}

/* Floating badge on hero visual */
.hero-float-badge {
  position: absolute;
  bottom: -16px;
  left: -24px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.float-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}
.float-badge-text {
  font-size: 0.75rem;
}
.float-badge-text strong {
  display: block;
  font-weight: 700;
  color: var(--text-1);
}
.float-badge-text span {
  color: var(--text-3);
}

.hero-float-badge-2 {
  position: absolute;
  top: 20px;
  right: -20px;
  background: var(--accent);
  border-radius: var(--radius);
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(26, 122, 110, 0.35);
  animation: floatBadge2 4s ease-in-out 2s infinite;
}
@keyframes floatBadge2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.float-badge-2-val {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
}
.float-badge-2-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}
/*  ══════════════════════════════════════════
        LOGO TICKER
    ══════════════════════════════════════════ */
.ticker-section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  position: relative;
}
.ticker-label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
  margin-bottom: 28px;
}
.ticker-track-wrap {
  overflow: hidden;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-3);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.3s;
}
.ticker-item:hover {
  color: var(--accent);
}
.ticker-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent-ghost);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-light);
  flex-shrink: 0;
  opacity: 0.5;
}

/*  ══════════════════════════════════════════
       FEATURES
    ══════════════════════════════════════════ */
.features-section {
  padding: 70px 0;
}
.features-header {
  text-align: center;
  margin-bottom: 80px;
}
.features-header .section-sub {
  margin: 16px auto 0;
  text-align: center;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  margin-bottom: 100px;
}
.feature-row:last-child {
  margin-bottom: 0;
}
.feature-row.reverse {
  direction: rtl;
}
.feature-row.reverse > * {
  direction: ltr;
}

.feature-number {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}
.feature-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-1);
}
.feature-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 28px;
  text-align: justify;
}
.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-2);
}
.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-ghost);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
}

.feature-visual {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform var(--silk-dur) var(--silk),
    box-shadow var(--silk-dur) var(--silk);
}
.feature-visual:hover {
  transform: scale(1.015);
  box-shadow: var(--shadow-lg);
}
.feature-visual-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.featurebg {
  width: 100%; /* Div'in genişliği (İstediğiniz değeri verebilirsiniz) */
  height: 100%; /* Div'in yüksekliği (İstediğiniz değeri verebilirsiniz) */
  background-color: #f0f0f0; /* Resim yüklenirken arkada görünecek hafif gri ton */

  /* İçindeki resmi ortalamak için Flexbox */
  display: flex;
  justify-content: center; /* Yatayda ortalar */
  align-items: center; /* Dikeyde ortalar */
  overflow: hidden; /* Taşan kısımlar olursa gizler */
}
.featurebg img {
  width: 100%; /* Resmin genişliğini div kadar yapar */
  height: 100%; /* Resmin yüksekliğini div kadar yapar */
  object-fit: fill;
  background: var(--surface);
}
.fv-row {
  display: flex;
  gap: 12px;
}
.fv-card {
  flex: 1;
  background: var(--surface-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.fv-card-label {
  font-size: 0.72rem;
  color: var(--text-3);
  font-weight: 500;
  margin-bottom: 6px;
}
.fv-card-val {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.03em;
}
.fv-card-bar {
  height: 4px;
  border-radius: 2px;
  margin-top: 10px;
  background: var(--bg);
  overflow: hidden;
}
.fv-card-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--accent);
}
.fv-wide {
  flex: 2;
}
.fv-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fv-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--bg);
  border-radius: 8px;
  font-size: 0.8rem;
}
.fv-list-name {
  color: var(--text-2);
  font-weight: 500;
}
.fv-pill {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}
.fv-pill.green {
  background: rgba(26, 122, 110, 0.12);
  color: var(--accent);
}
.fv-pill.blue {
  background: rgba(42, 157, 143, 0.12);
  color: var(--accent-mid);
}
.fv-pill.dim {
  background: var(--border);
  color: var(--text-3);
}

/*  ══════════════════════════════════════════
        FAQ
    ══════════════════════════════════════════ */
.faq-section {
  padding: 70px 0;
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-sidebar {
  position: sticky;
  top: 100px;
}
.faq-sidebar .section-sub {
  margin-top: 16px;
  margin-bottom: 32px;
}
.faq-toggle-all {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s;
}
.faq-toggle-all:hover {
  opacity: 0.75;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  gap: 16px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-1);
  transition: color 0.3s;
}
.faq-question:hover {
  color: var(--accent);
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  font-weight: 300;
  transition: transform 0.5s var(--silk), background 0.4s, color 0.4s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--silk);
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-answer-inner {
  overflow: hidden;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-2);
  padding-bottom: 0;
  transition: padding-bottom 0.5s var(--silk);
}
.faq-item.open .faq-answer-inner {
  padding-bottom: 20px;
}



.footer {
  padding: 2rem 1.5rem;
  background-image: url(footerbg.png);
  height: auto;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 175px;
  border-style: none;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
}

.col {
  flex: 1;
  width: 100%;
  height: auto;
  justify-content: center;
  padding: 16px 24px;
}

.footer-brand p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.footer-brand .logo {
  width: 150px;
  padding-bottom: 10px;
}

.footer-heading {
  font-size: 1em;
  text-transform: uppercase;
  line-height: 1, 4;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 1rem;
}

.footer-links {
  height: auto;

  .fa-solid,
  .fab {
    font-size: 30px;
    color: #00516e;
  }
}

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

.footer-links ul li p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.footer-links li {
  margin-bottom: 0.75rem;
  align-items: center;
  display: flex;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
}

.footer-links a {
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

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

.modern-divider {
  border: none;
  height: 1px;
  background-color: #000000;
  margin: 10px 0;
  width: 100%;
  opacity: 0.15;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  } /* Mobilde top barı sadeleştir */

  .hamburger {
    display: block;
  }

  .search {
    display: none;
  }

  h1 {
    font-size: 2.2rem;
  }

  .nav-links {
    position: fixed;
    right: -100%;
    top: 85px;
    height: 100vh;
    flex-direction: column;
    background: #fff;
    width: 100%;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .footer-container {
    display: block;
  }

  .footer-brand {
    justify-content: center;
    text-align: center;
    align-items: center;
  }
}

/* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }
  .feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-row.reverse {
    direction: ltr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stat-card:last-child {
    border-bottom: none;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-inner {
    flex-direction: column;
    padding: 56px 40px;
  }
  .faq-inner {
    grid-template-columns: 1fr;
  }
  .faq-sidebar {
    position: static;
  }
}
@media (max-width: 768px) {
  .carousel-zoom {
    padding: 30px 0 0;
  }
  .container {
    padding: 0 20px;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card.tall {
    grid-row: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    padding: 40px 24px;
  }
  .pricing-grid {
    max-width: 100%;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-float-badge-2 {
    right: 0;
  }
  /* Carousel mobile */
  .carousel-stage {
    height: 400px;
  }
  :root {
    --pw: 150px;
    --gap1: 168px;
    --gap2: 300px;
    --gap-hide: 430px;
  }
  .phone-card[data-pos="left2"],
  .phone-card[data-pos="right2"] {
    opacity: 0.35;
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-trust {
    gap: 12px;
  }
  .trust-divider {
    display: none;
  }
}
