/* =========================
   GLOBAL
========================= */
:root {
  --bg: #0b0b0b;
  --surface: #151515;
  --surface-2: #1d1d1d;
  --text: #ffffff;
  --muted: #c9c9c9;
  --line: #2a2a2a;
  --accent: #c9a74e;
  --accent-text: #111111;
  --max: 1120px;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

section {
  padding: 80px 0;
}

#contact {
  padding-bottom: 40px;
}

/* =========================
   BRAND
========================= */
.brand {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  transition: transform 0.25s ease;
  display: inline-flex;
  align-items: center;
  letter-spacing: -0.5px;
  gap: 10px; /* 🔥 bunu düşürdük */
}

.brand-logo {
  height: 28px !important;
  width: auto !important;
  object-fit: contain;
  display: block;
  transform: translateY(1px);
}

.brand .dot {
  color: var(--accent);
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-text);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 35px rgba(201, 167, 78, 0.25);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--surface);
}

/* =========================
   NAVBAR
========================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(11, 11, 11, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease, border-color 0.25s ease;
}

.nav.scrolled {
  background: rgba(11, 11, 11, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
  transition: min-height 0.25s ease;
  position: relative;
}

.nav.scrolled .nav-inner {
  min-height: 64px;
}

.nav.scrolled .brand {
  transform: scale(0.96);
}

.nav.scrolled .nav-links a {
  opacity: 0.95;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--muted);
  font-size: 15px;
  position: relative;
}

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

.nav-links a.active {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(201, 167, 78, 0.4);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.lang-switch {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.lang-switch:hover {
  color: var(--accent);
}

.logo img {
  height: 38px;
  width: auto;
  display: block;
}

/* =========================
   MOBILE MENU
========================= */
.menu-toggle {
  display: none;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 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);
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  padding: 72px 0 40px;
}

.hero-strong {
  font-weight: 600;
  font-size: 19px;
  line-height: 1.6;
  color: var(--text);
  max-width: 620px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 167, 78, 0.15), transparent 70%);
  top: -100px;
  left: -100px;
  z-index: 0;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.hero-location {
  font-size: 13px;
  color: #9f9f9f;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.hero-location::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
}

.hero-content {
  padding-top: 80px;
  transform: none;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(212, 175, 55, 0.08);
  font-size: 14px;
  font-weight: 700;
}

h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.02;
  margin: 0 0 18px;
  max-width: 12ch;
  letter-spacing: -1px;
}

.hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 20px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 26px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-metrics {
  display: grid;
  gap: 14px;
}

.metric {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric strong {
  display: block;
  font-size: 28px;
  margin-bottom: 4px;
}

.metric span {
  color: var(--muted);
  font-size: 14px;
}

.user-location {
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 14px;
  color: #9a9a9a;

  margin-bottom: 16px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;

  box-shadow: 0 0 6px rgba(74, 222, 128, 0.6);
}

.metric-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
}

.metric-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(201,167,78,0.08);
  border: 1px solid rgba(201,167,78,0.2);

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative; /* EKLENDİ */
}

.metric-icon svg {
  width: 20px;
  height: 20px;
  display: block;

  position: relative;
  top: 0.5px; /* micro optical fix */
}

.metric-copy strong {
  display: block;
  font-size: 24px;
  margin-bottom: 6px;
}

.metric-copy span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.hero-card .metric:hover .metric-icon {
  transform: translateY(-2px) scale(1.04);
  background: rgba(201,167,78,0.14);
  border-color: rgba(201,167,78,0.3);
  box-shadow: 0 8px 20px rgba(201,167,78,0.12);
}

.panel-title {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  opacity: 0.95;
}

.metric-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.metric-head strong {
  display: block;
  font-size: 22px;
  margin: 0;
}

.icon-shell {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(201,167,78,0.10), rgba(201,167,78,0.04));
  border: 1px solid rgba(201,167,78,0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 8px 24px rgba(0,0,0,0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.icon-shell svg {
  width: 21px;
  height: 21px;
  stroke: var(--accent);
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.metric:hover .icon-shell {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(201,167,78,0.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 12px 32px rgba(0,0,0,0.28),
    0 0 0 1px rgba(201,167,78,0.08);
}

/* =========================
   CLIENT STRIP
========================= */

.client-logo-marquee {
  width: 100%;
  max-width: 560px;
  height: 90px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 6px;
}

.client-logo-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: logoScroll 24s linear infinite;
  will-change: transform;
}

.client-logo-track img {
  height: 58px;
  width: auto;
  max-width: 180px;

  display: block;
  flex: 0 0 auto;

  object-fit: contain;
  opacity: 1;
  filter: none !important;
}

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

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

.client-logo-marquee::before,
.client-logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.client-logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, #050505, transparent);
}

.client-logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, #050505, transparent);
}
/* =========================
   HERO CARD RIGHT BENEFIT
========================= */

.hero-benefit-card {
  position: absolute;
  z-index: 10;
  right: -160px;
  top: 50%;
  transform: translateY(-50%);

  width: 230px;
  padding: 26px 24px;
  border-radius: 28px;

  background: rgba(18, 18, 18, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.45);

  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);

  z-index: 5;
}

.hero-benefit-card div {
  margin-bottom: 22px;
}

.hero-benefit-card div:last-child {
  margin-bottom: 0;
}

.hero-benefit-card strong {
  display: block;
  color: #d4af37;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 5px;
}

.hero-benefit-card span {
  display: block;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .hero-benefit-card {
    display: none;
  }
}
/* =========================
   HERO CARD RIGHT
========================= */
.hero-right {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  min-height: 520px;
   position: relative;
   padding-top: 20px;
   margin-top: -110px;

}

.hero-phone-image {
  width: 460px !important;
  max-width: none !important;
  height: auto !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 3 !important;

}

@media (max-width: 768px) {
  .hero-right {
    display: none !important;
  }

}

  .hero-left {
    width: 100%;
    max-width: 100%;
  }
}


/* =========================
   COMMON SECTIONS
========================= */
.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.5px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  opacity: 0.8;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 20px;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 24px;
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.2);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

/* =========================
   TRUST / STATS
========================= */
.trust-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(201, 167, 78, 0.08);
  border: 1px solid rgba(201, 167, 78, 0.2);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

.stats {
  padding-top: 24px;
}

.stat {
  text-align: center;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 26px 18px;
}

.stat strong {
  display: block;
  font-size: 34px;
  margin-bottom: 8px;
  color: var(--accent);
}

/* =========================
   POSITIONING
========================= */
.positioning {
  padding-top: 60px;
}

.positioning .section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.positioning .section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.5px;
}

.positioning .section-head p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
}

.positioning .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.positioning .positioning-card {
  min-width: 0;
}

.positioning-card {
  background: linear-gradient(180deg, #161616, #101010);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.25s ease;
  text-align: center;
}

.positioning-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.positioning-card:hover .icon-shell {
  transform: translateY(-4px) scale(1.05);
  background: rgba(201,167,78,0.15);
}

.positioning-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 167, 78, 0.25);
}

.positioning-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.positioning-card p {
  color: var(--muted);
  font-size: 15px;
}

/* =========================
   FEATURE ICONS FIRST SECTION
========================= */
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201, 167, 78, 0.08);
  border: 1px solid rgba(201, 167, 78, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: 0.25s ease;
}

.positioning-card:hover .feature-icon {
  transform: translateY(-2px) scale(1.06);
  background: rgba(201, 167, 78, 0.15);
  border-color: rgba(201, 167, 78, 0.3);
  box-shadow: 0 8px 20px rgba(201, 167, 78, 0.15);
}

.feature-icon svg {
  transition: transform 0.3s ease;
}

.positioning-card:hover .feature-icon svg {
  transform: rotate(8deg) scale(1.1);
}

/* =========================
   DIFFERENCE SECTION
========================= */
.difference-section {
  padding-top: 70px;
}

.difference-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.difference-panel,
.difference-visual {
  background: linear-gradient(180deg, #161616, #101010);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 22px;
}

.difference-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.045);
  border-radius: 14px;
  margin-bottom: 22px;
}

.diff-tab {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.diff-tab.active {
  background: rgba(201, 167, 78, 0.12);
  color: var(--accent);
}

.difference-company {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 18px;
}

.difference-company-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201, 167, 78, 0.14);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.difference-company p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.difference-metrics {
  display: none;
  gap: 12px;
}

.difference-metrics.active {
  display: grid;
}

.difference-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.difference-metric span {
  color: var(--text);
  font-weight: 600;
}

.difference-metric strong {
  min-width: 64px;
  text-align: center;
  padding: 7px 12px;
  border-radius: 10px;
  font-size: 15px;
}

.metric-bad {
  background: rgba(180, 50, 50, 0.18);
  color: #ff8c8c;
}

.metric-good {
  background: rgba(70, 150, 60, 0.18);
  color: #9cff7c;
}

.difference-map {
  display: none;
}

.difference-map.active {
  display: block;
}

.map-background {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 520px;
  border-radius: 20px;
  background-image: url('/images/map-bg.jpg');
  background-size: cover;
  background-position: center;
}

.map-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
}

.map-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(10, 34px);
  gap: 6px;
  justify-content: center;
  align-content: center;
  z-index: 1;
  padding: 20px;
}

.map-grid span {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
  padding: 0;
  box-sizing: border-box;
}

.dot-red {
  background: #d83a2e;
  color: #ffffff;
}

.dot-green {
  background: #79e34f;
  color: #111111;
}

.map-attribution {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 1;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.35);
  padding: 4px 8px;
  border-radius: 999px;
}

/* =========================
   HOW IT WORKS SECTION
========================= */
#process .section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

#process .process-vertical {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 40px;
  width: 100%;
}

#process .process-vertical::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: rgba(201, 167, 78, 0.2);
}

#process .process-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 16px;
  position: relative;
  width: 100%;
}

#process .process-step::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 2px;
  height: calc(100% + 22px);
  background: linear-gradient(to bottom, var(--accent), rgba(201, 167, 78, 0.15));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s ease;
  z-index: 1;
}

#process .process-step.visible-step::before {
  transform: scaleY(1);
}

#process .process-step:last-child::before {
  display: none;
}

#process .process-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border-radius: 10px;
  background: #0b0b0b;
  border: 1px solid rgba(201, 167, 78, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  z-index: 2;
  transition: 0.25s ease;
  padding: 0;
  line-height: 0;
  position: relative;
}

#process .process-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

#process .process-content {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, #151515, #111);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px 28px;
  transition: 0.25s ease;
  min-width: 0;
}

#process .process-inline {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}

#process .process-inline strong {
  display: inline-flex;
  align-items: baseline;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.25s ease;
}

#process .process-inline span:first-child {
  opacity: 0.5;
  margin-right: 4px;
}

#process .process-step:hover .process-icon {
  transform: scale(1.08);
  background: rgba(201, 167, 78, 0.1);
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(201, 167, 78, 0.22);
}

#process .process-step:hover .process-inline strong {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(201, 167, 78, 0.4);
}

#process .process-step:hover .process-content {
  transform: translateY(-3px);
  border-color: rgba(201, 167, 78, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

#process .process-step:hover .process-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 14px;
  border: 1px solid rgba(201, 167, 78, 0.22);
  animation: iconPulse 1.2s ease-out infinite;
}

/* =========================
   LISTS / PRICING
========================= */
.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.list li + li {
  margin-top: 8px;
}

#pricing .section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.pricing-pill-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.pricing-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(201, 167, 78, 0.08);
  border: 1px solid rgba(201, 167, 78, 0.2);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

#pricing .pricing-grid,
#pricing .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

#pricing .pricing-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
}

#pricing .pricing-actions {
  margin-top: auto;
}

.pricing-card.featured {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.12);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.plan-label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.price {
  font-size: 40px;
  font-weight: 800;
  margin: 8px 0 12px;
}

.price small {
  font-size: 16px;
  color: var(--muted);
  font-weight: 400;
}

.plan-meta {
  color: var(--muted);
  font-size: 14px;
  margin-top: -4px;
  margin-bottom: 18px;
}

.plan-copy {
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 18px;
}

.plan-visibility {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.starter-visibility {
  background: rgba(201, 167, 78, 0.12);
  color: #f0d27a;
}

.growth-visibility {
  background: rgba(80, 170, 90, 0.16);
  color: #9fe38b;
}

.dominate-visibility {
  background: rgba(120, 120, 255, 0.14);
  color: #b6b8ff;
}

.pricing-actions .btn {
  width: 100%;
  text-align: center;
}

.plan-trust {
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(201,167,78,0.08);
  border: 1px solid rgba(201,167,78,0.18);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.plan-anchor {
  margin-top: -4px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

/* =========================
   FAQ
========================= */
.faq-pill-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.faq-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #151515, #101010);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.25s ease;
}

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: 0.3s ease;
}

.faq-item:hover::before,
.faq-item[open]::before {
  background: var(--accent);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  background: transparent;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 26px 22px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item:hover {
  border-color: rgba(201, 167, 78, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(201, 167, 78, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

/* =========================
   CONTACT / FORM
========================= */
.cta-box {
  background: linear-gradient(180deg, #181818, #121212);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  padding: 38px;
  text-align: center;
}

.cta-box h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
}

.cta-box p {
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 24px;
}

.lead-form {
  max-width: 760px;
  margin: 24px auto 20px;
  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #101010;
  color: white;
  font: inherit;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #8e8e8e;
}

.lead-form textarea {
  margin-bottom: 16px;
  resize: vertical;
}

.lead-form button {
  cursor: pointer;
}

.selected-plan {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(201, 167, 78, 0.08);
  border: 1px solid rgba(201, 167, 78, 0.2);
  color: var(--text);
  font-size: 14px;
}

.hidden {
  display: none;
}

/* =========================
   MODAL
========================= */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal.hidden {
  display: none;
}

.modal-card {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(180deg, #161616, #101010);
  border: 1px solid rgba(201, 167, 78, 0.2);
  border-radius: 24px;
  padding: 36px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.modal-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 28px;
}

.modal-card p {
  margin: 0 0 20px;
  color: var(--muted);
}

.success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(201, 167, 78, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin: 0 auto 20px;
  animation: pop 0.4s ease;
}

@keyframes pop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes iconPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

/* =========================
   REVEAL ANIMATION
========================= */
.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

html.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item[open] p {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
/* =========================
   FOOTER
========================= */
footer {
  padding: 28px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  color: var(--muted);
  font-size: 14px;
}

.footer-left,
.footer-right {
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-right {
    text-align: left !important;
  }

  .footer-right div[style*="justify-content:flex-end"] {
    justify-content: flex-start !important;
  }
}
      
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px; /* yakın ama yapışık değil */
  margin-bottom: 6px;
}

.footer-logo {
  height: 18px;
  width: auto;
  object-fit: contain;
}

.footer-title {
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
  font-size: 15px;
}

.footer-title .dot {
  color: #c9a74e;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .difference-wrap,
  .positioning .grid-3 {
    grid-template-columns: 1fr;
  }

  #pricing .pricing-grid,
  #pricing .grid-3 {
    grid-template-columns: 1fr;
  }
   
  .form-grid {
    grid-template-columns: 1fr;
  }

  .map-background {
    min-height: 420px;
  }

  .map-grid {
    grid-template-columns: repeat(7, 30px);
    gap: 6px;
  }

  .map-grid span {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    font-size: 11px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 16px;
  }

  .nav-links.active {
    display: flex;
  }
}

/* =========================
   Global highlight class
========================= */

.highlight {
  font-family: 'Great Vibes', cursive;
  color: var(--accent);
  font-weight: 400;
  display: inline-block;
}

.section-head h2 .highlight {
  font-size: 1.3em;
}

.highlight::after {
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 6px;
  background: rgba(201,167,78,0.2);
  z-index: -1;
  border-radius: 4px;
}

/* =========================
   APPLY FORM
========================= */
.apply-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: start;
}

.apply-page {
  padding-top: 40px;
}

.apply-form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  background: #0d0d0d;
  color: white;
}

.apply-plan .plan-card {
  background: #111;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #2a2a2a;
}

.apply-plan .price {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 18px;
}

.apply-plan ul {
  margin: 0;
  padding-left: 20px;
}

.apply-plan li {
  margin-bottom: 8px;
}

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

  .apply-form,
  .apply-plan {
    max-width: 100%;
  }
}

.apply-plan .plan-badge {
  background: rgba(80,170,90,0.2);
  color: #9fe38b;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  margin: 0 0 16px;
}

.apply-plan .plan-desc {
  margin: 0 0 16px;
  color: var(--text);
  line-height: 1.45;
}

.apply-plan .plan-card h3 {
  margin: 16px 0 10px;
  font-size: 18px;
}

.plan-badge {
  background: rgba(80,170,90,0.2);
  color: #9fe38b;
  padding: 10px;
  border-radius: 10px;
  font-size: 14px;
  margin: 16px 0;
}

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

.apply-form {
  max-width: 560px;
}

.apply-title {
  margin: 0 0 18px;
  line-height: 1.1;
  letter-spacing: -0.4px;
}

.apply-title-light {
  font-weight: 600;
}

.apply-title-strong {
  font-weight: 800;
  letter-spacing: -0.8px;
}

.apply-sub {
  color: var(--text);
  letter-spacing: 0.2px;
  line-height: 1.55;
  margin: 0 0 22px;
}

.apply-sub strong {
  letter-spacing: 0.25px;
}

.input-group {
  margin-bottom: 14px;
}

.input-group label {
  display: block;
  font-size: 13px;
  color: #9a9a9a;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}


.input-group input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  background: #0d0d0d;
  color: white;
}

.apply-form .btn {
  margin-top: 8px;
}

.apply-plan {
  width: 100%;
  max-width: 360px;
}

.apply-back-wrap {
  margin-bottom: 14px;
}

.apply-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 15px;
  text-decoration: none;
  transition: 0.2s ease;
}

.apply-back:hover {
  color: var(--accent);
}

.apply-back-arrow {
  font-size: 20px;
  line-height: 1;
}

.apply-title-icon {
  color: var(--accent);
  margin-right: 8px;
}

.full-btn {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  font-size: 15px;
}

/* =========================
   THANK YOU PAGE
========================= */
.thankyou-page {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  padding: 72px 0 36px;
}

.thankyou-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 36px 38px;
  background: linear-gradient(180deg, #151515, #101010);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.38);
}

.thankyou-check-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
}

.thankyou-check-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,167,78,0.18), rgba(201,167,78,0.04));
  border: 1px solid rgba(201,167,78,0.16);
  animation: thankyouPulse 2.2s ease-in-out infinite;
}

.thankyou-check {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: rgba(201,167,78,0.1);
  border: 1px solid rgba(201,167,78,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(201,167,78,0.08);
}

.thankyou-check-svg {
  width: 52px;
  height: 52px;
  transform: rotate(-90deg);
}

.thankyou-check-circle {
  stroke: rgba(201,167,78,0.24);
  stroke-width: 1.5;
}

.thankyou-check-path {
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCheck 0.7s ease forwards 0.2s;
  transform: rotate(90deg);
  transform-origin: center;
}

.thankyou-eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.thankyou-title {
  margin: 0 0 16px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 0.95;
  letter-spacing: -1px;
  text-align: center;
}

.thankyou-title-script {
  display: block;
  font-family: 'Great Vibes', cursive;
  color: var(--accent);
  font-weight: 400;
  line-height: 0.95;
  margin-top: 6px;
}

.thankyou-text {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

.thankyou-accent {
  margin: 0 0 24px;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}

.thankyou-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin: 0 0 20px;
  color: #9d9d9d;
  font-size: 14px;
  text-align: center;
}

.thankyou-loading span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: loadingDots 1.2s infinite ease-in-out;
}

.thankyou-loading span:nth-child(2) {
  animation-delay: 0.15s;
}

.thankyou-loading span:nth-child(3) {
  animation-delay: 0.3s;
}

.thankyou-btn {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  justify-content: center;
  display: inline-flex;
}

.thankyou-footer {
  padding: 0 0 24px;
}

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

@keyframes thankyouPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes loadingDots {
  0%, 80%, 100% {
    transform: scale(0.7);
    opacity: 0.35;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .thankyou-page {
    min-height: auto;
    padding: 56px 0 28px;
  }

  .thankyou-card {
    padding: 38px 22px 30px;
  }

  .thankyou-title {
    line-height: 1;
  }
}
/* =========================
   Google font
========================= */

..google-font {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: -0.5px;
  opacity: 0.95;
}
