/* ── FONTS ── */
@font-face {
  font-family: 'Barlow';
  font-weight: 300;
  font-style: normal;
  src: url('/fonts/Barlow-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Barlow';
  font-weight: 400;
  font-style: normal;
  src: url('/fonts/Barlow-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Barlow';
  font-weight: 500;
  font-style: normal;
  src: url('/fonts/Barlow-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Barlow';
  font-weight: 600;
  font-style: normal;
  src: url('/fonts/Barlow-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Barlow';
  font-weight: 700;
  font-style: normal;
  src: url('/fonts/Barlow-Bold.ttf') format('truetype');
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #0d0d0d;
  color: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 82px;
  background: rgba(10,10,10,0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center;
  padding: 0 48px;
  justify-content: space-between;
}
.nav-logo img { height: 62px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 15px; font-weight: 400;
  letter-spacing: 0.01em;
  transition: color .2s;
}
.nav-links a:hover { color: #f60; }

.nav-item-dropdown { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  min-width: 300px; list-style: none;
  background: #161616; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 8px;
  opacity: 0; visibility: hidden; transition: opacity .15s, visibility .15s;
  box-shadow: 0 16px 32px rgba(0,0,0,0.4);
  z-index: 1000;
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown { opacity: 1; visibility: visible; }
.nav-dropdown li a {
  display: block; padding: 9px 14px; border-radius: 6px;
  font-size: 14px; color: rgba(255,255,255,0.75); white-space: nowrap;
}
.nav-dropdown li a:hover { background: rgba(255,255,255,0.06); color: #f60; }
.nav-linkedin {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.nav-linkedin:hover { background: #0077b5; }
.nav-linkedin svg { width: 15px; height: 15px; fill: #fff; }
.nav-lang { position: relative; }
.nav-lang-toggle {
  display: flex; align-items: center; gap: 6px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px; padding: 5px 10px;
  font-size: 14px; font-weight: 500; color: #fff; cursor: pointer;
  background: transparent; font-family: inherit;
  transition: border-color .2s;
}
.nav-lang-toggle:hover { border-color: #f60; }
.nav-lang-toggle svg { width: 12px; height: 12px; fill: #fff; opacity:0.6; }
.nav-lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 140px; list-style: none;
  background: #161616; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px; padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .15s, transform .15s, visibility .15s;
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}
.nav-lang-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-lang-menu button {
  display: block; width: 100%; text-align: left;
  background: transparent; border: none; color: rgba(255,255,255,0.75);
  font-family: inherit; font-size: 14px; padding: 8px 10px; border-radius: 4px;
  cursor: pointer; transition: background .15s, color .15s;
}
.nav-lang-menu button:hover { background: rgba(255,255,255,0.06); color: #fff; }
.nav-lang-menu button.active { color: #f60; font-weight: 600; }

/* ── HERO ── */
#hero {
  position: relative; width: 100%; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 80px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/images/c837a6_2119733e838e4a2f8813ebde736f99d5~mv2.avif');
  background-size: cover; background-position: center;
  opacity: 0.9;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.3) 100%),
    linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 40%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-content h1 {
  font-size: clamp(48px, 6.5vw, 82px);
  font-weight: 600; line-height: 1.05;
  letter-spacing: -0.02em; color: #fff;
  margin-bottom: 24px;
}
.hero-content h1 { margin-bottom: 18px; }
.hero-content .hero-tagline {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500; color: #fff;
  line-height: 1.35; letter-spacing: -0.01em;
  margin-bottom: 26px; max-width: 620px;
}
.hero-content .hero-tagline .accent { color: #f60; font-weight: 600; }
.hero-content p {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300; color: rgba(255,255,255,0.78);
  line-height: 1.6; margin-bottom: 44px; max-width: 520px;
}
.btn-orange {
  display: inline-block; background: #f60; color: #fff;
  font-size: 15px; font-weight: 500; font-family: 'Barlow', sans-serif;
  letter-spacing: 0.04em; padding: 16px 42px; border-radius: 3px;
  transition: background .2s, transform .15s;
}
.btn-orange:hover { background: #e05500; transform: translateY(-1px); }

/* ── SERVICES ── */
#services {
  width: 100%; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  background: #0d0d0d; overflow: hidden;
}
.services-left {
  position: relative;
  display: flex; align-items: center; justify-content: flex-end;
  padding: 90px 60px 90px 80px; overflow: hidden;
}
.services-left-bg {
  position: absolute; inset: 0;
  background-image: url('/images/services-bg.jpg');
  background-size: cover; background-position: center;
  opacity: 0.22;
}
.services-left-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 25% 55%, rgba(15,35,75,0.55) 0%, transparent 65%),
    linear-gradient(to right, rgba(13,13,13,0.3) 0%, rgba(13,13,13,0.1) 100%);
}
.services-left-text { position: relative; z-index: 2; max-width: 480px; }
.services-left-text h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 500; line-height: 1.25; color: #fff;
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.services-left-text p {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.58); line-height: 1.78;
}

/* neden özel yazılım — numaralı liste */
.why-custom {
  list-style: none;
  counter-reset: wc;
  display: flex; flex-direction: column; gap: 20px;
  margin-top: 6px;
}
.why-custom li {
  counter-increment: wc;
  position: relative;
  padding-left: 46px;
}
.why-custom li::before {
  content: counter(wc);
  position: absolute; left: 0; top: 1px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,100,0,0.1);
  border: 1px solid rgba(255,100,0,0.4);
  color: #f60; font-weight: 600; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.why-custom h3 {
  font-size: 15px; font-weight: 600; color: #fff;
  letter-spacing: 0.01em; margin-bottom: 5px;
}
.why-custom p {
  font-size: 13.5px; font-weight: 300;
  color: rgba(255,255,255,0.58); line-height: 1.65;
}
.services-right {
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 80px 100px 50px; gap: 14px;
  background: rgba(13,13,13,0.6);
}
.services-right::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 85% 15%, rgba(15,30,70,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.service-card {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 10px; padding: 24px 24px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: background .25s, border-color .25s;
}
.service-card:hover {
  background: rgba(255,100,0,0.055);
  border-color: rgba(255,100,0,0.22);
}
.service-icon {
  width: 46px; min-width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.service-icon svg { width: 36px; height: 36px; }
.service-card-text h3 {
  font-size: 16px; font-weight: 600; color: #f60;
  margin-bottom: 7px; letter-spacing: 0.01em;
}
.service-card-text h3 a { color: #f60; }
.service-card-text h3 a:hover { opacity: 0.8; }
.service-card-text p {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.58); line-height: 1.7;
}
.card-divider {
  width: 55px; height: 1px;
  background: rgba(255,100,0,0.32); margin-top: 13px;
}

/* ── ABOUT ── */
#about {
  width: 100%; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  background: #0d0d0d; overflow: hidden;
}
.about-left {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.about-left-bg {
  position: absolute; inset: 0;
  background-image: url('/images/about-bg.jpg');
  background-size: cover; background-position: center;
  opacity: 0.3;
}
.about-left-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(30,10,5,0.3) 0%, rgba(13,13,13,0.5) 100%);
}
.about-left-content {
  position: relative; z-index: 2;
  text-align: center; padding: 40px;
}
.about-spiral { width: 300px; height: 300px; margin: 0 auto 28px; }
.about-left-content h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 500; color: #fff;
  letter-spacing: -0.01em; line-height: 1.2;
}
.about-right {
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 80px 100px 60px;
}
.about-right p {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.62); line-height: 1.88;
  margin-bottom: 18px;
}
.btn-orange-sm {
  display: inline-block; background: #f60; color: #fff;
  font-size: 14px; font-weight: 500; font-family: 'Barlow', sans-serif;
  letter-spacing: 0.05em; padding: 13px 34px; border-radius: 3px;
  margin-top: 10px; transition: background .2s; align-self: flex-start;
}
.btn-orange-sm:hover { background: #e05500; }

/* ── CTA ── */
#cta {
  width: 100%; min-height: 78vh;
  display: grid; grid-template-columns: 1fr 1fr;
  background: #0d0d0d; overflow: hidden;
}
.cta-left {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cta-left-bg {
  position: absolute; inset: 0;
  background-image: url('/images/cta-bg.jpg');
  background-size: cover; background-position: center;
  opacity: 0.3;
}
.cta-left-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 65% at 50% 50%, rgba(80,20,5,0.25) 0%, rgba(13,13,13,0.55) 100%);
}
.cta-globe {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
}
.globe-ring {
  width: 320px; height: 320px; border-radius: 50%;
  border: 1px solid rgba(200,70,40,0.28);
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, rgba(160,40,15,0.12) 0%, transparent 70%);
  position: relative;
}
.globe-ring::before {
  content: '';
  position: absolute; inset: -20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 38%, rgba(200,60,25,0.35) 0%, transparent 28%),
    radial-gradient(circle at 72% 62%, rgba(180,40,15,0.2) 0%, transparent 22%);
}
.play-btn {
  width: 62px; height: 62px;
  background: rgba(90,90,150,0.72);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.play-btn:hover { background: rgba(110,110,185,0.85); }
.play-btn svg { width: 20px; height: 20px; fill: #fff; margin-left: 4px; }
.cta-label {
  margin-top: 28px;
  font-size: 17px; font-weight: 400; color: #fff;
  text-align: center; line-height: 1.4;
}
.cta-right {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 80px 80px 60px;
}
.cta-right p {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.62); line-height: 1.88;
  margin-bottom: 36px;
}

/* ── PLATFORMS ── */
#platforms {
  width: 100%;
  background: #0d0d0d;
  padding: 96px 80px 100px;
  border-top: 1px solid rgba(255,255,255,0.06);
  scroll-margin-top: 82px;
}
.platforms-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.platforms-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600; color: #fff;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.platforms-head p {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.7;
}
.platforms-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; max-width: 1000px; margin: 0 auto;
}
.platform-card {
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 12px; padding: 34px 32px;
  transition: background .25s, border-color .25s, transform .2s;
}
.platform-card:hover {
  background: rgba(255,100,0,0.055);
  border-color: rgba(255,100,0,0.22);
  transform: translateY(-4px);
}
.platform-card h3 {
  font-size: 24px; font-weight: 600; color: #f60;
  letter-spacing: -0.01em;
}
.platform-card p {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.62); line-height: 1.75;
  flex: 1;
}
.platform-actions {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.platform-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: #f60;
  letter-spacing: 0.02em;
}
.platform-link svg {
  width: 15px; height: 15px;
  fill: none; stroke: #f60; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .2s;
}
.platform-card:hover .platform-link svg { transform: translate(3px, -3px); }
.platform-link.secondary { color: rgba(255,255,255,0.6); }
.platform-link.secondary svg { stroke: rgba(255,255,255,0.6); }
.platform-link.secondary:hover { color: #f60; }
.platform-link.secondary:hover svg { stroke: #f60; }

/* ── CONTACT ── */
#contact {
  width: 100%;
  background: #0d0d0d;
  padding: 96px 80px 100px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.contact-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.contact-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600; color: #fff;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.contact-head p {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.7;
}
.contact-body {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 32px; align-items: stretch;
  max-width: 1180px; margin: 0 auto;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 12px; padding: 28px 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: background .25s, border-color .25s;
}
.contact-card:hover {
  background: rgba(255,100,0,0.055);
  border-color: rgba(255,100,0,0.22);
}
.contact-card-icon {
  width: 46px; min-width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(255,100,0,0.1);
  display: flex; align-items: center; justify-content: center;
}
.contact-card-icon svg { width: 24px; height: 24px; }
.contact-card-text h3 {
  font-size: 15px; font-weight: 600; color: #fff;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-card-text p {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.68); line-height: 1.75;
}
.contact-card-text p a { color: rgba(255,255,255,0.68); transition: color .2s; }
.contact-card-text p a:hover { color: #f60; }
.contact-link {
  display: inline-block; margin-top: 14px;
  font-size: 14px; font-weight: 500; color: #f60;
  letter-spacing: 0.02em; transition: opacity .2s;
}
.contact-link:hover { opacity: 0.75; }
.contact-map {
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.075);
  min-height: 340px;
}
.contact-map iframe {
  width: 100%; height: 100%; min-height: 340px;
  border: 0; display: block;
  filter: grayscale(0.4) invert(0.9) hue-rotate(180deg);
}

/* ── FOOTER ── */
footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 80px 28px;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 2fr 1.4fr;
  gap: 40px; align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand img { height: 40px; margin-bottom: 22px; }
.footer-brand address {
  font-style: normal; font-size: 13px;
  line-height: 2; color: rgba(255,255,255,0.42);
}
.footer-brand address a {
  color: rgba(255,255,255,0.5); transition: color .2s;
}
.footer-brand address a:hover { color: #f60; }
.footer-nav {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 8px 28px; align-items: center;
}
.footer-nav a {
  font-size: 14px; color: rgba(255,255,255,0.48); transition: color .2s;
}
.footer-nav a:hover { color: #f60; }
.footer-nav .italic { font-style: italic; }
.footer-social {
  text-align: center; margin-top: 20px;
}
.footer-social p {
  font-size: 13px; color: rgba(255,255,255,0.38); margin-bottom: 10px;
}
.li-circle {
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.1); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.li-circle:hover { background: #0077b5; }
.li-circle svg { width: 15px; height: 15px; fill: #fff; }
.footer-legal {
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.footer-legal a {
  font-size: 13px; color: rgba(255,255,255,0.38); transition: color .2s;
}
.footer-legal a:hover { color: #fff; }
.footer-bottom {
  padding-top: 20px; text-align: center;
  font-size: 13px; color: rgba(255,255,255,0.28);
}
.footer-bottom strong { font-weight: 600; color: rgba(255,255,255,0.45); }

/* ── MODAL (DAHA FAZLA / TOKEN) ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  display: none; align-items: flex-start; justify-content: center;
  padding: 48px 20px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal {
  position: relative;
  width: 100%; max-width: 820px;
  background: #121212;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: modal-in .25s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute; top: 16px; right: 18px; z-index: 3;
  width: 38px; height: 38px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: #fff;
  font-size: 26px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.modal-close:hover { background: rgba(255,100,0,0.35); }
.modal-head {
  padding: 44px 48px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.modal-head h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600; line-height: 1.2;
  letter-spacing: -0.01em; color: #fff; margin-bottom: 16px;
}
.modal-head h2 .accent { color: #f60; }
.modal-head p {
  font-size: 15.5px; font-weight: 300;
  color: rgba(255,255,255,0.68); line-height: 1.7;
}
.modal-body { padding: 28px 48px 8px; }
.token-section-title {
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #f60; margin-bottom: 20px;
}
.price-list {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px; overflow: hidden; margin-bottom: 14px;
}
.price-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 16px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background .2s;
}
.price-row:last-child { border-bottom: 0; }
.price-row:hover { background: rgba(255,255,255,0.03); }
.price-row.featured { background: rgba(255,100,0,0.08); }
.price-tokens {
  display: flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 600; color: #f60; letter-spacing: 0.01em;
}
.price-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.03em;
  color: #fff; background: #f60;
  border-radius: 999px; padding: 3px 10px; white-space: nowrap;
}
.price-amount {
  font-size: 20px; font-weight: 700; color: #fff; line-height: 1; white-space: nowrap;
}
.price-amount span {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.55);
  margin-left: 2px;
}
.price-note {
  font-size: 13px; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.5);
}

.token-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.token-item:last-child { border-bottom: 0; }
.token-item-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 8px;
}
.token-item-head h4 {
  font-size: 17px; font-weight: 600; color: #fff; line-height: 1.35;
}
.token-badge {
  flex-shrink: 0;
  font-size: 13px; font-weight: 600; white-space: nowrap;
  color: #f60; background: rgba(255,100,0,0.12);
  border: 1px solid rgba(255,100,0,0.3);
  border-radius: 999px; padding: 5px 14px;
}
.token-badge.alt {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  white-space: normal;
}
.token-desc {
  font-size: 14.5px; font-weight: 300;
  color: rgba(255,255,255,0.62); line-height: 1.7; margin-bottom: 10px;
}
.token-item ul {
  list-style: none; display: flex; flex-direction: column; gap: 7px;
}
.token-item ul li {
  position: relative; padding-left: 18px;
  font-size: 14.5px; font-weight: 300;
  color: rgba(255,255,255,0.72); line-height: 1.55;
}
.token-item ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: #f60;
}
.modal-foot {
  padding: 24px 48px 40px;
  display: flex; justify-content: flex-start;
}

/* ── YAZILIM ŞABLONLARI SAYFASI ── */
#tpl-hero {
  position: relative; width: 100%;
  min-height: 62vh;
  display: flex; align-items: center;
  padding: 150px 80px 90px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
#tpl-hero .tpl-hero-bg {
  position: absolute; inset: 0;
  background-image: url('/images/services-bg.jpg');
  background-size: cover; background-position: center;
  opacity: 0.18;
}
#tpl-hero .tpl-hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 22% 50%, rgba(80,25,5,0.4) 0%, transparent 62%),
    linear-gradient(to right, rgba(13,13,13,0.85) 30%, rgba(13,13,13,0.35) 100%);
}
.tpl-hero-content { position: relative; z-index: 2; max-width: 820px; }
.tpl-hero-content .tpl-eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #f60; margin-bottom: 18px;
}
.tpl-hero-content h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 600; line-height: 1.08;
  letter-spacing: -0.02em; color: #fff; margin-bottom: 22px;
}
.tpl-hero-content h1 .accent { color: #f60; }
.tpl-hero-content p {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 300; color: rgba(255,255,255,0.72);
  line-height: 1.7; max-width: 640px;
}

/* Neden bölümü */
#tpl-why {
  width: 100%; background: #0d0d0d;
  padding: 96px 80px 100px;
  scroll-margin-top: 82px;
}
.tpl-why-head { max-width: 780px; margin: 0 auto 60px; text-align: center; }
.tpl-why-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600; color: #fff;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.tpl-why-head h2 .accent { color: #f60; }
.tpl-why-head p {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.7;
}
.tpl-benefits {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; max-width: 1080px; margin: 0 auto;
}
.tpl-benefit {
  display: flex; gap: 20px; align-items: flex-start;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 12px; padding: 26px 26px;
  transition: background .25s, border-color .25s, transform .2s;
}
.tpl-benefit:hover {
  background: rgba(255,100,0,0.055);
  border-color: rgba(255,100,0,0.22);
  transform: translateY(-3px);
}
.tpl-benefit-icon {
  width: 48px; min-width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,100,0,0.1);
  border: 1px solid rgba(255,100,0,0.22);
  display: flex; align-items: center; justify-content: center;
}
.tpl-benefit-icon svg {
  width: 24px; height: 24px;
  fill: none; stroke: #f60; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.tpl-benefit-text h3 {
  font-size: 16px; font-weight: 600; color: #fff;
  letter-spacing: 0.01em; margin-bottom: 7px; line-height: 1.3;
}
.tpl-benefit-text p {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.7;
}
.tpl-cta-wrap { text-align: center; margin-top: 56px; }
.tpl-cta-wrap .btn-orange { align-self: center; }

/* Şablon kataloğu */
#tpl-catalog {
  width: 100%; background: #0a0a0a;
  padding: 96px 80px 104px;
  border-top: 1px solid rgba(255,255,255,0.06);
  scroll-margin-top: 82px;
}
.tpl-catalog-head { max-width: 780px; margin: 0 auto 60px; text-align: center; }
.tpl-catalog-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600; color: #fff;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.tpl-catalog-head h2 .accent { color: #f60; }
.tpl-catalog-head p {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.7;
}
.tpl-catalog-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; max-width: 1180px; margin: 0 auto;
  align-items: start;
}
.tpl-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 14px; padding: 34px 34px 36px;
  transition: border-color .25s, background .25s;
}
.tpl-card:hover {
  border-color: rgba(255,100,0,0.22);
  background: rgba(255,100,0,0.04);
}
.tpl-card.wide { grid-column: 1 / -1; }
.tpl-card-head {
  display: flex; gap: 16px; align-items: center; margin-bottom: 14px;
}
.tpl-card-icon {
  width: 50px; min-width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(255,100,0,0.1);
  border: 1px solid rgba(255,100,0,0.22);
  display: flex; align-items: center; justify-content: center;
}
.tpl-card-icon svg {
  width: 26px; height: 26px;
  fill: none; stroke: #f60; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.tpl-card-head h3 {
  font-size: 20px; font-weight: 600; color: #fff;
  letter-spacing: -0.01em; line-height: 1.25;
}
.tpl-card > p {
  font-size: 14.5px; font-weight: 300;
  color: rgba(255,255,255,0.62); line-height: 1.75;
  margin-bottom: 22px;
}
.tpl-feat-title {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #f60; margin-bottom: 16px;
}
.tpl-feat-list {
  list-style: none;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 10px 22px;
}
.tpl-feat-list.single { grid-template-columns: 1fr; }
.tpl-feat-list li {
  position: relative; padding-left: 26px;
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.74); line-height: 1.5;
}
.tpl-feat-list li::before {
  content: '';
  position: absolute; left: 0; top: 3px;
  width: 15px; height: 15px; border-radius: 50%;
  background: rgba(255,100,0,0.12);
  border: 1px solid rgba(255,100,0,0.4);
}
.tpl-feat-list li::after {
  content: '';
  position: absolute; left: 5px; top: 7px;
  width: 4px; height: 7px;
  border: solid #f60; border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.tpl-ai-block {
  margin-top: 26px; padding: 22px 24px;
  background: rgba(255,100,0,0.055);
  border: 1px solid rgba(255,100,0,0.18);
  border-radius: 12px;
}
.tpl-ai-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: #f60;
  background: rgba(255,100,0,0.12);
  border: 1px solid rgba(255,100,0,0.35);
  border-radius: 999px; padding: 5px 13px; margin-bottom: 16px;
}
.tpl-ai-badge svg {
  width: 13px; height: 13px;
  fill: none; stroke: #f60; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.tpl-card-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.tpl-card-cols > div { min-width: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #tpl-hero { padding: 120px 24px 64px; min-height: 48vh; }
  #tpl-why { padding: 64px 24px 72px; }
  .tpl-benefits { grid-template-columns: 1fr; }
  #tpl-catalog { padding: 64px 24px 76px; }
  .tpl-catalog-grid { grid-template-columns: 1fr; }
  .tpl-card { padding: 28px 24px 30px; }
  .tpl-feat-list { grid-template-columns: 1fr; }
  .tpl-card-cols { grid-template-columns: 1fr; gap: 26px; }
  .modal-head { padding: 40px 24px 24px; }
  .modal-body { padding: 24px 24px 4px; }
  .modal-foot { padding: 20px 24px 32px; }
  .token-item-head { flex-direction: column; gap: 8px; }
  .modal-overlay { padding: 24px 12px; }
  .price-row { padding: 14px 16px; }
  #services, #about, #cta { grid-template-columns: 1fr; }
  #nav { padding: 0 20px; }
  .nav-links { display: none; }
  #hero { padding: 110px 32px 70px; }
  .services-left { padding: 60px 32px; justify-content: flex-start; }
  .services-right { padding: 40px 32px 60px; }
  .about-right { padding: 60px 32px; }
  .cta-left { min-height: 360px; }
  .cta-right { padding: 60px 32px; }
  #platforms { padding: 64px 24px 72px; }
  .platforms-grid { grid-template-columns: 1fr; }
  #contact { padding: 64px 24px 72px; }
  .contact-body { grid-template-columns: 1fr; }
  .contact-map { min-height: 280px; }
  footer { padding: 40px 24px 20px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-legal { align-items: center; }
}
