:root {
  --ink: #2C3E50;
  --ink-2: #34495E;
  --primary: #E67E22;
  --primary-dim: #D35400;
  --blue: #2980B9;
  --concrete: #F8F9FA;
  --paper: #FFFFFF;
  --steel: #7F8C8D;
  --steel-light: #BDC3C7;
  --line: #E0E0E0;
  --nav-bg: rgba(255, 255, 255, 0.95);
  --footer-bg: #F0F3F4;
  --text-dark: #2C3E50;
  --text-light: #FFFFFF;
  --radius: 4px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', sans-serif;
  color: var(--text-dark);
  background: var(--concrete);
  -webkit-font-smoothing: antialiased;
}


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

ul {
  list-style: none;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

h1,
h2,
h3,
h4 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--text-dark);
}

.mono {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-dim);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--primary-dim);
}

/* corner bracket signature element */
.blueprint-frame {
  position: relative;
}

.blueprint-frame::before,
.blueprint-frame::after,
.blueprint-frame .bf-tl,
.blueprint-frame .bf-br {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 3;
  border-color: var(--primary);
  border-style: solid;
  border-width: 0;
}

.blueprint-frame::before {
  top: -1px;
  left: -1px;
  border-top-width: 3px;
  border-left-width: 3px;
}

.blueprint-frame::after {
  bottom: -1px;
  right: -1px;
  border-bottom-width: 3px;
  border-right-width: 3px;
}

.blueprint-tag {
  position: absolute;
  z-index: 3;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--text-light);
  background: rgba(44, 62, 80, 0.85);
  padding: 4px 9px;
  top: 14px;
  left: 14px;
  border: 1px solid rgba(230, 126, 34, 0.6);
}

/* ---------- NAV ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: .055em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  overflow: visible;
}

.brand-mark path { stroke-linecap: round; stroke-linejoin: round; }
.brand-shape { fill: var(--ink); stroke: var(--ink); stroke-width: 2; }
.brand-letter { fill: none; stroke: #fff; stroke-width: 4.2; }
.brand-accent { fill: none; stroke: var(--primary); stroke-width: 4; }
.brand-name { font-size: 24px; line-height: 1; letter-spacing: .035em; }
.brand-sub { color: var(--primary); font-size: 10px; line-height: 1; letter-spacing: .16em; margin-left: -4px; align-self: flex-end; margin-bottom: 5px; }

.nav-links {
  display: flex;
  gap: 34px;
}

.nav-links a {
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  transition: color .2s;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s;
}

.btn-amber {
  background: var(--primary);
  color: var(--text-light);
}

.btn-amber:hover {
  background: var(--primary-dim);
}

.btn-outline {
  border-color: var(--text-light);
  color: var(--text-light);
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--ink);
}

.btn-dark {
  background: var(--ink);
  color: var(--text-light);
}

.btn-dark:hover {
  background: var(--ink-2);
}

.nav-cta {
  display: none;
}

@media(min-width: 900px) {
  .nav-cta {
    display: inline-flex;
  }
}

.burger {
  display: none;
  color: var(--text-dark);
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

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

  .burger {
    display: block;
  }
}

/* ---------- HERO ---------- */
/* ---------- HERO ---------- */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  transition: none !important;
  animation: none !important;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-image: url("images/vince.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  filter: brightness(0.45);
}

/* Koyu gradient katmanı */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg,
      rgba(10, 15, 20, 0.80) 0%,
      rgba(10, 15, 20, 0.50) 55%,
      rgba(10, 15, 20, 0.20) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(230, 126, 34, .6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 126, 34, .6) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1180px;
  width: 100%;
  flex: 1;
  margin: 0 auto;
  padding: 160px 32px 70px;
}



.hero-content h1 {
  color: #fff;
  font-size: clamp(38px, 5vw, 62px);
  max-width: 700px;
  margin-bottom: 24px;
  line-height: 1.05;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.hero-content h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  max-width: 650px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-strip {
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(15, 15, 15, 0.92);
}


.hero-strip-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-strip-item {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  min-height: 74px;
}

.hero-strip-item:last-child {
  border-right: none;
}

.hero-strip-item.active {
  background: var(--primary);
  color: var(--text-light);
  font-weight: 600;
}

.strip-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--primary);
}

.hero-strip-item.active .strip-num {
  color: var(--text-light);
}

@media(max-width: 800px) {
  .hero-strip-inner {
    grid-template-columns: 1fr;
  }

  .hero-strip-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}

/* ---------- SECTION GENERIC ---------- */
section {
  padding: 110px 0;
}

.section-head {
  max-width: 600px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  color: var(--text-dark);
}

.section-head p {
  color: var(--steel);
  font-size: 15.5px;
  margin-top: 16px;
  line-height: 1.7;
}

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

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  background: var(--paper);
  padding: 38px 28px;
  transition: all .25s;
}

.service-card:hover {
  background: var(--primary);
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.2);
  transform: translateY(-5px);
  z-index: 2;
  position: relative;
}

.service-card:hover h3,
.service-card:hover .snum,
.service-card:hover p,
.service-card:hover a {
  color: var(--text-light);
}

.service-card:hover svg {
  stroke: var(--text-light);
}

.service-card:hover a {
  border-bottom-color: var(--text-light);
}

.snum {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--primary-dim);
  display: block;
  margin-bottom: 22px;
  transition: color .25s;
}

.service-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  stroke: var(--primary);
  transition: stroke .25s;
}

.service-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--text-dark);
  transition: color .25s;
}

.service-card p {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.6;
  margin-bottom: 18px;
  transition: color .25s;
}

.service-card a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
  transition: all .25s;
}

@media(max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ---------- SPLIT / FUTURE SECTION ---------- */
.split {
  background: var(--paper);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split .hero-grid {
  opacity: 0.03;
  background-image: linear-gradient(rgba(44, 62, 80, .6) 1px, transparent 1px), linear-gradient(90deg, rgba(44, 62, 80, .6) 1px, transparent 1px);
}

.split-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.split h2 {
  color: var(--text-dark);
  font-size: clamp(26px, 3.2vw, 38px);
  margin-bottom: 20px;
}

.split p {
  color: var(--steel);
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 460px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 8px;
}

.stat-card {
  position: relative;
  min-height: 142px;
  padding: 19px 15px 15px;
  overflow: hidden;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: 3px;
  border-top: 3px solid var(--primary);
  box-shadow: 0 10px 25px rgba(28, 43, 55, .07);
}

.stat-card::after { content: ''; position: absolute; right: -22px; bottom: -25px; width: 76px; height: 76px; border: 14px solid rgba(230,126,34,.08); border-radius: 50%; }
.stat-card svg { display: block; width: 22px; height: 22px; margin-bottom: 11px; fill: none; stroke: var(--primary); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 15px 28px rgba(28,43,55,.12); transition: .25s ease; }

.stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(26px, 2.45vw, 34px);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1;
}
.stat-num b { color: var(--primary); font-size: .75em; margin-left: 1px; }

.stat-label {
  font-size: 12.5px;
  color: var(--steel);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.split-media {
  position: relative;
  height: 440px;
  overflow: hidden;
  border-radius: var(--radius);
}

.split-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


@media(max-width: 860px) {
  .split-inner {
    grid-template-columns: 1fr;
  }

  .split-media {
    height: 320px;
  }
}

/* ---------- PROJECTS ---------- */
.projects-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.proj-tall {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 500px;
}

.proj-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.proj-tall:hover img {
  transform: scale(1.04);
}

.proj-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.proj-stack>div {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 234px;
}

.proj-stack>div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.proj-stack>div:hover img {
  transform: scale(1.04);
}

@media(max-width: 800px) {
  .projects-layout {
    grid-template-columns: 1fr;
  }

  .proj-tall {
    height: 300px;
  }

  .proj-stack>div {
    height: 220px;
  }
}


/* ---------- PROCESS ---------- */
.process {
  background: var(--concrete);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.process-step {
  padding: 36px 30px;
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: background .28s ease, transform .28s ease, box-shadow .28s ease;
}

.process-step:last-child {
  border-right: none;
}

.process-step .snum {
  color: var(--primary);
  font-size: 26px;
  font-weight: 500;
}

.process-step h4 {
  font-size: 16px;
  margin: 14px 0 8px;
  color: var(--text-dark);
}

.process-step p {
  font-size: 13.5px;
  color: var(--steel);
  line-height: 1.6;
  transition: color .28s ease;
}

.process-step h4,
.process-step .snum {
  transition: color .28s ease;
}

.process-step:hover {
  background: var(--primary);
  transform: translateY(-7px);
  box-shadow: 0 15px 28px rgba(230, 126, 34, .25);
  z-index: 2;
}

.process-step:hover .snum,
.process-step:hover h4,
.process-step:hover p {
  color: var(--text-light);
}

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

  .process-step {
    border-bottom: 1px solid var(--line);
  }
}

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

/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
}

.price-card.featured {
  background: var(--ink);
  color: var(--text-light);
  border-color: var(--ink);
  transform: translateY(-14px);
  box-shadow: 0 15px 30px rgba(44, 62, 80, 0.15);
}

.price-card.featured h3,
.price-card.featured .price {
  color: var(--text-light);
}

.price-card .plan-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary-dim);
}

.price-card.featured .plan-name {
  color: var(--primary);
}

.price-card .price {
  font-family: 'Oswald', sans-serif;
  font-size: 44px;
  margin: 16px 0 4px;
  color: var(--text-dark);
}

.price-card .price span {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  color: var(--steel);
  text-transform: none;
}

.price-card.featured .price span {
  color: #BDC3C7;
}

.price-card ul {
  margin: 26px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.price-card li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--steel);
}

.price-card.featured li {
  color: #E0E0E0;
}

.price-card li svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  flex-shrink: 0;
}

.price-card .btn {
  justify-content: center;
  margin-top: auto;
}

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

  .price-card.featured {
    transform: none;
  }
}

/* ---------- TESTIMONIALS ---------- */
.test-band {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partners { margin: -4px 0 54px; }
.partners-kicker { color: var(--steel); font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .16em; text-align: center; margin: 0 0 16px; }
.partners-window { overflow: hidden; position: relative; padding: 6px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partners-window::before, .partners-window::after { content: ''; position: absolute; z-index: 1; top: 0; bottom: 0; width: 72px; pointer-events: none; }
.partners-window::before { left: 0; background: linear-gradient(90deg, var(--paper), transparent); }
.partners-window::after { right: 0; background: linear-gradient(270deg, var(--paper), transparent); }
.partners-track { display: flex; width: max-content; animation: partner-marquee 25s linear infinite; }
.partners-window:hover .partners-track { animation-play-state: paused; }
.partner-set { display: flex; align-items: center; gap: 16px; padding-right: 16px; }
.partner-logo { height: 52px; min-width: 174px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 20px; color: var(--text-dark); background: #fff; border: 1px solid var(--line); border-radius: 2px; font-family: 'Oswald', sans-serif; font-size: 19px; font-weight: 600; letter-spacing: .035em; white-space: nowrap; transition: .2s; }
.partner-logo:hover { color: var(--primary); border-color: var(--primary); transform: translateY(-2px); }
.partner-logo small { color: var(--primary); font-size: 10px; letter-spacing: .13em; align-self: flex-end; margin-bottom: 14px; }
.partner-logo i { display: block; width: 17px; height: 17px; border: 3px solid var(--primary); transform: rotate(45deg); }
.iryum i { border-radius: 50% 50% 0 50%; transform: rotate(45deg); }.dogo i { border-radius: 50%; }.loopsum i { border-left-color: transparent; border-radius: 50%; }.okta i { border-radius: 1px; background: var(--primary); }
@keyframes partner-marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .partners-track { animation: none; } }

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

.test-card {
  background: var(--concrete);
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: var(--radius);
}

.stars {
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.test-card p {
  font-size: 14.5px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}

.test-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--paper);
}

.test-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.test-person strong {
  display: block;
  font-size: 14px;
  color: var(--text-dark);
}

.test-person span {
  font-size: 12.5px;
  color: var(--steel);
}

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

/* ---------- FAQ ---------- */
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.faq-media {
  position: relative;
  height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 4px;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-q .qnum {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
  color: var(--primary-dim);
  font-size: 13px;
  margin-right: 14px;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s, background .25s;
}

.faq-item.open .faq-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-light);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-a p {
  padding: 0 4px 26px 40px;
  font-size: 14.5px;
  color: var(--steel);
  line-height: 1.75;
  max-width: 520px;
}

@media(max-width: 860px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-media {
    height: 280px;
  }
}

/* ---------- BLOG ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s;
}

.blog-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.blog-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.blog-card:hover .blog-img img {
  transform: scale(1.04);
}


.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--text-light);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  padding: 5px 10px;
  letter-spacing: .04em;
  z-index: 2;
  border-radius: 2px;
}

.blog-body {
  padding: 24px;
}

.blog-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--steel-light);
  margin-bottom: 10px;
}

.blog-body h3 {
  font-family: 'Work Sans', sans-serif;
  text-transform: none;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.blog-body a {
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
  color: var(--text-dark);
  transition: color .2s;
}

.blog-body a:hover {
  color: var(--primary);
}

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

/* ---------- CTA ---------- */
.cta {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  justify-content: space-between;
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(48px, 6vw, 76px) 0;
}

.cta h2 {
  color: var(--text-light);
  font-size: clamp(25px, 2.8vw, 38px);
  line-height: 1.15;
  max-width: 560px;
  margin: 0;
}

.cta form {
  display: flex;
  gap: 0;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.cta input {
  flex: 1;
  padding: 16px 18px;
  border: none;
  background: var(--paper);
  color: var(--text-dark);
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
}

.cta input::placeholder {
  color: var(--steel-light);
}

.cta button {
  padding: 16px 26px;
  background: var(--ink);
  color: var(--text-light);
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Work Sans', sans-serif;
  white-space: nowrap;
  transition: background .2s;
}

.cta button:hover {
  background: var(--ink-2);
}

@media(max-width: 800px) {
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .cta h2 { max-width: 620px; }

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

@media(max-width: 520px) {
  .cta form {
    flex-direction: column;
    max-width: none;
  }

  .cta input, .cta button { min-height: 54px; }
  .cta button {
    border-radius: 0;
  }
}

/* ---------- FOOTER ---------- */
footer {
  background: linear-gradient(135deg, var(--ink) 0%, #1A252C 100%);
  color: var(--text-light);
  padding-top: 80px;
  border-top: 4px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid h4 {
  color: var(--text-light);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 22px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
}

.footer-grid ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-grid a {
  font-size: 14px;
  color: var(--steel-light);
  transition: color .2s;
}

.footer-grid a:hover {
  color: var(--primary);
}

.footer-grid p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: var(--steel-light);
}

.footer-grid .logo {
  color: var(--text-light);
}

.footer-grid .brand-shape {
  fill: var(--text-light);
  stroke: var(--text-light);
}

.footer-post {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.footer-post img {
  width: 44px;
  height: 44px;
  border-radius: 2px;
  flex-shrink: 0;
}

.footer-post span {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-light);
  font-weight: 500;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}

.social {
  display: flex;
  gap: 14px;
}

.social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--steel-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
  transition: all .2s;
}

.social a:hover {
  border-color: var(--primary);
  color: var(--text-light);
  background: var(--primary);
}

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

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

::selection {
  background: var(--primary);
  color: var(--text-light);
}



/* =========================
   MOBİL VE TABLET UYUMU
========================= */

/* Tablet */
@media (max-width: 900px) {
  .nav-cta {
    display: none;
  }

  .burger {
    display: block;
    z-index: 1001;
  }

  .nav-links {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: var(--paper);
    padding: 0;
    border-top: 1px solid var(--line);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
    display: block;
  }

  .projects-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .proj-tall {
    height: 300px;
  }

  .faq-media {
    height: 300px;
  }
}

/* Mobil */
@media (max-width: 600px) {

  html,
  body {
    overflow-x: hidden;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 100px 16px 40px;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-strip-inner {
    grid-template-columns: 1fr;
  }

  .hero-strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px;
    min-height: auto;
  }

  .hero-strip-item:last-child {
    border-bottom: none;
  }

  .services-grid,
  .pricing-grid,
  .test-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  
  .stat-card {
    padding: 16px 10px;
    min-height: auto;
    text-align: center;
  }
  
  .stat-card::after {
    display: none;
  }
  
  .stat-card svg {
    margin: 0 auto 8px;
    width: 20px;
    height: 20px;
  }
  
  .stat-num {
    font-size: 20px;
  }
  
  .stat-label {
    font-size: 10px;
    margin-top: 4px;
    letter-spacing: 0;
  }

  footer {
    padding-top: 40px;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    padding-bottom: 30px;
  }

  .footer-grid > div:not(:first-child) {
    display: none;
  }

  .footer-grid ul {
    align-items: center;
  }

  .footer-post {
    justify-content: center;
    text-align: left;
  }

  .foot-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  section {
    padding: 40px 0;
  }

  .wrap {
    padding: 0 16px;
  }

  .cta-inner {
    padding: 50px 0;
  }

  .projects-layout {
    grid-template-columns: 1fr;
  }

  .proj-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Küçük ekranlar */
@media (max-width: 400px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content {
    padding: 110px 16px 40px;
  }
}

header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999;
}

/* Header'ın altındaki içerik hep aynı boşlukla başlasın diye */
body {
  scroll-padding-top: 76px;
}

.hero-strip {
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 15, 20, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-strip-item {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 500;
  min-height: 74px;
  transition: color .2s, background .2s;
}

.hero-strip-item:last-child {
  border-right: none;
}

.hero-strip-item.active {
  background: rgba(230, 126, 34, 0.10);
  color: #fff;
  font-weight: 600;
  box-shadow: inset 0 -2px 0 var(--primary);
}

.strip-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--primary);
}

.hero-strip-item.active .strip-num {
  color: var(--primary);
}

/* Proje görselleri için varsayılan pozisyon */
.proj-tall img,
.proj-stack>div img {
  object-position: center;
}

/* ---------- PROJECTS ---------- */
.projects-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.proj-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink);
}

.proj-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.proj-card:hover img {
  transform: scale(1.06);
}

.proj-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top,
      rgba(10, 15, 20, 0.85) 0%,
      rgba(10, 15, 20, 0.15) 45%,
      rgba(10, 15, 20, 0) 70%);
}

.proj-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
}

.proj-caption .proj-title {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.02em;
  margin-top: 6px;
}

@media(max-width: 900px) {
  .projects-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 560px) {
  .projects-layout {
    grid-template-columns: 1fr;
  }

  .proj-card {
    aspect-ratio: 4 / 3;
  }
}
