/* ==========================================================================
   MEOMAPS — Design tokens
   ========================================================================== */
:root {
  --gold:          #F5A623;
  --gold-hover:    #D4901E;
  --gold-tint:     #FFF8EB;
  --navy:          #1A1A2E;
  --navy-mid:      #2D2D4A;

  --white:         #FFFFFF;
  --off-white:     #FAFAFA;
  --gray-bg:       #F0F0F5;
  --gray-border:   #E8E8EE;
  --gray-text:     #666666;
  --gray-muted:    #999999;

  --whatsapp:      #25D366;
  --whatsapp-hover:#1EBE5A;
  --success:       #2ECC71;
  --error:         #E74C3C;

  --page-bg:       #FAFAFA;

  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   12px;
  --space-base: 16px;
  --space-lg:   24px;
  --space-xl:   32px;
  --space-2xl:  48px;
  --space-3xl:  64px;
  --space-4xl:  80px;
  --space-5xl:  100px;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  20px;
  --radius-3xl:  24px;
  --radius-full: 999px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--page-bg);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-hover);
  margin-bottom: var(--space-base);
}
.eyebrow-dark { color: var(--gold); }

.h1 {
  font-weight: 700;
  font-size: clamp(30px, 4.5vw, 52px);
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: var(--space-base);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Wordmark
   ========================================================================== */
.wordmark { font-weight: 700; font-size: 20px; letter-spacing: -0.5px; }
.wordmark-meo { color: var(--navy); }
.wordmark-meo-dark { color: var(--white); }
.wordmark-maps { color: var(--gold); }
.wordmark-footer { font-size: 26px; margin-bottom: var(--space-sm); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 8px 20px -8px rgba(37, 211, 102, 0.5);
}
.btn-whatsapp:hover { background: var(--whatsapp-hover); box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.6); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 20px -8px rgba(245, 166, 35, 0.4);
}
.btn-gold:hover { background: var(--gold-hover); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gray-border);
  color: var(--navy);
}
.btn-outline:hover { border-color: var(--navy); }

.btn-sm { padding: 10px 16px; font-size: 13px; }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-full { width: 100%; }

.icon-wa { width: 18px; height: 18px; flex-shrink: 0; }
.icon-check { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* ==========================================================================
   Section 1 — Nav bar
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  padding: 10px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 48px; width: auto; object-fit: contain; }
.nav-logo .wordmark { font-size: 22px; }
.nav-links { display: flex; gap: var(--space-lg); }
.nav-links a {
  font-weight: 500;
  font-size: 14px;
  color: var(--navy);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--gold); }

@media (max-width: 1024px) {
  .nav-links { display: none; }
}

/* ==========================================================================
   Section 2 — Hero
   ========================================================================== */
.hero {
  background: var(--off-white);
  padding: 60px 6vw 100px;
}
.hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--white);
  border: 1px solid var(--gray-border);
  padding: 6px 12px;
  border-radius: var(--radius-full);
}
.pulse-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,204,113,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(46,204,113,0); }
}

.display {
  font-weight: 800;
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--navy);
  margin-top: var(--space-base);
  margin-bottom: var(--space-lg);
}
.display .highlight {
  position: relative;
  white-space: nowrap;
}
.display .highlight::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 0.3em;
  background: var(--gold);
  opacity: 0.3;
  z-index: -1;
}

.hero-sub {
  font-weight: 400;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray-text);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-md); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.hero-verticals { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--space-lg); }
.hero-verticals .badge-tint { margin-bottom: 0; }
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-text);
}

.mock-outer {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-3xl);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.mock-outer::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  opacity: 0.15;
}
.mock-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--gray-muted);
  margin-bottom: var(--space-base);
  position: relative;
}
.mock-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.wa-frame {
  background: #E5DDD5;
  border-radius: var(--radius-xl);
  padding: 20px 16px;
  position: relative;
}
.wa-header {
  background: #075E54;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin: -20px -16px 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.wa-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.wa-avatar svg { width: 17px; height: 17px; }
.wa-online-dot {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  border: 2px solid #075E54;
}
.wa-name { color: var(--white); font-weight: 600; font-size: 14px; }
.wa-status { color: rgba(255,255,255,0.75); font-size: 11px; }

.wa-messages { display: flex; flex-direction: column; gap: var(--space-sm); }

.bubble {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--navy);
  line-height: 1.4;
  position: relative;
  opacity: 0;
  transform: translateY(8px);
  animation: bubbleIn 0.4s ease-out forwards;
  animation-delay: var(--d);
}
.bubble-in { background: var(--white); align-self: flex-start; border-radius: 4px var(--radius-md) var(--radius-md) var(--radius-md); box-shadow: 0 1px 2px rgba(0,0,0,0.08); }
.bubble-out { background: #D9FDD3; align-self: flex-end; border-radius: var(--radius-md) 4px var(--radius-md) var(--radius-md); box-shadow: 0 1px 2px rgba(0,0,0,0.08); }
.bubble-time {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  font-size: 10px;
  color: #667781;
  margin-top: 4px;
}
.bubble-time .tick { width: 15px; height: 10px; flex-shrink: 0; }
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bubble-typing {
  align-self: flex-start;
  background: var(--white);
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 4px var(--radius-md) var(--radius-md) var(--radius-md);
}
.bubble-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gray-muted);
  animation: typingPulse 1.2s infinite;
}
.bubble-typing span:nth-child(2) { animation-delay: 0.2s; }
.bubble-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingPulse {
  0%, 60%, 100% { opacity: 0.3; }
  30% { opacity: 1; }
}

/* ==========================================================================
   Section 3 — Problem
   ========================================================================== */
.problem {
  background: var(--navy);
  color: var(--white);
  padding: 100px 6vw;
  position: relative;
  overflow: hidden;
}
.problem::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.problem-inner { max-width: 1400px; margin: 0 auto; position: relative; }
.problem .h1 { color: var(--white); }
.problem-sub { color: rgba(255,255,255,0.7); max-width: 640px; margin-bottom: var(--space-2xl); font-size: 16px; line-height: 1.6; }

.problem-row {
  display: grid;
  grid-template-columns: 44px 1.6fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s ease;
}
.problem-row:first-child { border-top: 1px solid rgba(255,255,255,0.12); }
.problem-row:hover { background: rgba(255,255,255,0.03); }
.quote-mark { color: var(--gold); font-size: 40px; line-height: 1; font-weight: 700; align-self: start; }
.quote { font-weight: 500; font-size: 18px; line-height: 1.4; }
.problem-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  opacity: 0.85;
  justify-self: start;
}
.tag-pin {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  transform: rotate(-45deg);
}

/* ==========================================================================
   Section 4 — Services
   ========================================================================== */
.services { background: var(--off-white); padding: 100px 6vw; max-width: 1400px; margin: 0 auto; }
.services-sub { color: var(--gray-text); max-width: 640px; margin-bottom: var(--space-2xl); font-size: 16px; line-height: 1.6; }

.service-row {
  display: grid;
  grid-template-columns: 60px 1fr 1.5fr;
  gap: var(--space-xl);
  padding: 36px 0;
  border-bottom: 1px solid var(--gray-border);
  align-items: baseline;
}
.service-row:first-of-type { border-top: 1px solid var(--gray-border); }
.service-num { font-weight: 500; font-size: 13px; color: var(--gold-hover); letter-spacing: 2px; }
.service-title { font-weight: 600; font-size: 22px; color: var(--navy); }
.service-desc { font-weight: 400; font-size: 16px; color: var(--gray-text); line-height: 1.6; }
.service-desc b { color: var(--navy); font-weight: 500; }

/* ==========================================================================
   Section 5 — Process
   ========================================================================== */
.process { background: var(--gray-bg); padding: 100px 6vw; }
.process-sub { color: var(--gray-text); max-width: 640px; margin-bottom: var(--space-2xl); font-size: 16px; line-height: 1.6; }
.process-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}
.process-card { background: var(--white); border-radius: var(--radius-2xl); padding: 32px 28px; position: relative; }
.process-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--gold);
  box-shadow: 0 6px 14px -6px rgba(245, 166, 35, 0.6);
}
.process-pin span {
  transform: rotate(45deg);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
}
.process-title { font-weight: 600; font-size: 18px; color: var(--navy); margin-bottom: var(--space-sm); }
.process-desc { font-size: 15px; color: var(--gray-text); line-height: 1.5; }
.duration-badge {
  display: inline-block;
  background: var(--gray-bg);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 11px;
  color: var(--navy);
  letter-spacing: 1px;
  margin-top: 14px;
}

/* ==========================================================================
   Section 6 — Pricing
   ========================================================================== */
.pricing { background: var(--off-white); padding: 100px 6vw; max-width: 1400px; margin: 0 auto; }
.pricing-sub { color: var(--gray-text); margin-bottom: var(--space-2xl); font-size: 16px; }

.pricing-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: stretch;
}

.tier-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-2xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tier-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px -12px rgba(26,26,46,0.1); }

.tier-featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  overflow: hidden;
}
.tier-featured::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.12;
}
.tier-ribbon {
  position: absolute;
  top: 24px;
  right: 24px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.badge-tint {
  display: inline-block;
  font-weight: 500;
  font-size: 11px;
  color: var(--gold-hover);
  background: var(--gold-tint);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-base);
  align-self: flex-start;
}
.price-value { font-weight: 700; font-size: 40px; color: var(--navy); letter-spacing: -1.5px; margin-bottom: var(--space-sm); position: relative; }
.tier-featured .price-value { color: var(--white); }
.price-vat { font-size: 16px; font-weight: 600; color: var(--gray-muted); letter-spacing: 0; }
.tier-featured .price-vat { color: rgba(255,255,255,0.6); }
.price-note { font-size: 14px; color: var(--gray-text); margin-bottom: var(--space-lg); line-height: 1.5; position: relative; }
.tier-featured .price-note { color: rgba(255,255,255,0.7); }
.tier-includes {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: var(--space-md);
  position: relative;
}

.price-list { flex-grow: 1; margin-bottom: var(--space-xl); position: relative; }
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: 10px 0;
  border-bottom: 1px dashed var(--gray-border);
  font-size: 14px;
  color: var(--navy);
}
.tier-featured .price-list li { color: var(--white); border-bottom-color: rgba(255,255,255,0.15); }
.price-list li:last-child { border-bottom: none; }
.price-list .icon-check { margin-top: 3px; }
.tier-card .btn { position: relative; }

/* ==========================================================================
   Section 7 — Compare
   ========================================================================== */
.compare { background: var(--off-white); padding: 100px 6vw; max-width: 1400px; margin: 0 auto; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
.compare-col { border-radius: var(--radius-2xl); padding: 32px 28px; }
.compare-them { background: var(--white); border: 1px solid var(--gray-border); }
.compare-us { background: var(--navy); color: var(--white); }
.compare-header { font-weight: 500; font-size: 11px; text-transform: uppercase; color: var(--gray-muted); margin-bottom: var(--space-base); }
.compare-header-us { color: var(--gold); }
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-border);
  font-size: 15px;
  color: var(--gray-text);
}
.compare-us .compare-list li { border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--white); }
.compare-list li:last-child { border-bottom: none; }
.mark { width: 20px; height: 20px; flex-shrink: 0; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; line-height: 1; }
.mark-x { background: rgba(231,76,60,0.15); color: var(--error); }
.mark-check { background: var(--gold); color: var(--white); }

/* ==========================================================================
   Section 8 — FAQ
   ========================================================================== */
.faq { background: var(--off-white); padding: 100px 6vw; max-width: 900px; margin: 0 auto; }
.faq-sub { color: var(--gray-text); margin-bottom: var(--space-2xl); font-size: 16px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  margin-bottom: var(--space-md);
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.faq-item:hover, .faq-item[open] { border-color: var(--navy); }
.faq-item summary {
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-weight: 400;
  font-size: 24px;
  color: var(--navy);
  transition: transform 0.2s ease;
  margin-left: var(--space-base);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; font-weight: 400; font-size: 15px; color: var(--gray-text); line-height: 1.6; }
.faq-item p b { font-weight: 500; color: var(--navy); }

/* ==========================================================================
   Section 8.5 — İletişim / Adres
   ========================================================================== */
.contact { background: var(--off-white); padding: 100px 6vw; max-width: 1400px; margin: 0 auto; }
.contact-sub { color: var(--gray-text); max-width: 640px; margin-bottom: var(--space-2xl); font-size: 16px; line-height: 1.6; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  align-items: stretch;
}

.contact-info {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-2xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.contact-row { display: flex; align-items: flex-start; gap: var(--space-md); }
.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 19px; height: 19px; }
.contact-label { font-weight: 500; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-muted); margin-bottom: 4px; }
.contact-value { display: block; font-weight: 500; font-size: 15px; color: var(--navy); line-height: 1.5; }
a.contact-value:hover { color: var(--gold-hover); }

.contact-map {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--gray-border);
  min-height: 320px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ==========================================================================
   Section 9 — Final CTA
   ========================================================================== */
.final-cta {
  background: var(--navy);
  padding: 100px 6vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.final-cta-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  opacity: 0.15;
}
.final-cta .h1 { color: var(--white); position: relative; }
.final-cta-sub { color: rgba(255,255,255,0.7); font-size: 18px; margin-bottom: var(--space-xl); position: relative; }
.final-cta .btn { position: relative; }

/* ==========================================================================
   Section 10 — Footer
   ========================================================================== */
.footer { background: #141425; padding: 60px 6vw 40px; }
.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer-brand { max-width: 320px; }
.footer-logo-chip {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 10px;
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 14px -4px rgba(0,0,0,0.3);
}
.footer-logo-img { height: 44px; width: auto; object-fit: contain; display: block; }
.footer-slogan { font-weight: 500; font-size: 10px; text-transform: uppercase; color: var(--gray-muted); opacity: 0.6; letter-spacing: 1px; margin-bottom: var(--space-base); }
.footer-desc { font-size: 14px; color: var(--gray-muted); opacity: 0.7; line-height: 1.6; }
.footer-col-title { font-weight: 600; font-size: 14px; color: var(--white); margin-bottom: var(--space-base); }
.footer-col { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-col a { font-size: 14px; color: var(--gray-muted); opacity: 0.7; transition: opacity 0.15s ease, color 0.15s ease; }
.footer-col a:hover { opacity: 1; color: var(--gold); }
.footer-address { font-size: 14px; color: var(--gray-muted); opacity: 0.7; line-height: 1.5; }

.footer-bottom {
  max-width: 1400px;
  margin: var(--space-xl) auto 0;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gray-muted);
  opacity: 0.5;
}
.footer-legal-link:hover { opacity: 1; text-decoration: underline; }

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.4);
  animation: waPulse 3s infinite;
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.05); }
.wa-float svg { width: 28px; height: 28px; color: var(--white); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.4); }
  50%      { box-shadow: 0 8px 32px 0 rgba(37, 211, 102, 0.7); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .compare-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 260px; }
}

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

@media (max-width: 640px) {
  .problem, .services, .process, .pricing, .compare, .faq, .contact, .final-cta {
    padding: 56px 5vw;
  }
  .hero { padding: 32px 5vw 56px; }
  .footer { padding: 48px 5vw 32px; }
  .nav { padding-left: 5vw; padding-right: 5vw; }
  .display { font-size: 36px; }
  .nav { gap: var(--space-sm); }
  .nav-logo-img { height: 32px; }
  .nav-logo .wordmark { font-size: 17px; }
  .nav .btn-sm { padding: 8px 12px; font-size: 12px; }
  .hero-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: var(--space-sm); }
  .problem-row { grid-template-columns: 1fr; gap: var(--space-sm); padding: 24px 0; }
  .quote-mark { font-size: 32px; }
  .tier-card { padding: 28px 24px; }
  .compare-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: var(--space-xl); }
}

/* ==========================================================================
   Legal page (KVKK / Gizlilik / İptal-İade)
   ========================================================================== */
.legal-back {
  display: inline-block;
  margin: var(--space-lg) 6vw 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-hover);
}
.legal-back:hover { text-decoration: underline; }
.legal-page { background: var(--off-white); padding: 40px 6vw 100px; max-width: 900px; margin: 0 auto; }
.legal-updated { font-size: 13px; color: var(--gray-muted); margin-bottom: var(--space-2xl); }
.legal-page h2 {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.5px;
  color: var(--navy);
  margin: var(--space-3xl) 0 var(--space-base);
}
.legal-page section:first-of-type h2 { margin-top: 0; }
.legal-page h3 { font-weight: 600; font-size: 17px; color: var(--navy); margin: var(--space-lg) 0 var(--space-sm); }
.legal-page p { font-size: 15px; line-height: 1.75; color: var(--gray-text); margin-bottom: var(--space-base); }
.legal-page ul { list-style: disc; padding-left: 1.3em; margin-bottom: var(--space-lg); }
.legal-page ul li { font-size: 15px; line-height: 1.7; color: var(--gray-text); margin-bottom: var(--space-sm); }
.legal-page a.inline-link { color: var(--gold-hover); text-decoration: underline; }

@media (max-width: 640px) {
  .legal-page { padding: 24px 5vw 64px; }
  .legal-page h2 { font-size: 22px; }
}
