/* ==========================================================================
   APP.CSS (Single file)
   - Page-specific vars (header/panel/menu)
   - Global color system (mapped)
   - Comfortaa self-hosted
   - Base reset + essentials
   ========================================================================== */

/* --------------------------------------------------------------------------
   1) ROOT VARIABLES (Your page vars + mapped system vars)
   -------------------------------------------------------------------------- */
:root {
  /* --- Your existing page variables (kept) --- */
  --h: 90px; /* header height (top) */
  --h2: 60px; /* header height (scrolled) */

  --bg0: rgba(0, 0, 0, 0); /* overlay-ish */
  --bg1: rgba(0, 0, 0, 0.92); /* header bg */
  --textInv: #f2f2f2;

  --panel-red: #d60f3a;
  --panel-dark: #111;

  --cta: #2ecc71;
  --maxw: 1540px;

  --active: rgba(255, 255, 255, 0.92);
  --active-underline: rgba(255, 255, 255, 0.85);
  --active-mobile: #111;

  /* --- Global system variables (mapped to your values) --- */
  --color-primary: var(--panel-dark);
  --color-accent: var(--panel-red);
  --color-success: var(--cta);

  --color-bg: #ffffff;
  --color-bg-soft: #f5f5f5;
  --color-bg-dark: var(--bg1);

  --color-text: #111111;
  --color-text-muted: #666666;
  --color-text-invert: var(--textInv);

  --color-border: #e5e5e5;

  /* Typography */
  --font-base:
    'Comfortaa', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial,
    sans-serif;

  /* Layout */
  --container-width: var(--maxw);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* --------------------------------------------------------------------------
   2) COMFORTAA FONTS (SELF-HOST)
   Path: /xfile/font/comfortaa
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/xfile/font/comfortaa/subset-Comfortaa-Light.woff2') format('woff2');
}

@font-face {
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/xfile/font/comfortaa/subset-Comfortaa-Regular.woff2')
    format('woff2');
}

@font-face {
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/xfile/font/comfortaa/subset-Comfortaa-Medium.woff2')
    format('woff2');
}

@font-face {
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/xfile/font/comfortaa/subset-Comfortaa-SemiBold.woff2')
    format('woff2');
}

@font-face {
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/xfile/font/comfortaa/subset-Comfortaa-Bold.woff2') format('woff2');
}

/* --------------------------------------------------------------------------
   3) RESET / BASE (includes what you already have + essentials)
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth; /* from your code */
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0; /* from your code */
  font-family: var(--font-base); /* upgraded to Comfortaa stack */
  min-height: 200vh; /* from your code (keep if needed) */
  color: var(--color-text);
  background: var(--color-bg);

  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography defaults */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  font-weight: 600;
  overflow-wrap: break-word;
}
p {
  margin-bottom: 1em;
}

/* Forms */
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}
button {
  background: none;
  border: 0;
  cursor: pointer;
}
textarea {
  resize: vertical;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}
a:hover,
a:focus-visible {
  text-decoration: underline;
}

/* Lists / tables */
ul,
ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* 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;
  }
}

/* --------------------------------------------------------------------------
   4) MUST-HAVE UTILITIES (minimal but useful)
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 1rem;
}

.flex {
  display: flex;
}
.grid {
  display: grid;
}
.inline-flex {
  display: inline-flex;
}
.hidden {
  display: none !important;
}

.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}

.text-center {
  text-align: center;
}
.text-muted {
  color: var(--color-text-muted);
}

/* Font weight helpers (match your files) */
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}

/* Background helpers */
.bg-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-invert);
}
.bg-soft {
  background: var(--color-bg-soft);
}

/* Screen reader helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* UP SCROLL BUTON */
.to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 45px;
  height: 45px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: grid;
  place-items: center;
  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.92);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  z-index: 90;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

/* Ring katmanı */
.to-top__svg {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg); /* 12:00'dan başlasın */
  pointer-events: none;
}

.ring-bg {
  fill: none;
  stroke: rgba(0, 0, 0, 0.1);
  stroke-width: 2;
}

.ring {
  fill: none;
  stroke: rgba(0, 0, 0, 0.85);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 0 9999; /* JS güncelliyor */
  transition: stroke-dasharray 0.12s linear;
}

.to-top__icon {
  position: relative;
  color: #111;
}

/* mobil */
@media (max-width: 576px) {
  .to-top {
    width: 40px;
    height: 40px;
    right: 12px;
    bottom: 12px;
  }
  .to-top__svg {
    width: 38px;
    height: 38px;
  }
}

/* motion reduction */
@media (prefers-reduced-motion: reduce) {
  .ring {
    transition: none;
  }
}

.ring {
  fill: none;
  stroke: rgba(0, 0, 0, 0.85);
  stroke-width: 2;
  stroke-linecap: round;

  /* JS C değerini set ediyor ama temel mantık: */
  stroke-dasharray: 1 9999; /* başlangıçta override edilecek */
  stroke-dashoffset: 0;

  transition: stroke-dashoffset 0.12s linear;
}

body.menu-open .to-top {
  display: none;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.social {
  width: 44px;
  height: 44px;
  background: #000;
  display: grid;
  place-items: center;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.social svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  transition: fill 0.3s ease;
}

/* Hover renkleri */
.social.facebook:hover svg {
  fill: #1877f2;
}
.social.instagram:hover svg {
  fill: #e4405f;
}
.social.x:hover svg {
  fill: #1da1f2;
}
.social.whatsapp:hover svg {
  fill: #25d366;
}
.social.youtube:hover svg {
  fill: #ff0000;
}

/* Mobile CTA alanı */
.mobile-cta {
  background: transparent;
  max-width: 420px;
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

/* Shadow */
.mobile-shd {
  box-shadow: 0 15px 34px rgba(197, 164, 126, 0.5);
}

.mobile-shd:hover {
  box-shadow: none;
}

/* Ortak Button stil */
.mobile-cta .btn {
  font-family: 'Comfortaa', sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  padding: 10px 18px;
  border-radius: 999px;
  line-height: 1;
  border: 0;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* Primary (koyu) */
.mobile-cta .btn-primary {
  background-color: #6f6f6f;
  color: #ffffff;
}

.mobile-cta .btn-primary:hover {
  background-color: #000000;
}

/* Outline / Secondary */
.mobile-cta .btn-outline {
  background-color: #fff;
  color: #000;
}

.mobile-cta .btn-outline:hover {
  background-color: #000;
  color: #fff;
}
/* =====================================================================================
========================================================================================
    START - HEADER (STICKY) + direction hide
========================================================================================
======================================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;

  height: var(--h);
  margin-bottom: calc(var(--h) * -1);
  background: var(--bg0);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  /* ASIL YUMUSAKLIK BURADA */
  transition:
    height 0.7s ease,
    background 0.7s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease,
    transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1),
    opacity 0.45s ease;

  will-change: transform, opacity;
}

body.is-scrolled .site-header {
  height: var(--h-s);
  margin-bottom: calc(var(--h-s) * -1);
}
.site-header.is-scrolled {
  height: var(--h2);
  background: var(--bg1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}
/* aşağı inerken gizle (yalnızca desktop + mobilde de olur) */
.site-header.is-hidden {
  transform: translateY(-100%);
}

/* Header alanı için boşluk */
.header-spacer {
  height: var(--h);
}
.site-header.is-scrolled + .header-spacer {
  height: var(--h2);
}

.header-inner {
  height: 100%;
  width: calc(100% - 60px);
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 994px) {
  .header-inner {
    width: calc(100% - 16px);
  }
}
/* Burger (mobil) */
.burger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.burger-icon {
  width: 25px;
  height: 20px;
  background-image: url('/xfile/img/icon/menu.png'); /* yolu ihtiyaca göre değiştir */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}
/* =========================
       BRAND (LOGO <-> TEXT) overlay + width lock
    ========================== */
.brand {
  position: relative;
  display: block;
  height: 46px;
  color: var(--textInv);
  text-decoration: none;
  /* width JS ile set edilir */
}
.brand-logo,
.brand-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  white-space: nowrap;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  will-change: opacity, transform;
}
.brand-logo {
  height: 40px;
  width: auto;
  display: block;
  opacity: 1;
}
.brand-text {
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1;
  opacity: 0;
}

.site-header.is-scrolled .brand {
  height: 34px;
}
.site-header.is-scrolled .brand-logo {
  height: 34px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.96);
  pointer-events: none;
}
.site-header.is-scrolled .brand-text {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* =========================
       TEK MENÜ (UL) + ScrollSpy active
    ========================== */
.menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Desktop görünüm */
.menu.is-desktop {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 35px;
}
.menu.is-desktop a {
  color: rgba(0, 0, 0, 1);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: capitalize;
  padding: 10px 0;
  transition:
    opacity 0.2s ease,
    color 0.2s ease;
  position: relative;
  outline-offset: 4px;
  font-size: 14px;
}
.menu.is-desktop a.active {
  color: var(--active);
}
.menu.is-desktop a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--active-underline);
  border-radius: 2px;
}

/* =========================
   MENU COLORS (desktop)
   ========================= */

/* Varsayılan (header açıkken) */
.site-header {
  --menu-link: #000; /* normal */
  --menu-hover: #ed1849; /* hover */
  --menu-active: #ed1849; /* active */
  --menu-underline: #ed1849;
}

/* Scroll sonrası (header koyuysa) */
.site-header.is-scrolled {
  --menu-link: #fff;
  --menu-hover: #ed1849;
  --menu-active: #ed1849;
  --menu-underline: #ed1849;
}

/* Link stilleri */
.menu.is-desktop a {
  color: var(--menu-link);
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.menu.is-desktop a:hover {
  color: var(--menu-hover);
  opacity: 1; /* istersen 0.85'i kaldırmış olursun */
}

.menu.is-desktop a.active {
  color: var(--menu-active);
}

.menu.is-desktop a.active::after {
  background: var(--menu-underline);
}

/* Mobilde header içinde UL görünmez */
@media (max-width: 994px) {
  .menu.is-desktop {
    display: none;
  }

  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Mobilde hamburger sağda (order değil) */
  .burger {
    margin-left: auto;
  }
}

/* Desktop'ta burger kapalı + brand solda (fix) */
@media (min-width: 995px) {
  .burger {
    display: none;
  }

  .brand {
    position: static !important;
    transform: none !important;
    margin-right: auto;
  }
  .brand-logo,
  .brand-text {
    left: 0 !important;
    transform: translateY(-50%) !important;
  }
}

/* =========================
       MOBILE MENU – FULL SCREEN WHITE + A11Y
       + stagger anim
    ========================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999999;
  pointer-events: none;
  display: none;
}
.mobile-menu.is-open {
  pointer-events: auto;
}

@media (max-width: 994px) {
  .mobile-menu {
    display: block;
  }
}

.mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-menu.is-open .mobile-overlay {
  opacity: 1;
}

.mobile-panel {
  position: absolute;
  inset: 0;
  max-width: 500px;
  height: 100vh;
  background: #fff;
  display: block;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 2;
  contain: layout paint; /* CLS/paint izolasyonu */
}
.mobile-menu.is-open .mobile-panel {
  transform: translateX(0);
}

/* Sağ şeritler pseudo */
.mobile-panel::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(
    to right,
    var(--panel-red) 0%,
    var(--panel-red) 50%,
    var(--panel-dark) 50%,
    var(--panel-dark) 100%
  );
  pointer-events: none;
}

.mobile-content {
  position: relative;
  min-height: 100vh;
  padding: 24px 22px 28px;
  padding-right: 76px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: auto; /* iOS overscroll için içeride scroll */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain; /* destekleyenlerde bounce kontrol */
}

.mobile-top {
  height: 44px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 0 0 auto;
}
.mobile-close {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #111;
  touch-action: manipulation;
}

/* Mobil görünüm: aynı UL dikey */
.menu.is-mobile {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-top: 6px;
  flex: 0 0 auto;
}
.menu.is-mobile a {
  color: #111;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  outline-offset: 4px;
}
.menu.is-mobile a.active {
  color: var(--active-mobile);
  font-weight: 800;
}

/* Stagger micro animation (menu open) */
.menu.is-mobile li {
  opacity: 0;
  transform: translateY(8px);
}
.mobile-menu.is-open .menu.is-mobile li {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}
/* Stagger delays */
.mobile-menu.is-open .menu.is-mobile li:nth-child(1) {
  transition-delay: 0.05s;
}
.mobile-menu.is-open .menu.is-mobile li:nth-child(2) {
  transition-delay: 0.1s;
}
.mobile-menu.is-open .menu.is-mobile li:nth-child(3) {
  transition-delay: 0.15s;
}
.mobile-menu.is-open .menu.is-mobile li:nth-child(4) {
  transition-delay: 0.2s;
}
.mobile-menu.is-open .menu.is-mobile li:nth-child(5) {
  transition-delay: 0.25s;
}
.mobile-menu.is-open .menu.is-mobile li:nth-child(6) {
  transition-delay: 0.3s;
}

/* CTA + socials da hafif fade */
.mobile-cta,
.mobile-socials {
  opacity: 0;
  transform: translateY(10px);
}
.mobile-menu.is-open .mobile-cta {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.28s ease 0.34s,
    transform 0.28s ease 0.34s;
}
.mobile-menu.is-open .mobile-socials {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.28s ease 0.4s,
    transform 0.28s ease 0.4s;
}

.mobile-cta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 0 0 auto;
}
.btn {
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  cursor: pointer;
  background: transparent;
  touch-action: manipulation;
}
.btn-primary {
  background: var(--cta);
  color: #fff;
  border-color: var(--cta);
}
.btn-outline {
  border-color: var(--cta);
  color: var(--cta);
  background: transparent;
}

.mobile-socials {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex: 0 0 auto;
}
.social {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  font-size: 16px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .site-header,
  .brand-logo,
  .brand-text,
  .mobile-overlay,
  .mobile-panel,
  .menu.is-mobile li,
  .mobile-cta,
  .mobile-socials {
    transition: none !important;
    animation: none !important;
  }
}

/* Demo content */
main {
  width: calc(100% - 60px);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 0;
}

h2 {
  margin: 0 0 14px;
}
p {
  margin: 0;
  line-height: 1.6;
}

/* Focus görünür */
:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 4px;
}
.menu.is-mobile :focus-visible {
  outline-color: rgba(0, 0, 0, 0.4);
}
/* =====================================================================================
========================================================================================
    END - HEADER (STICKY) + direction hide
========================================================================================
======================================================================================== */

/* =====================================================================================
========================================================================================
    START - HERO
========================================================================================
======================================================================================== */
/* ===============================
   HERO (SEO + SEMANTIC)
================================ */

/* Header sticky ise hero'nun header altına girmesi için */
:root {
  --header-h: var(--h, 100px);
  --header-h-s: var(--h-s, 60px);
}

.hero {
  position: relative;
  background-image: url('/back2.webp');
  background-size: cover;
  background-position: top center;
  overflow: hidden;

  /* hero header altına girsin */
  margin-top: calc(var(--header-h) * -1);
  padding-top: var(--header-h);
}

/* scroll'da header küçülüyorsa */
body.is-scrolled .hero {
  margin-top: calc(var(--header-h-s) * -1);
  padding-top: var(--header-h-s);
}

.hero-wrap {
  max-width: 1540px;
  margin: 0 auto;
  padding: 30px 15px 50px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}

/* Sol */
.hero-content {
  padding: 80px 5px 25px;
  text-align: left;
}
.hero-title {
  margin: 0 0 18px;
  font-family: 'Comfortaa', sans-serif;
  font-size: 35px;
  text-transform: uppercase;
  line-height: 1.35;
  color: #000;
  animation: fadeInUp 0.9s ease;
  text-align: center;
}

.hero-title span {
  color: #e91e63;
}

.hero-lead {
  margin: 0 0 18px;
  font-family: 'Comfortaa', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  font-weight: 300;
  animation: fadeIn 1.1s ease;
  text-align: center;
}

/* badges */
.hero-badges {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-badge {
  background: #f0f2f5;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #333;
}

/* note */
.hero-note {
  margin: 0 0 18px;
  font-size: 14px;
  text-align: center;
}

.hero-note strong {
  color: #333;
  background-color: #fff9c4;
  padding: 2px 6px;
  border-radius: 6px;
}

/*  HERO BUTON START

/* Hero alanı */
.hero-area {
  background: transparent;
  max-width: 100%;
}

/* Buton grubu */
.hero-area .hero-cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  justify-content: center;
}

.hero-shd {
  box-shadow: 0 15px 34px rgba(197, 164, 126, 0.5);
}

.hero-shd:hover {
  box-shadow: none;
}

/* Ortak CTA stil */
.hero-area .hero-cta-btn {
  font-family: 'Comfortaa', sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  padding: 10px 18px;
  border-radius: 14px;
  line-height: 1;
  border: 0;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* Açık gri */
.hero-area .hero-cta-btn--light {
  background-color: #7a7a7a;
  color: #ffffff;
}

.hero-area .hero-cta-btn--light:hover {
  background-color: #6a6a6a;
}

/* Koyu */
.hero-area .hero-cta-btn--dark {
  background-color: #6f6f6f;
  color: #ffffff;
}

.hero-area .hero-cta-btn--dark:hover {
  background-color: #000000;
  text-decoration: none;
}

/* Alt aksiyon */
.hero-area .hero-cta-btn--secondary {
  background-color: #fff;
  color: #000;
}

.hero-area .hero-cta-btn--secondary:hover {
  background-color: #000;
  color: #fff;
  text-decoration: none;
}

/* HERO BUTON END

/* micro trust */
.hero-micro {
  margin: 12px 0 0;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
  text-align: center;
}

.hero-micro .dot {
  margin: 0 8px;
  opacity: 0.6;
}

/* social proof */
.hero-proof {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(17, 24, 39, 0.06);
  max-width: 400px;
}

.hero-proof-row {
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-proof-badge {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #166534;
  font-weight: 800;
}

.hero-proof-text {
  font-size: 13px;
  color: #111827;
  opacity: 0.9;
}

.hero-proof {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(17, 24, 39, 0.06);
  max-width: 400px;
  display: grid;
  place-items: center; /* Hem yatay hem dikey ortalar */
  margin-left: auto;
  margin-right: auto;
  -webkit-overflow-scrolling: touch;
}

.hero-pill-row::-webkit-scrollbar {
  display: none;
}

.hero-pill {
  white-space: nowrap;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.04);
  color: #111827;
  font-weight: 700;
}

/* Sağ görsel */
.hero-media {
  margin: 0;
  text-align: center;
}

.hero-img {
  width: 60%;
  max-width: 380px;
  height: auto;
  animation: buzzOut 1s ease;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    padding: 85px 8px 40px;
    text-align: center;
  }

  .hero-content {
    padding: 40px 5px 10px;
    text-align: center;
  }

  .hero-actions,
  .hero-proof-row {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .hero-title {
    font-size: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn {
    width: 100%;
  }
}

/* A11Y */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Animations (seninkiyle uyumlu) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes buzzOut {
  10%,
  90% {
    transform: translateX(-1px);
  }
  20%,
  80% {
    transform: translateX(2px);
  }
  30%,
  50%,
  70% {
    transform: translateX(-4px);
  }
  40%,
  60% {
    transform: translateX(4px);
  }
}
t {
  outline: 1px solid rgba(255, 0, 0, 0.15);
}
/* =====================================================================================
========================================================================================
    END - HERO
========================================================================================
======================================================================================== */

/* =====================================================================================
========================================================================================
    START - OZELLIKLERI BENEFITS
========================================================================================
======================================================================================== */
/* =========================
   FEATURES (tek section)
   ========================= */

.features {
  padding: 35px 0;
  background: #fff;
}
.features-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.features-head {
  text-align: center;
  margin-bottom: 26px;
}
.features-title {
  margin: 0;
  font-size: clamp(22px, 3.6vw, 34px);
  line-height: 1.2;
  font-weight: 900;
  color: #111827;
}
.features-subtitle {
  margin: 12px auto 0;
  max-width: 820px;
  font-size: 15px;
  line-height: 1.65;
  color: #6b7280;
}

.features-block {
  margin-top: 40px;
}
.block-head {
  text-align: center;
  margin-bottom: 14px;
}
.block-title {
  margin: 0;
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 850;
  color: #111827;
}
.block-title--solo {
  text-align: center;
  margin-bottom: 10px;
}
.block-subtitle {
  margin: 10px auto 0;
  max-width: 760px;
  font-size: 14.5px;
  line-height: 1.65;
  color: #6b7280;
}

/* Grid */
.card-grid {
  margin-top: 16px;
  display: grid;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}

/* Mobilde 2 sütun (uzunluğu azaltır) */
.card-grid.cols-3,
.card-grid.cols-4,
.card-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Kart */
/* =========================
   ICON BASE (74x74 box)
   SVG is used as MASK so it never "fills the whole card"
========================= */
.card-ico {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  position: relative;
}

/* icon itself (38x38) */
.card-ico::before {
  content: '';
  width: 30px;
  height: 30px;

  /* icon color (stroke gibi görünür) */
  background-color: #111827;

  /* IMPORTANT: mask makes svg behave like an icon */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;

  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

/* Background colors */
.ico1 {
  background: #fff3eb;
}
.ico2 {
  background: #e5f2ff;
}
.ico3 {
  background: #fffbf3;
}
.ico4 {
  background: #ebffe5;
}
.ico5 {
  background: #f4e5ff;
}
.ico6 {
  background: #ffe5e5;
}

/* SVG paths (your given locations) */
.ico1::before {
  -webkit-mask-image: url('/xfile/svg/ico1.svg');
  mask-image: url('/xfile/svg/ico1.svg');
}
.ico2::before {
  -webkit-mask-image: url('/xfile/svg/ico2.svg');
  mask-image: url('/xfile/svg/ico2.svg');
}
.ico3::before {
  -webkit-mask-image: url('/xfile/svg/ico3.svg');
  mask-image: url('/xfile/svg/ico3.svg');
}
.ico4::before {
  -webkit-mask-image: url('/xfile/svg/ico4.svg');
  mask-image: url('/xfile/svg/ico4.svg');
}
.ico5::before {
  -webkit-mask-image: url('/xfile/svg/ico5.svg');
  mask-image: url('/xfile/svg/ico5.svg');
}
.ico6::before {
  -webkit-mask-image: url('/xfile/svg/ico6.svg');
  mask-image: url('/xfile/svg/ico6.svg');
}

/* Eğer bazı ikonlar çok "kalın" görünüyorsa, 1 tık küçültmek için: */
/*
.card-ico::before{ width:36px; height:36px; }
*/

.card {
  padding: 14px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.card--small {
  padding: 13px 12px;
}

.card-icon {
  display: inline-block;
  font-size: 22px;
  margin-bottom: 6px;
}

.card-ico {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  margin: 0 auto 8px;

  border: 1px solid rgba(17, 24, 39, 0.06);
}

.card-title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 850;
  color: #111827;
}
.card-text {
  margin: 0;
  font-size: 12.8px;
  line-height: 1.45;
  color: #4b5563;
}

/* =========================
   Ek avantajlar aç/kapa
   ========================= */

.features-toggle {
  margin-top: 30px;
  border-radius: 4px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(17, 24, 39, 0.03);
  padding: 12px 14px;
}

.features-toggle__summary {
  cursor: pointer;
  font-weight: 850;
  color: #111827;
  list-style: none;
  outline-offset: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.features-toggle__summary::-webkit-details-marker {
  display: none;
}

.features-toggle__chev {
  display: inline-block;
  transition: transform 0.2s ease;
}

.features-toggle[open] .features-toggle__chev {
  transform: rotate(180deg);
}

.features-toggle__body {
  margin-top: 12px;
}
/* =========================
   QR Menü Nedir? akordeon
   ========================= */

.features-accordion {
  max-width: 1168px;
  margin: 0 auto;
  border-radius: 4px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(17, 24, 39, 0.03);
  padding: 12px 14px;
}

.features-accordion__summary {
  cursor: pointer;
  font-weight: 850;
  color: #111827;
  list-style: none;
  outline-offset: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.features-accordion__summary::-webkit-details-marker {
  display: none;
}

.features-accordion__chev {
  display: inline-block;
  transition: transform 0.2s ease;
}

.features-accordion[open] .features-accordion__chev {
  transform: rotate(180deg);
}

.features-accordion__body {
  margin-top: 10px;
}

.about-strong {
  margin: 0 0 10px;
  font-size: 15.5px;
  line-height: 1.75;
  color: #111827;
}
.about-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: #6b7280;
}

/* Desktop */
@media (min-width: 992px) {
  .features {
    padding: 50px 0;
  }

  .card-grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .card-grid.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .card-grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card {
    padding: 18px 16px;
  }
  .card-title {
    font-size: 16px;
  }
  .card-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .card-ico {
    width: 62px;
    height: 62px;
    border-radius: 16px;
  }
}

@media (max-width: 767px) {
  .card-grid > li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 200px; /* kart çok yayılmasın */
  }
}
/* =====================================================================================
========================================================================================
    END - OZELLIKLERI
========================================================================================
======================================================================================== */

/* =====================================================================================
========================================================================================
    START - AVANTAJ
========================================================================================
======================================================================================== */

.avant {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 48%, #ffffff 100%);
  overflow: hidden;
}

/* soft top/bottom divider */
.avant::before,
.avant::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 18px;
  pointer-events: none;
}

.avant::before {
  top: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 24, 39, 0.08),
    rgba(17, 24, 39, 0)
  );
}

.avant::after {
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(17, 24, 39, 0.08),
    rgba(17, 24, 39, 0)
  );
}

/* inner wrapper */
.avant-inner {
  position: relative;
  z-index: 1;
}

/* layout */
.avant-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}

/* =========================
   MEDIA (LEFT)
   ========================= */

.avant-media {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.avant-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* =========================
   CONTENT CARD (RIGHT)
   ========================= */

.avant-card {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  padding: 18px 18px 16px;
  backdrop-filter: blur(6px);
}

/* badge */
.avant-badge {
  background: #d52b56;
  color: #ffffff;
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.avant-badge-title {
  font-weight: 850;
  font-size: 13.5px;
  line-height: 1.25;
}

.avant-badge-sub {
  margin-top: 6px;
  font-size: 12.8px;
  line-height: 1.45;
  opacity: 0.95;
}

/* headings & text */
.avant-title {
  margin: 18px 0 10px;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 900;
  color: #111827;
}

.avant-lead {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: #4b5563;
  max-width: 62ch;
}

/* =========================
   AVANTAJ LİSTESİ
   ========================= */

.avant-list {
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
}

.avant-list li {
  position: relative;
  padding-left: 22px;
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.65;
  color: #374151;
}

.avant-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 900;
}

/* =========================
   ACTIONS
   ========================= */

.avant-actions {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* base */
.avant-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2px;
  user-select: none;

  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.avant-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.avant-btn:active {
  transform: translateY(0) scale(0.99);
}

.avant-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(232, 0, 115, 0.18);
}

/* SOFT PREMIUM CTA */
.avant-btn--soft {
  background: rgba(255, 255, 255, 0.75);
  color: #111827;
  border: 1px solid rgba(17, 24, 39, 0.16);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(232, 0, 115, 0.22); /* fuşya micro accent */

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.avant-btn--soft:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(232, 0, 115, 0.35);
}

/* micro trust */
.avant-micro {
  margin-top: 10px;
  font-size: 12.5px;
  color: #6b7280;
}

/* =========================
   RESPONSIVE
   ========================= */

/* Desktop */
@media (min-width: 992px) {
  .avant {
    padding: 60px 0;
  }

  .avant-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
  }

  .avant-img {
    height: 520px;
  }

  .avant-card {
    padding: 22px 22px 18px;
  }

  .avant-title {
    font-size: 25px;
  }

  .avant-lead {
    font-size: 15px;
  }

  .avant-badge {
    padding: 14px 16px;
  }

  .avant-badge-title {
    font-size: 14px;
  }

  .avant-badge-sub {
    font-size: 13px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .avant-img {
    height: 360px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .avant {
    padding: 48px 0;
  }

  .avant-card {
    padding: 16px 16px 14px;
  }

  .avant-title {
    font-size: 22px;
  }

  .avant-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .avant-btn {
    width: 100%;
  }
}

/* =========================
   A11Y – Screen reader only
   ========================= */

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =====================================================================================
========================================================================================
    END - AVANTAJ
========================================================================================
======================================================================================== */

/* =====================================================================================
========================================================================================
    START - FİYATLANDIRMA
========================================================================================
======================================================================================== */

.pricing {
  padding: 50px 0 60px;
  text-align: center;
  background: #fff;
}

.pricing-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Head */
.pricing-head {
  max-width: 1100px;
  margin: 0 auto 45px;
}

.pricing-title {
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 800;
  line-height: 1.35;
  color: #212529;
  margin: 0 0 12px;
}

.pricing-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #6c757d;
  margin: 0;
}

/* Grid */
.pricing-grid {
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

/* Card */
.pricing-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 26px 22px;
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 640px;
  min-width: 0;
}

/* Head group */
.card-head {
  text-align: center;
  margin-bottom: 14px;
}

.card-title {
  margin: 0;
  letter-spacing: 0.6px;
  font-size: 20px;
  font-weight: 900;
  color: #212529;
}

.card-subtitle {
  margin: 6px 0 14px;
  font-size: 13px;
  color: #868e96;
}

.card-price {
  margin: 0 0 10px;
  font-size: 46px;
  font-weight: 900;
  color: #e91e63;
  line-height: 1.05;
}

.card-price span {
  font-size: 14px;
  color: #6c757d;
  font-weight: 800;
  margin-left: 6px;
}

.card-badge {
  width: fit-content;
  margin: 0 auto 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eafaf1;
  color: #1b8f4d;
  font-size: 13px;
  font-weight: 800;
}

/* Features list (NOT .features to avoid collision) */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
  display: grid;
  gap: 10px;
}

.pricing-features li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.55;
  color: #343a40;
  text-align: left;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #e91e63;
  font-weight: 900;
}

/* Who for */
.pricing-who {
  margin-top: auto;
  margin-bottom: 16px;
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 12px 12px 14px;
  text-align: left;
}

.pricing-who-title {
  display: block;
  font-size: 13px;
  color: #212529;
  margin-bottom: 10px;
}

.pricing-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing .chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.04);
  border: 1px solid rgba(17, 24, 39, 0.06);
  font-size: 12px;
  font-weight: 800;
  color: #111827;
  line-height: 1;
}

/* Button */
.pricing-btn {
  width: 100%;
  border-radius: 18px;

  display: flex;
  flex-direction: column;
  gap: 6px;

  padding: 12px 14px;
  text-decoration: none;
  cursor: pointer;

  border: 1px solid #e9ecef;
  background: #fff;
  color: #111827;

  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
  box-sizing: border-box;
}

.pricing-btn:hover {
  transform: translateY(-1px);
  opacity: 0.98;
}

.pricing-btn:focus {
  outline: none;
}

.pricing-btn:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.35);
  outline-offset: 3px;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  font-size: 14px;
}

.wa-ico {
  display: inline-flex;
  color: currentColor;
}

.btn-sub {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
}

/* Best deal */
.pricing-card.is-best {
  border: 2px solid #25d366;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.best-badge {
  position: absolute;
  top: -14px;
  right: 18px;
  background: #e91e63;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(233, 30, 99, 0.22);
}

/* Best deal button primary */
.pricing-btn.is-primary {
  border-color: #25d366;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.22);
}

.pricing-btn.is-primary .btn-sub {
  color: rgba(255, 255, 255, 0.92);
}

/* =========================
   RESPONSIVE
   ========================= */

/* Tablet: 2 sütun */
@media (max-width: 979px) {
  .pricing {
    padding: 44px 0 52px;
  }

  .pricing-subtitle {
    font-size: 15px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .pricing-card {
    min-height: auto;
    padding: 22px 18px;
  }

  /* Tablet’te yukarı taşıma kapalı */
  .pricing-card.is-best {
    transform: none;
  }

  .card-price {
    font-size: 44px;
  }

  /* 2 sütunda tek kalan son kart ortalansın */
  .pricing-grid > .pricing-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 560px;
    margin: 0 auto;
  }
}

/* Mobile: 1 sütun */
@media (max-width: 619px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .best-badge {
    right: 12px;
  }

  .card-price {
    font-size: 40px;
  }

  .pricing-btn {
    border-radius: 16px;
  }
}
/* =====================================================================================
========================================================================================
    END - FİYATLANDIRMA
========================================================================================
======================================================================================== */

/* =====================================================================================
========================================================================================
    START - SIK SORULANLAR
========================================================================================
======================================================================================== */
/* =========================
   FAQ (Sık Sorulanlar) – FINAL
========================= */

.faq {
  padding: 40px 0 0; /* tek kaynak: desktop+mobile tutarlı */
  background: #ffffff;
}

.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.faq-head {
  text-align: center;
  margin-bottom: 26px;
}

.faq-head h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 900;
  color: #111827;
}

.faq-head p {
  margin: 0 auto;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
}

/* Grid */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 22px;
}

.faq-col {
  display: grid;
  gap: 12px;
}

/* Accordion item */
.faq-item {
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.03);
  border: 1px solid rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 16px;
  font-size: 14px;
  font-weight: 850;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

/* ok */
.faq-item summary::after {
  content: '⌄';
  font-size: 18px;
  font-weight: 900;
  color: #16a34a;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 0.18s ease;
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 16px 16px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
}

.faq-content strong {
  color: #111827;
  font-weight: 900;
}

/* CTA */
.faq-cta {
  margin-top: 18px;
  border-radius: 18px;
  padding: 16px 16px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  background: rgba(37, 211, 102, 0.08);
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.faq-cta-text strong {
  display: block;
  color: #111827;
  font-weight: 900;
  margin-bottom: 2px;
}

.faq-cta-text span {
  color: #374151;
  font-size: 13px;
  opacity: 0.9;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: #25d366;
  color: #0b1b12;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.faq-cta-btn:hover {
  text-decoration: none;
  color: #fff;
}

/* Focus görünür */
.faq-item summary:focus-visible,
.faq-cta-btn:focus-visible {
  outline: 3px solid rgba(22, 163, 74, 0.35);
  outline-offset: 3px;
}

/* DESKTOP (>=980px) */
@media (min-width: 980px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: start;
  }

  .faq-head {
    margin-bottom: 18px;
  }
}

/* Mobil ince ayar */
@media (max-width: 520px) {
  .faq {
    padding: 34px 0 0;
  }

  .faq-item summary {
    padding: 14px 14px;
  }

  .faq-content {
    padding: 0 14px 14px;
  }

  .faq-cta {
    padding: 14px 14px;
  }

  .faq-cta-btn {
    width: 100%;
  }
}
/* =====================================================================================
========================================================================================
    END - SIK SORULANLAR
========================================================================================
======================================================================================== */

/* =====================================================================================
========================================================================================
    START - DEMO
========================================================================================
======================================================================================== */
/* ===============================
   DEMO SECTION (SEO + SEMANTIC)
   Namespace: .demo
================================ */

.demo {
  padding: 35px 0 0;
  background: #fff;
}

.demo-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 28px;
  align-items: center;
}

/* Sol taraf */
.demo-title {
  font-size: 30px;
  line-height: 1.35;
  color: #212529;
  margin: 0 0 14px;
  font-weight: 800;
}

.demo-text {
  font-size: 16px;
  line-height: 1.7;
  color: #6c757d;
  margin: 0 0 22px;
  max-width: 58ch;
}

/* Demo alanı */
.demo-area {
  background: transparent;
  max-width: 420px;
}

/* Buton grubu */
.demo-area .demo-cta-group {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.demo-shd {
  box-shadow: 0 15px 34px rgba(197, 164, 126, 0.5);
}

.demo-shd:hover {
  box-shadow: none;
}

/* Ortak CTA stil */
.demo-area .demo-btn {
  font-family: 'Comfortaa', sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  padding: 10px 18px;
  border-radius: 999px;
  line-height: 1;
  border: 0;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* Koyu */
.demo-area .demo-btn {
  background-color: #6f6f6f;
  color: #ffffff;
}

.demo-area .demo-btn:hover {
  background-color: #000000;
  text-decoration: none;
}

/* Alt aksiyon */
.demo-area .demo-btn--ghost {
  background-color: #fff;
  color: #000;
}

.demo-area .demo-btn--ghost:hover {
  background-color: #000;
  color: #fff;
  text-decoration: none;
}

/* Sağ: Kart */
.demo-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.demo-badge {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.6px;
  font-weight: 900;
  color: #e91e63;
}

/* QR area */
.demo-qr {
  width: 210px;
  height: 210px;
  display: block;
  margin: 0 auto;
  border-radius: 14px;
  background-color: #f8f9fa;

  /* QR background-image kullanıyorsan burayı aç:
  background-image: url('qr.png');
  background-size: cover;
  background-position: center;
  */
}

.demo-hint {
  margin-top: 10px;
  font-size: 13px;
  color: #6c757d;
}

.demo-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: #868e96;
  text-decoration: none;
  word-break: break-all;
}

.demo-link:hover {
  text-decoration: none;
  color: #e91e63;
}

/* Focus görünür */
.demo-btn:focus-visible,
.demo-qr:focus-visible,
.demo-link:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.35);
  outline-offset: 3px;
}

/* ===============================
   MOBILE (alt alta)
================================ */
@media (max-width: 900px) {
  .demo {
    padding: 30px 16px;
  }

  .demo-wrap {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .demo-title {
    font-size: 24px;
  }

  .demo-qr {
    width: 190px;
    height: 190px;
  }
}

.demo-qr {
  display: inline-grid;
  place-items: center;
  width: 220px;
  height: 220px;
}

.qr-img {
  grid-area: 1/1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

/* Renkli başlangıçta gizli */
.qr-img--c {
  opacity: 0;
}

/* Hover / keyboard focus */
.demo-qr:hover .qr-img--c,
.demo-qr:focus-visible .qr-img--c {
  opacity: 1;
  transform: scale(1.01);
}

.demo-qr:hover .qr-img--s,
.demo-qr:focus-visible .qr-img--s {
  opacity: 0;
}

/* A11Y – Screen reader only */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =====================================================================================
========================================================================================
    END -DEMO
========================================================================================
======================================================================================== */

/* =====================================================================================
========================================================================================
    START - YORUMLAR
========================================================================================
======================================================================================== */
/* ===============================
   TESTIMONIALS (YORUMLAR)
   Namespace: .tst-
================================ */

.tst {
  padding: 50px 20px 40px;
  background: #ffffff;
}

.tst-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.tst-head {
  max-width: 900px;
  margin: 0 auto 15px;
  text-align: center;
}

.tst-title {
  font-size: 30px;
  line-height: 1.25;
  margin: 0 0 10px;
  color: #212529;
  font-weight: 900;
}

.tst-subtitle {
  margin: 0;
  font-size: 16px;
  color: #6c757d;
}

/* Slider container */
.tst-slider {
  position: relative;
  padding: 0 54px; /* desktop oklar için */
}

/* Track */
.tst-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 14px 14px 14px;
  scrollbar-width: none;
  width: 100%;
}

.tst-track::-webkit-scrollbar {
  display: none;
}

/* Arrows */
.tst-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 35%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 25px;
  font-weight: 900;
  z-index: 50;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #111827;
}

.tst-arrow--left {
  left: 16px;
}
.tst-arrow--right {
  right: 16px;
}

.tst-arrow:focus {
  outline: none;
}
.tst-arrow:focus-visible {
  outline: 2px solid #25d366;
  outline-offset: 3px;
}

/* Card */
.tst-card {
  flex: 0 0 360px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  padding: 18px 18px 16px;
  scroll-snap-align: start;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Header */
.tst-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.tst-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #eafaf1;
  color: #1b8f4d;
  display: grid;
  place-items: center;
  font-weight: 900;
  flex: 0 0 auto;
}

.tst-name {
  display: block;
  color: #212529;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.1;
}

.tst-city {
  display: block;
  color: #6c757d;
  font-size: 12px;
  margin-top: 2px;
}

.tst-tag {
  margin-left: auto;
  font-size: 12px;
  font-weight: 900;
  color: #e91e63;
  background: rgba(233, 30, 99, 0.1);
  padding: 6px 10px;
  border-radius: 999px;
}

/* Text */
.tst-text {
  margin: 0 0 12px;
  color: #343a40;
  font-size: 14px;
  line-height: 1.7;
}

.tst-full {
  display: none;
  margin-top: 8px;
}

/* Toggle */
.tst-toggle {
  border: none;
  background: transparent;
  color: #b1b7b3;
  font-weight: 900;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
}

.tst-toggle:hover {
  text-decoration: none;
  color: #000;
}

.tst-toggle:focus {
  outline: none;
}

.tst-toggle:focus-visible {
  outline: 2px solid rgba(37, 211, 102, 0.4);
  outline-offset: 2px;
}

/* Expanded state (JS class ile) */
.tst-card.is-expanded .tst-full {
  display: inline;
}
.tst-card.is-expanded .tst-short {
  display: none;
}

/* Mobile */
@media (max-width: 900px) {
  .tst {
    padding: 35px 16px 40px;
  }

  .tst-title {
    font-size: 24px;
  }

  .tst-slider {
    padding: 0;
  }

  .tst-card {
    flex-basis: 86%;
  }

  .tst-arrow {
    display: none; /* mobilde swipe */
  }
}

/* =====================================================================================
========================================================================================
    END - YORUMLAR
========================================================================================
======================================================================================== */

/* ========== FOOTER ========== */

.footer {
  background: #000;
  color: #fff;
  padding: 40px 16px 24px;
  font-family: 'Comfortaa', sans-serif;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* CTA */
.footer-cta {
  text-align: center;
  margin-bottom: 32px;
}

.footer-cta p {
  font-size: 15px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.footer-whatsapp {
  display: inline-block;
  background: #25d366;
  color: #000;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.footer-whatsapp:hover {
  text-decoration: none;
  color: #fff;
}

/* LINKS */
.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 14px;
  margin-bottom: 12px;
  opacity: 0.9;
}

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

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #cfcfcf;
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  color: #fff;
}

/* İLETİŞİM */
.footer-contact li {
  font-size: 13px;
  color: #cfcfcf;
}
/* SOSYAL */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
}
/* ALT */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  text-align: center;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0px;
}
.footer-legal a {
  font-size: 12px;
  color: #aaa;
  text-decoration: none;
}
.footer-copy {
  font-size: 12px;
  color: #777;
}
@media (max-width: 900px) {
  .footer-legal {
    margin-bottom: 10px;
  }
}
/* DESKTOP */
@media (min-width: 900px) {
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}
.footer-agency {
  margin-top: 10px;
  text-align: center;
}
.footer-agency img {
  height: 26px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.footer-agency img:hover {
  opacity: 1;
}
/* Desktop’ta copyright + logo yan yana */
@media (min-width: 900px) {
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .footer-agency {
    margin-top: 0;
  }
}
