/*
Theme Name: EkositemAPP
Theme URI: https://ekositemapp.com
Author: EkositemAPP Proje Ekibi
Author URI: https://ekositemapp.com
Description: Apartman ve site yönetimi SaaS platformu için özel olarak tasarlanmış modern WordPress teması. Türkçe içerikli, KVKK uyumlu, mobil-öncelikli, Core Web Vitals optimize edilmiş.
Version: 1.1.0
Requires at least: 6.4
Tested up to: 6.5
Requires PHP: 8.1
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ekositem-app
Domain Path: /languages
Tags: saas, business, landing-page, blog, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, threaded-comments, translation-ready, rtl-language-support
*/

/* ==========================================================================
   DESIGN TOKENS (CSS Custom Properties)
   ========================================================================== */
:root {
  /* Brand Colors */
  --eko-primary: #1F4E79;
  --eko-primary-dark: #163958;
  --eko-primary-light: #2E74B5;
  --eko-accent: #0EA5E9;
  --eko-success: #10B981;
  --eko-warning: #F59E0B;
  --eko-danger: #EF4444;

  /* Neutrals */
  --eko-white: #FFFFFF;
  --eko-gray-50: #F9FAFB;
  --eko-gray-100: #F3F4F6;
  --eko-gray-200: #E5E7EB;
  --eko-gray-300: #D1D5DB;
  --eko-gray-400: #9CA3AF;
  --eko-gray-500: #6B7280;
  --eko-gray-600: #4B5563;
  --eko-gray-700: #374151;
  --eko-gray-800: #1F2937;
  --eko-gray-900: #111827;

  /* Typography */
  --eko-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --eko-font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --eko-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, 'Cascadia Mono', 'Roboto Mono', monospace;

  /* Type Scale */
  --eko-text-xs: 0.75rem;     /* 12px */
  --eko-text-sm: 0.875rem;    /* 14px */
  --eko-text-base: 1rem;      /* 16px */
  --eko-text-lg: 1.125rem;    /* 18px */
  --eko-text-xl: 1.25rem;     /* 20px */
  --eko-text-2xl: 1.5rem;     /* 24px */
  --eko-text-3xl: 1.875rem;   /* 30px */
  --eko-text-4xl: 2.25rem;    /* 36px */
  --eko-text-5xl: 3rem;       /* 48px */
  --eko-text-6xl: 3.75rem;    /* 60px */

  /* Spacing */
  --eko-space-1: 0.25rem;
  --eko-space-2: 0.5rem;
  --eko-space-3: 0.75rem;
  --eko-space-4: 1rem;
  --eko-space-5: 1.25rem;
  --eko-space-6: 1.5rem;
  --eko-space-8: 2rem;
  --eko-space-10: 2.5rem;
  --eko-space-12: 3rem;
  --eko-space-16: 4rem;
  --eko-space-20: 5rem;
  --eko-space-24: 6rem;
  --eko-space-32: 8rem;

  /* Layout */
  --eko-container: 1200px;
  --eko-container-narrow: 800px;
  --eko-container-wide: 1400px;

  /* Borders & Radius */
  --eko-radius-sm: 0.25rem;
  --eko-radius: 0.5rem;
  --eko-radius-md: 0.75rem;
  --eko-radius-lg: 1rem;
  --eko-radius-xl: 1.5rem;
  --eko-radius-full: 9999px;

  /* Shadows */
  --eko-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --eko-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --eko-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --eko-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --eko-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Transitions */
  --eko-transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --eko-transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --eko-z-dropdown: 100;
  --eko-z-sticky: 200;
  --eko-z-modal: 1000;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: var(--eko-font-sans);
  font-size: var(--eko-text-base);
  line-height: 1.6;
  color: var(--eko-gray-800);
  background-color: var(--eko-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--eko-font-display);
  color: var(--eko-gray-900);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--eko-space-4);
  letter-spacing: -0.02em;
}

h1 { font-size: var(--eko-text-5xl); }
h2 { font-size: var(--eko-text-4xl); }
h3 { font-size: var(--eko-text-2xl); }
h4 { font-size: var(--eko-text-xl); }
h5 { font-size: var(--eko-text-lg); }
h6 { font-size: var(--eko-text-base); }

p { margin: 0 0 var(--eko-space-4); }

a {
  color: var(--eko-primary);
  text-decoration: none;
  transition: color var(--eko-transition);
}
a:hover { color: var(--eko-primary-dark); }
a:focus-visible { outline: 2px solid var(--eko-accent); outline-offset: 2px; border-radius: var(--eko-radius-sm); }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--eko-primary);
  color: var(--eko-white);
  padding: var(--eko-space-3) var(--eko-space-4);
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 0; color: var(--eko-white); }

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.eko-container {
  width: 100%;
  max-width: var(--eko-container);
  margin: 0 auto;
  padding: 0 var(--eko-space-6);
}

.eko-container-narrow { max-width: var(--eko-container-narrow); margin: 0 auto; padding: 0 var(--eko-space-6); }
.eko-container-wide { max-width: var(--eko-container-wide); margin: 0 auto; padding: 0 var(--eko-space-6); }

.eko-section { padding: var(--eko-space-20) 0; }
.eko-section--sm { padding: var(--eko-space-12) 0; }
.eko-section--lg { padding: var(--eko-space-32) 0; }

.eko-section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--eko-space-12);
}
.eko-section-title__eyebrow {
  display: inline-block;
  font-size: var(--eko-text-sm);
  font-weight: 600;
  color: var(--eko-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--eko-space-3);
}
.eko-section-title__heading {
  font-size: var(--eko-text-4xl);
  margin-bottom: var(--eko-space-4);
}
.eko-section-title__desc {
  font-size: var(--eko-text-lg);
  color: var(--eko-gray-600);
  margin: 0;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.eko-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--eko-space-2);
  padding: var(--eko-space-3) var(--eko-space-6);
  border-radius: var(--eko-radius-md);
  font-size: var(--eko-text-base);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--eko-transition);
  white-space: nowrap;
}

.eko-btn--primary {
  background: var(--eko-primary);
  color: var(--eko-white);
}
.eko-btn--primary:hover { background: var(--eko-primary-dark); color: var(--eko-white); transform: translateY(-1px); box-shadow: var(--eko-shadow-md); }

.eko-btn--secondary {
  background: var(--eko-white);
  color: var(--eko-primary);
  border-color: var(--eko-gray-200);
}
.eko-btn--secondary:hover { background: var(--eko-gray-50); border-color: var(--eko-primary); color: var(--eko-primary-dark); }

.eko-btn--ghost {
  background: transparent;
  color: var(--eko-primary);
}
.eko-btn--ghost:hover { background: var(--eko-gray-50); color: var(--eko-primary-dark); }

.eko-btn--lg { padding: var(--eko-space-4) var(--eko-space-8); font-size: var(--eko-text-lg); }
.eko-btn--sm { padding: var(--eko-space-2) var(--eko-space-4); font-size: var(--eko-text-sm); }

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.eko-header {
  position: sticky;
  top: 0;
  z-index: var(--eko-z-sticky);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--eko-gray-200);
}

.eko-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--eko-space-6);
  padding: var(--eko-space-4) 0;
}

.eko-logo {
  display: flex;
  align-items: center;
  gap: var(--eko-space-2);
  font-size: var(--eko-text-2xl);
  font-weight: 800;
  color: var(--eko-primary);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.eko-logo:hover { color: var(--eko-primary-dark); }
.eko-logo__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--eko-primary);
  color: var(--eko-white);
  border-radius: var(--eko-radius);
  font-size: 18px;
}

.eko-nav {
  display: flex;
  align-items: center;
  gap: var(--eko-space-2);
}

.eko-nav__list {
  display: flex;
  list-style: none;
  gap: var(--eko-space-2);
  margin: 0;
  padding: 0;
}

.eko-nav__link {
  display: inline-block;
  padding: var(--eko-space-2) var(--eko-space-4);
  color: var(--eko-gray-700);
  font-weight: 500;
  border-radius: var(--eko-radius);
  transition: all var(--eko-transition);
}
.eko-nav__link:hover { color: var(--eko-primary); background: var(--eko-gray-50); }

.eko-header__cta {
  display: flex;
  align-items: center;
  gap: var(--eko-space-2);
}

.eko-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: var(--eko-space-2);
  cursor: pointer;
  color: var(--eko-gray-700);
}

@media (max-width: 991px) {
  .eko-nav__list { display: none; }
  .eko-nav-toggle { display: inline-flex; }
  .eko-header__cta .eko-btn--ghost { display: none; }

  .eko-nav--open .eko-nav__list {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--eko-white);
    padding: var(--eko-space-4);
    border-bottom: 1px solid var(--eko-gray-200);
    box-shadow: var(--eko-shadow-lg);
  }
  .eko-nav--open .eko-nav__link { padding: var(--eko-space-3); border-radius: var(--eko-radius); }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.eko-hero {
  position: relative;
  padding: var(--eko-space-24) 0 var(--eko-space-20);
  background:
    radial-gradient(circle at 20% 0%, rgba(14, 165, 233, 0.08), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(31, 78, 121, 0.08), transparent 50%),
    var(--eko-gray-50);
  overflow: hidden;
}

.eko-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--eko-space-12);
  align-items: center;
}

.eko-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--eko-space-2);
  padding: var(--eko-space-2) var(--eko-space-4);
  background: var(--eko-white);
  border: 1px solid var(--eko-gray-200);
  border-radius: var(--eko-radius-full);
  font-size: var(--eko-text-sm);
  font-weight: 500;
  color: var(--eko-gray-700);
  margin-bottom: var(--eko-space-6);
  box-shadow: var(--eko-shadow-sm);
}
.eko-hero__eyebrow-badge {
  background: var(--eko-success);
  color: var(--eko-white);
  font-size: var(--eko-text-xs);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--eko-radius-full);
}

.eko-hero__title {
  font-size: var(--eko-text-6xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--eko-space-6);
  color: var(--eko-gray-900);
}
.eko-hero__title .accent { color: var(--eko-primary); }

.eko-hero__desc {
  font-size: var(--eko-text-xl);
  color: var(--eko-gray-600);
  margin-bottom: var(--eko-space-8);
  max-width: 540px;
  line-height: 1.6;
}

.eko-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--eko-space-3);
  margin-bottom: var(--eko-space-8);
}

.eko-hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--eko-space-4);
  color: var(--eko-gray-600);
  font-size: var(--eko-text-sm);
}
.eko-hero__trust-item { display: inline-flex; align-items: center; gap: var(--eko-space-1); }

.eko-hero__visual {
  position: relative;
}

.eko-hero__mockup {
  background: var(--eko-white);
  border-radius: var(--eko-radius-xl);
  box-shadow: var(--eko-shadow-xl);
  overflow: hidden;
  border: 1px solid var(--eko-gray-200);
  transform: perspective(1500px) rotateY(-5deg) rotateX(2deg);
  transition: transform var(--eko-transition-slow);
}
.eko-hero__mockup:hover { transform: perspective(1500px) rotateY(-2deg) rotateX(1deg); }

.eko-hero__mockup-bar {
  display: flex;
  align-items: center;
  gap: var(--eko-space-2);
  padding: var(--eko-space-3) var(--eko-space-4);
  background: var(--eko-gray-100);
  border-bottom: 1px solid var(--eko-gray-200);
}
.eko-hero__mockup-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--eko-gray-300); }
.eko-hero__mockup-dot--red { background: #FF5F57; }
.eko-hero__mockup-dot--yellow { background: #FEBC2E; }
.eko-hero__mockup-dot--green { background: #28C840; }
.eko-hero__mockup-body { padding: var(--eko-space-6); }
.eko-hero__mockup-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--eko-space-3) var(--eko-space-4);
  background: var(--eko-gray-50);
  border-radius: var(--eko-radius);
  margin-bottom: var(--eko-space-3);
}
.eko-hero__mockup-stat-label { color: var(--eko-gray-600); font-size: var(--eko-text-sm); }
.eko-hero__mockup-stat-value { font-weight: 700; color: var(--eko-gray-900); }
.eko-hero__mockup-stat-value--ok { color: var(--eko-success); }
.eko-hero__mockup-stat-value--warn { color: var(--eko-warning); }

@media (max-width: 991px) {
  .eko-hero { padding: var(--eko-space-16) 0; }
  .eko-hero__grid { grid-template-columns: 1fr; }
  .eko-hero__title { font-size: var(--eko-text-5xl); }
  .eko-hero__mockup { transform: none; }
}
@media (max-width: 640px) {
  .eko-hero__title { font-size: var(--eko-text-4xl); }
  .eko-hero__desc { font-size: var(--eko-text-lg); }
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.eko-trust-bar {
  padding: var(--eko-space-12) 0;
  border-top: 1px solid var(--eko-gray-200);
  border-bottom: 1px solid var(--eko-gray-200);
  background: var(--eko-white);
}
.eko-trust-bar__label {
  text-align: center;
  color: var(--eko-gray-500);
  font-size: var(--eko-text-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--eko-space-6);
}
.eko-trust-bar__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--eko-space-12);
  align-items: center;
  color: var(--eko-gray-400);
  font-weight: 600;
  font-size: var(--eko-text-lg);
}
.eko-trust-bar__logo { opacity: 0.7; transition: opacity var(--eko-transition); }
.eko-trust-bar__logo:hover { opacity: 1; }

/* ==========================================================================
   FEATURES
   ========================================================================== */
.eko-features { background: var(--eko-white); }

.eko-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--eko-space-6);
}

.eko-feature-card {
  padding: var(--eko-space-8);
  background: var(--eko-white);
  border: 1px solid var(--eko-gray-200);
  border-radius: var(--eko-radius-lg);
  transition: all var(--eko-transition);
}
.eko-feature-card:hover {
  border-color: var(--eko-primary-light);
  transform: translateY(-4px);
  box-shadow: var(--eko-shadow-lg);
}

.eko-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--eko-primary), var(--eko-accent));
  color: var(--eko-white);
  border-radius: var(--eko-radius-md);
  margin-bottom: var(--eko-space-5);
  font-size: 24px;
}
.eko-feature-card__title {
  font-size: var(--eko-text-xl);
  margin-bottom: var(--eko-space-3);
}
.eko-feature-card__desc {
  color: var(--eko-gray-600);
  margin: 0;
  font-size: var(--eko-text-base);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .eko-features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .eko-features__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.eko-steps { background: var(--eko-gray-50); }

.eko-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--eko-space-8);
  position: relative;
}

.eko-step {
  text-align: center;
  position: relative;
}
.eko-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--eko-primary);
  color: var(--eko-white);
  font-size: var(--eko-text-2xl);
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto var(--eko-space-5);
  box-shadow: 0 0 0 8px rgba(31, 78, 121, 0.1);
}
.eko-step__title {
  font-size: var(--eko-text-xl);
  margin-bottom: var(--eko-space-3);
}
.eko-step__desc {
  color: var(--eko-gray-600);
  margin: 0;
}

@media (max-width: 768px) {
  .eko-steps__grid { grid-template-columns: 1fr; gap: var(--eko-space-10); }
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.eko-pricing { background: var(--eko-white); }

.eko-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--eko-space-6);
  max-width: 1000px;
  margin: 0 auto;
}

.eko-pricing-card {
  background: var(--eko-white);
  border: 1px solid var(--eko-gray-200);
  border-radius: var(--eko-radius-lg);
  padding: var(--eko-space-8);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--eko-transition);
}
.eko-pricing-card:hover {
  border-color: var(--eko-primary-light);
  box-shadow: var(--eko-shadow-md);
}

.eko-pricing-card--featured {
  border-color: var(--eko-primary);
  border-width: 2px;
  box-shadow: var(--eko-shadow-lg);
  transform: scale(1.03);
}
.eko-pricing-card--featured::before {
  content: 'En Popüler';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--eko-primary);
  color: var(--eko-white);
  padding: var(--eko-space-1) var(--eko-space-4);
  border-radius: var(--eko-radius-full);
  font-size: var(--eko-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.eko-pricing-card__name {
  font-size: var(--eko-text-2xl);
  margin-bottom: var(--eko-space-2);
}
.eko-pricing-card__desc {
  color: var(--eko-gray-600);
  margin-bottom: var(--eko-space-6);
  min-height: 48px;
}
.eko-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--eko-space-1);
  margin-bottom: var(--eko-space-2);
}
.eko-pricing-card__price-amount {
  font-size: var(--eko-text-5xl);
  font-weight: 800;
  color: var(--eko-gray-900);
  line-height: 1;
}
.eko-pricing-card__price-period {
  color: var(--eko-gray-500);
  font-size: var(--eko-text-base);
}
.eko-pricing-card__note {
  font-size: var(--eko-text-sm);
  color: var(--eko-gray-500);
  margin-bottom: var(--eko-space-6);
}
.eko-pricing-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--eko-space-8);
  flex: 1;
}
.eko-pricing-card__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--eko-space-2);
  padding: var(--eko-space-2) 0;
  color: var(--eko-gray-700);
  font-size: var(--eko-text-base);
}
.eko-pricing-card__list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--eko-success);
  color: var(--eko-white);
  border-radius: 50%;
  font-size: var(--eko-text-xs);
  font-weight: 700;
  margin-top: 2px;
}

@media (max-width: 991px) {
  .eko-pricing__grid { grid-template-columns: 1fr; }
  .eko-pricing-card--featured { transform: none; }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.eko-testimonials { background: var(--eko-gray-50); }

.eko-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--eko-space-6);
}

.eko-testimonial {
  background: var(--eko-white);
  border-radius: var(--eko-radius-lg);
  padding: var(--eko-space-8);
  box-shadow: var(--eko-shadow-sm);
  display: flex;
  flex-direction: column;
}
.eko-testimonial__stars { color: var(--eko-warning); font-size: var(--eko-text-lg); margin-bottom: var(--eko-space-4); letter-spacing: 2px; }
.eko-testimonial__quote {
  color: var(--eko-gray-700);
  font-size: var(--eko-text-base);
  line-height: 1.7;
  margin-bottom: var(--eko-space-6);
  flex: 1;
}
.eko-testimonial__author { display: flex; align-items: center; gap: var(--eko-space-3); }
.eko-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--eko-primary), var(--eko-accent));
  color: var(--eko-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.eko-testimonial__author-name { font-weight: 600; color: var(--eko-gray-900); font-size: var(--eko-text-base); margin: 0; }
.eko-testimonial__author-role { color: var(--eko-gray-500); font-size: var(--eko-text-sm); margin: 0; }

@media (max-width: 991px) { .eko-testimonials__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.eko-faq { background: var(--eko-white); }
.eko-faq__list { max-width: 800px; margin: 0 auto; }
.eko-faq-item {
  border-bottom: 1px solid var(--eko-gray-200);
  padding: var(--eko-space-2) 0;
}
.eko-faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--eko-space-4);
  padding: var(--eko-space-5) 0;
  cursor: pointer;
  font-weight: 600;
  font-size: var(--eko-text-lg);
  color: var(--eko-gray-900);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--eko-transition);
}
.eko-faq-item__question:hover { color: var(--eko-primary); }
.eko-faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--eko-gray-100);
  color: var(--eko-primary);
  font-weight: 700;
  transition: transform var(--eko-transition);
}
.eko-faq-item--open .eko-faq-item__icon { transform: rotate(45deg); }
.eko-faq-item__answer {
  display: none;
  padding-bottom: var(--eko-space-5);
  color: var(--eko-gray-600);
  line-height: 1.7;
}
.eko-faq-item--open .eko-faq-item__answer { display: block; }

/* ==========================================================================
   CTA STRIP
   ========================================================================== */
.eko-cta {
  padding: var(--eko-space-24) 0;
  background: linear-gradient(135deg, var(--eko-primary), var(--eko-primary-dark));
  color: var(--eko-white);
  text-align: center;
}
.eko-cta__title {
  color: var(--eko-white);
  font-size: var(--eko-text-4xl);
  margin-bottom: var(--eko-space-4);
}
.eko-cta__desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--eko-text-lg);
  margin-bottom: var(--eko-space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.eko-cta__buttons { display: flex; flex-wrap: wrap; gap: var(--eko-space-3); justify-content: center; }
.eko-cta .eko-btn--primary { background: var(--eko-white); color: var(--eko-primary); }
.eko-cta .eko-btn--primary:hover { background: var(--eko-gray-100); color: var(--eko-primary-dark); }
.eko-cta .eko-btn--secondary { background: transparent; color: var(--eko-white); border-color: rgba(255, 255, 255, 0.3); }
.eko-cta .eko-btn--secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--eko-white); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.eko-footer {
  background: var(--eko-gray-900);
  color: var(--eko-gray-300);
  padding: var(--eko-space-20) 0 var(--eko-space-8);
}
.eko-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--eko-space-12);
  margin-bottom: var(--eko-space-16);
}
.eko-footer__brand .eko-logo { color: var(--eko-white); margin-bottom: var(--eko-space-4); }
.eko-footer__brand-desc { color: var(--eko-gray-400); font-size: var(--eko-text-sm); margin-bottom: var(--eko-space-6); max-width: 320px; }
.eko-footer__col-title {
  color: var(--eko-white);
  font-size: var(--eko-text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--eko-space-4);
}
.eko-footer__list { list-style: none; padding: 0; margin: 0; }
.eko-footer__list li { margin-bottom: var(--eko-space-2); }
.eko-footer__list a {
  color: var(--eko-gray-400);
  font-size: var(--eko-text-sm);
  transition: color var(--eko-transition);
}
.eko-footer__list a:hover { color: var(--eko-white); }
.eko-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--eko-space-4);
  padding-top: var(--eko-space-8);
  border-top: 1px solid var(--eko-gray-800);
  font-size: var(--eko-text-sm);
  color: var(--eko-gray-500);
}
.eko-footer__bottom a { color: var(--eko-gray-400); }
.eko-footer__social {
  display: flex;
  gap: var(--eko-space-3);
}
.eko-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--eko-gray-800);
  color: var(--eko-gray-300);
  border-radius: 50%;
  transition: all var(--eko-transition);
}
.eko-footer__social a:hover { background: var(--eko-primary); color: var(--eko-white); }

@media (max-width: 991px) {
  .eko-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--eko-space-8); }
}
@media (max-width: 640px) {
  .eko-footer__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   BLOG / POST / PAGE
   ========================================================================== */
.eko-page-header {
  background: var(--eko-gray-50);
  padding: var(--eko-space-20) 0 var(--eko-space-12);
  text-align: center;
}
.eko-page-header__title { margin-bottom: var(--eko-space-3); }
.eko-page-header__desc { color: var(--eko-gray-600); font-size: var(--eko-text-lg); max-width: 720px; margin: 0 auto; }
.eko-breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--eko-space-2);
  margin-bottom: var(--eko-space-4);
  color: var(--eko-gray-500);
  font-size: var(--eko-text-sm);
}
.eko-breadcrumb a { color: var(--eko-gray-500); }
.eko-breadcrumb a:hover { color: var(--eko-primary); }

.eko-content {
  padding: var(--eko-space-16) 0;
  font-size: var(--eko-text-lg);
  line-height: 1.7;
  color: var(--eko-gray-700);
}
.eko-content h2 { margin-top: var(--eko-space-12); }
.eko-content h3 { margin-top: var(--eko-space-8); }
.eko-content img { border-radius: var(--eko-radius-md); margin: var(--eko-space-6) 0; }
.eko-content blockquote {
  border-left: 4px solid var(--eko-primary);
  padding: var(--eko-space-4) var(--eko-space-6);
  margin: var(--eko-space-6) 0;
  background: var(--eko-gray-50);
  border-radius: 0 var(--eko-radius) var(--eko-radius) 0;
  font-style: italic;
}
.eko-content code {
  background: var(--eko-gray-100);
  padding: 2px 6px;
  border-radius: var(--eko-radius-sm);
  font-size: 0.9em;
  font-family: var(--eko-font-mono);
}
.eko-content pre {
  background: var(--eko-gray-900);
  color: var(--eko-gray-100);
  padding: var(--eko-space-4);
  border-radius: var(--eko-radius-md);
  overflow-x: auto;
}

/* Blog grid */
.eko-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--eko-space-6);
}
.eko-post-card {
  background: var(--eko-white);
  border: 1px solid var(--eko-gray-200);
  border-radius: var(--eko-radius-lg);
  overflow: hidden;
  transition: all var(--eko-transition);
  display: flex;
  flex-direction: column;
}
.eko-post-card:hover { transform: translateY(-4px); box-shadow: var(--eko-shadow-md); border-color: var(--eko-primary-light); }
.eko-post-card__thumb { aspect-ratio: 16 / 9; background: var(--eko-gray-100); overflow: hidden; }
.eko-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.eko-post-card__body { padding: var(--eko-space-6); flex: 1; display: flex; flex-direction: column; }
.eko-post-card__meta { font-size: var(--eko-text-sm); color: var(--eko-gray-500); margin-bottom: var(--eko-space-2); }
.eko-post-card__title { font-size: var(--eko-text-xl); margin-bottom: var(--eko-space-2); }
.eko-post-card__title a { color: var(--eko-gray-900); }
.eko-post-card__title a:hover { color: var(--eko-primary); }
.eko-post-card__excerpt { color: var(--eko-gray-600); font-size: var(--eko-text-base); margin: 0 0 var(--eko-space-4); flex: 1; }
.eko-post-card__more { color: var(--eko-primary); font-weight: 600; font-size: var(--eko-text-sm); }

@media (max-width: 991px) { .eko-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .eko-blog-grid { grid-template-columns: 1fr; } }

/* Single post */
.eko-single { max-width: 760px; margin: 0 auto; }
.eko-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--eko-space-4);
  color: var(--eko-gray-500);
  font-size: var(--eko-text-sm);
  margin-bottom: var(--eko-space-8);
}

/* Pagination */
.eko-pagination {
  display: flex;
  justify-content: center;
  gap: var(--eko-space-2);
  margin-top: var(--eko-space-12);
}
.eko-pagination a, .eko-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--eko-space-3);
  background: var(--eko-white);
  border: 1px solid var(--eko-gray-200);
  border-radius: var(--eko-radius);
  color: var(--eko-gray-700);
  font-weight: 600;
  transition: all var(--eko-transition);
}
.eko-pagination a:hover { background: var(--eko-primary); border-color: var(--eko-primary); color: var(--eko-white); }
.eko-pagination .current { background: var(--eko-primary); border-color: var(--eko-primary); color: var(--eko-white); }

/* 404 */
.eko-404 {
  padding: var(--eko-space-32) 0;
  text-align: center;
}
.eko-404__code {
  font-size: 8rem;
  font-weight: 900;
  color: var(--eko-primary);
  line-height: 1;
  margin-bottom: var(--eko-space-4);
}
.eko-404__title { margin-bottom: var(--eko-space-4); }
.eko-404__desc { color: var(--eko-gray-600); font-size: var(--eko-text-lg); margin-bottom: var(--eko-space-8); }

/* Search form */
.eko-search-form {
  display: flex;
  gap: var(--eko-space-2);
  max-width: 400px;
  margin: 0 auto;
}
.eko-search-form input[type="search"] {
  flex: 1;
  padding: var(--eko-space-3) var(--eko-space-4);
  border: 1px solid var(--eko-gray-300);
  border-radius: var(--eko-radius);
  font-size: var(--eko-text-base);
}
.eko-search-form input[type="search"]:focus { outline: none; border-color: var(--eko-primary); box-shadow: 0 0 0 3px rgba(31, 78, 121, 0.1); }

/* ==========================================================================
   COMMENTS
   ========================================================================== */
.eko-comments { max-width: 760px; margin: var(--eko-space-12) auto 0; }
.eko-comments__title { margin-bottom: var(--eko-space-6); }
.eko-comments .comment-list { list-style: none; padding: 0; }
.eko-comments .comment { padding: var(--eko-space-5) 0; border-bottom: 1px solid var(--eko-gray-200); }
.eko-comments .comment-respond { margin-top: var(--eko-space-8); }
.eko-comments textarea, .eko-comments input[type="text"], .eko-comments input[type="email"], .eko-comments input[type="url"] {
  width: 100%;
  padding: var(--eko-space-3);
  border: 1px solid var(--eko-gray-300);
  border-radius: var(--eko-radius);
  font-size: var(--eko-text-base);
  margin-bottom: var(--eko-space-3);
}
.eko-comments textarea:focus, .eko-comments input:focus { outline: none; border-color: var(--eko-primary); box-shadow: 0 0 0 3px rgba(31, 78, 121, 0.1); }

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100%; max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin-right: var(--eko-space-4); }
.alignright { float: right; margin-left: var(--eko-space-4); }

.eko-mb-0 { margin-bottom: 0 !important; }
.eko-mt-0 { margin-top: 0 !important; }

/* ==========================================================================
   PRINT
   ========================================================================== */
@media print {
  .eko-header, .eko-footer, .eko-cta, .eko-nav-toggle { display: none; }
  body { color: black; background: white; }
  a { text-decoration: underline; color: black; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   ANNOUNCEMENT BAR (1 YIL ÜCRETSIZ KAMPANYA)
   ========================================================================== */
.eko-announcement {
  background: linear-gradient(90deg, #10B981 0%, #059669 50%, #10B981 100%);
  background-size: 200% 100%;
  animation: eko-announcement-shimmer 8s linear infinite;
  color: var(--eko-white);
  padding: var(--eko-space-3) 0;
  position: relative;
  z-index: calc(var(--eko-z-sticky) + 1);
}
@keyframes eko-announcement-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.eko-announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--eko-space-4);
  flex-wrap: wrap;
  text-align: center;
  font-size: var(--eko-text-sm);
  font-weight: 600;
}
.eko-announcement__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--eko-space-1);
  background: rgba(255, 255, 255, 0.25);
  padding: 4px 10px;
  border-radius: var(--eko-radius-full);
  font-size: var(--eko-text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.eko-announcement__text { color: var(--eko-white); }
.eko-announcement__link {
  color: var(--eko-white);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}
.eko-announcement__link:hover { color: var(--eko-white); opacity: 0.9; }
@media (max-width: 640px) {
  .eko-announcement__inner { font-size: var(--eko-text-xs); gap: var(--eko-space-2); }
}

/* ==========================================================================
   HERO ENHANCEMENTS (KAMPANYA)
   ========================================================================== */
.eko-hero__campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--eko-space-2);
  background: linear-gradient(135deg, #10B981, #059669);
  color: var(--eko-white);
  padding: var(--eko-space-2) var(--eko-space-4);
  border-radius: var(--eko-radius-full);
  font-size: var(--eko-text-sm);
  font-weight: 700;
  margin-bottom: var(--eko-space-5);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
  position: relative;
}
.eko-hero__campaign-badge::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: var(--eko-radius-full);
  background: linear-gradient(135deg, #10B981, #059669);
  z-index: -1;
  opacity: 0.4;
  filter: blur(8px);
  animation: eko-pulse 2.5s ease-in-out infinite;
}
@keyframes eko-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}
.eko-hero__campaign-icon { font-size: 1.1em; }

.eko-hero__price-highlight {
  display: flex;
  align-items: baseline;
  gap: var(--eko-space-3);
  margin: var(--eko-space-6) 0;
  padding: var(--eko-space-5) var(--eko-space-6);
  background: var(--eko-white);
  border: 2px solid var(--eko-success);
  border-radius: var(--eko-radius-lg);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
}
.eko-hero__price-old {
  color: var(--eko-gray-400);
  text-decoration: line-through;
  font-size: var(--eko-text-lg);
}
.eko-hero__price-new {
  font-size: var(--eko-text-4xl);
  font-weight: 800;
  color: var(--eko-success);
  line-height: 1;
}
.eko-hero__price-period {
  font-size: var(--eko-text-base);
  color: var(--eko-gray-600);
}
.eko-hero__price-note {
  margin-left: auto;
  font-size: var(--eko-text-sm);
  color: var(--eko-gray-500);
  text-align: right;
}
@media (max-width: 640px) {
  .eko-hero__price-highlight { flex-wrap: wrap; gap: var(--eko-space-2); }
  .eko-hero__price-note { margin-left: 0; text-align: left; width: 100%; }
}

/* CTA buton — success/promotion variant */
.eko-btn--success {
  background: linear-gradient(135deg, #10B981, #059669);
  color: var(--eko-white);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}
.eko-btn--success:hover {
  color: var(--eko-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
  background: linear-gradient(135deg, #059669, #047857);
}

/* ==========================================================================
   STATS / SOCIAL PROOF COUNTERS
   ========================================================================== */
.eko-stats {
  padding: var(--eko-space-16) 0;
  background: linear-gradient(180deg, var(--eko-white) 0%, var(--eko-gray-50) 100%);
  border-bottom: 1px solid var(--eko-gray-200);
}
.eko-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--eko-space-8);
}
.eko-stat {
  text-align: center;
  padding: var(--eko-space-4);
}
.eko-stat__number {
  font-size: var(--eko-text-5xl);
  font-weight: 800;
  background: linear-gradient(135deg, var(--eko-primary), var(--eko-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--eko-space-2);
  letter-spacing: -0.02em;
}
.eko-stat__label {
  color: var(--eko-gray-600);
  font-size: var(--eko-text-base);
  font-weight: 500;
}
@media (max-width: 768px) {
  .eko-stats__grid { grid-template-columns: repeat(2, 1fr); gap: var(--eko-space-6); }
  .eko-stat__number { font-size: var(--eko-text-4xl); }
}

/* ==========================================================================
   COMPARISON TABLE (GELENEKSEL vs EKOSITEMAPP)
   ========================================================================== */
.eko-comparison { background: var(--eko-white); }
.eko-comparison__wrap {
  max-width: 960px;
  margin: 0 auto;
  background: var(--eko-white);
  border-radius: var(--eko-radius-xl);
  overflow: hidden;
  border: 1px solid var(--eko-gray-200);
  box-shadow: var(--eko-shadow-md);
}
.eko-comparison__table {
  width: 100%;
  border-collapse: collapse;
}
.eko-comparison__table th,
.eko-comparison__table td {
  padding: var(--eko-space-5) var(--eko-space-6);
  text-align: left;
  border-bottom: 1px solid var(--eko-gray-200);
  font-size: var(--eko-text-base);
}
.eko-comparison__table th {
  background: var(--eko-gray-50);
  font-weight: 700;
  color: var(--eko-gray-900);
}
.eko-comparison__table th.eko-comparison__col-us {
  background: linear-gradient(135deg, var(--eko-primary), var(--eko-primary-dark));
  color: var(--eko-white);
  position: relative;
}
.eko-comparison__col-label { width: 40%; color: var(--eko-gray-700); }
.eko-comparison__cell--no {
  color: var(--eko-gray-400);
  display: inline-flex;
  align-items: center;
  gap: var(--eko-space-2);
}
.eko-comparison__cell--no::before {
  content: '✕';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--eko-gray-200);
  color: var(--eko-gray-500);
  border-radius: 50%;
  font-size: var(--eko-text-xs);
  font-weight: 700;
  flex-shrink: 0;
}
.eko-comparison__cell--yes {
  color: var(--eko-gray-900);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--eko-space-2);
}
.eko-comparison__cell--yes::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--eko-success);
  color: var(--eko-white);
  border-radius: 50%;
  font-size: var(--eko-text-xs);
  font-weight: 700;
  flex-shrink: 0;
}
.eko-comparison__table tr:last-child td { border-bottom: none; }
.eko-comparison__table tr:hover td:not(.eko-comparison__col-label) { background: rgba(31, 78, 121, 0.02); }
@media (max-width: 768px) {
  .eko-comparison__table { font-size: var(--eko-text-sm); }
  .eko-comparison__table th,
  .eko-comparison__table td {
    padding: var(--eko-space-3) var(--eko-space-3);
  }
}

/* ==========================================================================
   WHY FREE (GÜVEN İNŞASI)
   ========================================================================== */
.eko-why-free {
  background: linear-gradient(180deg, var(--eko-gray-50) 0%, var(--eko-white) 100%);
}
.eko-why-free__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--eko-space-6);
  max-width: 1000px;
  margin: 0 auto;
}
.eko-why-card {
  background: var(--eko-white);
  border: 1px solid var(--eko-gray-200);
  border-radius: var(--eko-radius-lg);
  padding: var(--eko-space-8);
  position: relative;
  overflow: hidden;
  transition: all var(--eko-transition);
}
.eko-why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--eko-primary), var(--eko-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--eko-transition);
}
.eko-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--eko-shadow-lg);
}
.eko-why-card:hover::before { transform: scaleX(1); }
.eko-why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--eko-success);
  border-radius: var(--eko-radius-md);
  margin-bottom: var(--eko-space-5);
  font-size: 28px;
}
.eko-why-card__title {
  font-size: var(--eko-text-xl);
  margin-bottom: var(--eko-space-3);
}
.eko-why-card__desc {
  color: var(--eko-gray-600);
  margin: 0;
  font-size: var(--eko-text-base);
  line-height: 1.6;
}
@media (max-width: 991px) { .eko-why-free__grid { grid-template-columns: 1fr; max-width: 600px; } }

/* ==========================================================================
   PRICING ENHANCEMENTS (FREE YEAR BADGE)
   ========================================================================== */
.eko-pricing-card__free-badge {
  position: absolute;
  top: var(--eko-space-4);
  right: var(--eko-space-4);
  background: linear-gradient(135deg, #10B981, #059669);
  color: var(--eko-white);
  padding: 4px 10px;
  border-radius: var(--eko-radius-full);
  font-size: var(--eko-text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}
.eko-pricing-card__price-strike {
  font-size: var(--eko-text-2xl);
  color: var(--eko-gray-400);
  text-decoration: line-through;
  font-weight: 600;
  margin-bottom: var(--eko-space-1);
}
.eko-pricing-card__price-free {
  color: var(--eko-success);
}
.eko-pricing-card__price-after {
  font-size: var(--eko-text-sm);
  color: var(--eko-gray-500);
  margin-top: var(--eko-space-1);
  display: block;
}

/* ==========================================================================
   FINAL CTA ENHANCEMENTS
   ========================================================================== */
.eko-cta--campaign {
  position: relative;
  overflow: hidden;
}
.eko-cta--campaign::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25), transparent 70%);
  pointer-events: none;
}
.eko-cta--campaign::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2), transparent 70%);
  pointer-events: none;
}
.eko-cta--campaign .eko-container { position: relative; z-index: 1; }
.eko-cta__campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--eko-space-2);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--eko-white);
  padding: var(--eko-space-2) var(--eko-space-5);
  border-radius: var(--eko-radius-full);
  font-size: var(--eko-text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--eko-space-6);
}
.eko-cta__countdown {
  display: flex;
  justify-content: center;
  gap: var(--eko-space-4);
  margin-top: var(--eko-space-8);
}
.eko-cta__countdown-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--eko-radius-md);
  padding: var(--eko-space-4) var(--eko-space-5);
  min-width: 80px;
}
.eko-cta__countdown-value {
  font-size: var(--eko-text-3xl);
  font-weight: 800;
  color: var(--eko-white);
  line-height: 1;
  margin-bottom: var(--eko-space-1);
}
.eko-cta__countdown-label {
  font-size: var(--eko-text-xs);
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   ENHANCED HERO BACKGROUND
   ========================================================================== */
.eko-hero {
  background:
    radial-gradient(circle at 15% 5%, rgba(16, 185, 129, 0.10), transparent 50%),
    radial-gradient(circle at 85% 95%, rgba(14, 165, 233, 0.10), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(31, 78, 121, 0.04), transparent 60%),
    var(--eko-gray-50);
}
.eko-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 78, 121, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 78, 121, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 30%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 30%, black, transparent);
  pointer-events: none;
}
.eko-hero > .eko-container { position: relative; z-index: 1; }

/* Floating shapes — decorative */
.eko-hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  z-index: 0;
  animation: eko-float 12s ease-in-out infinite;
}
.eko-hero__shape--1 {
  top: 10%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: var(--eko-accent);
}
.eko-hero__shape--2 {
  bottom: 15%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: var(--eko-success);
  animation-delay: 4s;
}
@keyframes eko-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* ==========================================================================
   MICRO-INTERACTIONS
   ========================================================================== */
.eko-btn { position: relative; overflow: hidden; }
.eko-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
  pointer-events: none;
}
.eko-btn:active::after { width: 300px; height: 300px; transition: 0s; }

/* Section divider */
.eko-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--eko-gray-200), transparent);
  margin: var(--eko-space-4) 0;
  border: none;
}

/* ==========================================================================
   ANNOUNCEMENT BAR (1 YIL ÜCRETSIZ KAMPANYA)
   ========================================================================== */
.eko-announcement {
  background: linear-gradient(90deg, #10B981 0%, #059669 50%, #10B981 100%);
  background-size: 200% 100%;
  animation: eko-announcement-shimmer 8s linear infinite;
  color: var(--eko-white);
  padding: var(--eko-space-3) 0;
  position: relative;
  z-index: calc(var(--eko-z-sticky) + 1);
}
@keyframes eko-announcement-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.eko-announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--eko-space-4);
  flex-wrap: wrap;
  text-align: center;
  font-size: var(--eko-text-sm);
  font-weight: 600;
}
.eko-announcement__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--eko-space-1);
  background: rgba(255, 255, 255, 0.25);
  padding: 4px 10px;
  border-radius: var(--eko-radius-full);
  font-size: var(--eko-text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.eko-announcement__text { color: var(--eko-white); }
.eko-announcement__link {
  color: var(--eko-white);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}
.eko-announcement__link:hover { color: var(--eko-white); opacity: 0.9; }
@media (max-width: 640px) {
  .eko-announcement__inner { font-size: var(--eko-text-xs); gap: var(--eko-space-2); }
}

/* ==========================================================================
   HERO ENHANCEMENTS (KAMPANYA)
   ========================================================================== */
.eko-hero__campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--eko-space-2);
  background: linear-gradient(135deg, #10B981, #059669);
  color: var(--eko-white);
  padding: var(--eko-space-2) var(--eko-space-4);
  border-radius: var(--eko-radius-full);
  font-size: var(--eko-text-sm);
  font-weight: 700;
  margin-bottom: var(--eko-space-5);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
  position: relative;
}
.eko-hero__campaign-badge::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: var(--eko-radius-full);
  background: linear-gradient(135deg, #10B981, #059669);
  z-index: -1;
  opacity: 0.4;
  filter: blur(8px);
  animation: eko-pulse 2.5s ease-in-out infinite;
}
@keyframes eko-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}
.eko-hero__campaign-icon { font-size: 1.1em; }

.eko-hero__price-highlight {
  display: flex;
  align-items: baseline;
  gap: var(--eko-space-3);
  margin: var(--eko-space-6) 0;
  padding: var(--eko-space-5) var(--eko-space-6);
  background: var(--eko-white);
  border: 2px solid var(--eko-success);
  border-radius: var(--eko-radius-lg);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
}
.eko-hero__price-old {
  color: var(--eko-gray-400);
  text-decoration: line-through;
  font-size: var(--eko-text-lg);
}
.eko-hero__price-new {
  font-size: var(--eko-text-4xl);
  font-weight: 800;
  color: var(--eko-success);
  line-height: 1;
}
.eko-hero__price-period {
  font-size: var(--eko-text-base);
  color: var(--eko-gray-600);
}
.eko-hero__price-note {
  margin-left: auto;
  font-size: var(--eko-text-sm);
  color: var(--eko-gray-500);
  text-align: right;
}
@media (max-width: 640px) {
  .eko-hero__price-highlight { flex-wrap: wrap; gap: var(--eko-space-2); }
  .eko-hero__price-note { margin-left: 0; text-align: left; width: 100%; }
}

.eko-btn--success {
  background: linear-gradient(135deg, #10B981, #059669);
  color: var(--eko-white);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}
.eko-btn--success:hover {
  color: var(--eko-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
  background: linear-gradient(135deg, #059669, #047857);
}

/* ==========================================================================
   STATS / SOCIAL PROOF
   ========================================================================== */
.eko-stats {
  padding: var(--eko-space-16) 0;
  background: linear-gradient(180deg, var(--eko-white) 0%, var(--eko-gray-50) 100%);
  border-bottom: 1px solid var(--eko-gray-200);
}
.eko-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--eko-space-8);
}
.eko-stat { text-align: center; padding: var(--eko-space-4); }
.eko-stat__number {
  font-size: var(--eko-text-5xl);
  font-weight: 800;
  background: linear-gradient(135deg, var(--eko-primary), var(--eko-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--eko-space-2);
  letter-spacing: -0.02em;
}
.eko-stat__label { color: var(--eko-gray-600); font-size: var(--eko-text-base); font-weight: 500; }
@media (max-width: 768px) {
  .eko-stats__grid { grid-template-columns: repeat(2, 1fr); gap: var(--eko-space-6); }
  .eko-stat__number { font-size: var(--eko-text-4xl); }
}

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */
.eko-comparison { background: var(--eko-white); }
.eko-comparison__wrap {
  max-width: 960px;
  margin: 0 auto;
  background: var(--eko-white);
  border-radius: var(--eko-radius-xl);
  overflow: hidden;
  border: 1px solid var(--eko-gray-200);
  box-shadow: var(--eko-shadow-md);
}
.eko-comparison__table { width: 100%; border-collapse: collapse; }
.eko-comparison__table th,
.eko-comparison__table td {
  padding: var(--eko-space-5) var(--eko-space-6);
  text-align: left;
  border-bottom: 1px solid var(--eko-gray-200);
  font-size: var(--eko-text-base);
}
.eko-comparison__table th { background: var(--eko-gray-50); font-weight: 700; color: var(--eko-gray-900); }
.eko-comparison__table th.eko-comparison__col-us {
  background: linear-gradient(135deg, var(--eko-primary), var(--eko-primary-dark));
  color: var(--eko-white);
}
.eko-comparison__col-label { width: 40%; color: var(--eko-gray-700); }
.eko-comparison__cell--no { color: var(--eko-gray-400); display: inline-flex; align-items: center; gap: var(--eko-space-2); }
.eko-comparison__cell--no::before {
  content: '✕';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--eko-gray-200);
  color: var(--eko-gray-500);
  border-radius: 50%;
  font-size: var(--eko-text-xs);
  font-weight: 700;
  flex-shrink: 0;
}
.eko-comparison__cell--yes { color: var(--eko-gray-900); font-weight: 600; display: inline-flex; align-items: center; gap: var(--eko-space-2); }
.eko-comparison__cell--yes::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--eko-success);
  color: var(--eko-white);
  border-radius: 50%;
  font-size: var(--eko-text-xs);
  font-weight: 700;
  flex-shrink: 0;
}
.eko-comparison__table tr:last-child td { border-bottom: none; }
@media (max-width: 768px) {
  .eko-comparison__table { font-size: var(--eko-text-sm); }
  .eko-comparison__table th,
  .eko-comparison__table td { padding: var(--eko-space-3); }
}

/* ==========================================================================
   WHY FREE
   ========================================================================== */
.eko-why-free { background: linear-gradient(180deg, var(--eko-gray-50) 0%, var(--eko-white) 100%); }
.eko-why-free__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--eko-space-6);
  max-width: 1000px;
  margin: 0 auto;
}
.eko-why-card {
  background: var(--eko-white);
  border: 1px solid var(--eko-gray-200);
  border-radius: var(--eko-radius-lg);
  padding: var(--eko-space-8);
  position: relative;
  overflow: hidden;
  transition: all var(--eko-transition);
}
.eko-why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--eko-primary), var(--eko-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--eko-transition);
}
.eko-why-card:hover { transform: translateY(-4px); box-shadow: var(--eko-shadow-lg); }
.eko-why-card:hover::before { transform: scaleX(1); }
.eko-why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--eko-success);
  border-radius: var(--eko-radius-md);
  margin-bottom: var(--eko-space-5);
  font-size: 28px;
}
.eko-why-card__title { font-size: var(--eko-text-xl); margin-bottom: var(--eko-space-3); }
.eko-why-card__desc { color: var(--eko-gray-600); margin: 0; font-size: var(--eko-text-base); line-height: 1.6; }
@media (max-width: 991px) { .eko-why-free__grid { grid-template-columns: 1fr; max-width: 600px; } }

/* ==========================================================================
   PRICING ENHANCEMENTS
   ========================================================================== */
.eko-pricing-card__free-badge {
  position: absolute;
  top: var(--eko-space-4);
  right: var(--eko-space-4);
  background: linear-gradient(135deg, #10B981, #059669);
  color: var(--eko-white);
  padding: 4px 10px;
  border-radius: var(--eko-radius-full);
  font-size: var(--eko-text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}
.eko-pricing-card__price-strike {
  font-size: var(--eko-text-2xl);
  color: var(--eko-gray-400);
  text-decoration: line-through;
  font-weight: 600;
  margin-bottom: var(--eko-space-1);
}
.eko-pricing-card__price-free { color: var(--eko-success); }
.eko-pricing-card__price-after {
  font-size: var(--eko-text-sm);
  color: var(--eko-gray-500);
  margin-top: var(--eko-space-1);
  display: block;
}

/* ==========================================================================
   FINAL CTA ENHANCEMENTS
   ========================================================================== */
.eko-cta--campaign { position: relative; overflow: hidden; }
.eko-cta--campaign::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25), transparent 70%);
  pointer-events: none;
}
.eko-cta--campaign::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2), transparent 70%);
  pointer-events: none;
}
.eko-cta--campaign .eko-container { position: relative; z-index: 1; }
.eko-cta__campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--eko-space-2);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--eko-white);
  padding: var(--eko-space-2) var(--eko-space-5);
  border-radius: var(--eko-radius-full);
  font-size: var(--eko-text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--eko-space-6);
}
.eko-cta__countdown {
  display: flex;
  justify-content: center;
  gap: var(--eko-space-4);
  margin-top: var(--eko-space-8);
  flex-wrap: wrap;
}
.eko-cta__countdown-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--eko-radius-md);
  padding: var(--eko-space-4) var(--eko-space-5);
  min-width: 80px;
}
.eko-cta__countdown-value {
  font-size: var(--eko-text-3xl);
  font-weight: 800;
  color: var(--eko-white);
  line-height: 1;
  margin-bottom: var(--eko-space-1);
}
.eko-cta__countdown-label {
  font-size: var(--eko-text-xs);
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Enhanced hero floating shapes */
.eko-hero { position: relative; }
.eko-hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  z-index: 0;
  animation: eko-float 12s ease-in-out infinite;
  pointer-events: none;
}
.eko-hero__shape--1 { top: 10%; right: 15%; width: 200px; height: 200px; background: var(--eko-accent); }
.eko-hero__shape--2 { bottom: 15%; left: 5%; width: 280px; height: 280px; background: var(--eko-success); animation-delay: 4s; }
@keyframes eko-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}
.eko-hero > .eko-container { position: relative; z-index: 1; }
