/* ═══════════════════════════════════════════════════════════════════════════════
   ODDAK DİJİTAL AJANS — Components
   File: /assets/css/components.css
   Authority: Sprint 4 Design System — Part 3 (Global Component Library)
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ─── HERO SECTION ──────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Animated background blobs */
.hblob {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 65% at 78% 38%, var(--y) 0%, transparent 58%),
    radial-gradient(ellipse 38% 48% at 18% 82%, var(--g) 0%, transparent 58%),
    radial-gradient(ellipse 32% 42% at 88% 82%, var(--p) 0%, transparent 52%);
  opacity: 0.10;
  pointer-events: none;
  animation: bs 12s ease-in-out infinite;
  will-change: opacity, transform;
}

@keyframes bs {
  0%, 100% { opacity: 0.10; transform: scale(1); }
  50%       { opacity: 0.16; transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .hblob { animation: none; opacity: 0.10; }
}

/* Hero content container */
.hin {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px var(--section-pad) 56px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Hero badge pill */
.hpill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--r);
  background: var(--r2);
  border: 1px solid rgba(255, 59, 31, 0.18);
  padding: 6px 14px 6px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  opacity: 0;
  transform: scale(0.6) translateY(8px);
  animation: pil 500ms var(--spring) forwards;
  animation-delay: 0.05s;
}

.hpdot {
  width: 7px;
  height: 7px;
  background: var(--r);
  border-radius: 50%;
  flex-shrink: 0;
  animation: lp 2s ease-in-out infinite;
}

@keyframes lp {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.5); }
}

@keyframes pil {
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hpill { animation: none; opacity: 1; transform: none; }
  .hpdot { animation: none; }
}

/* Hero H1 */
.hh1 {
  font-family: var(--fd);
  font-size: clamp(52px, 8.5vw, 126px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 26px;
}

/* H1 line wrapper for slide-up animation */
.hln {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}

.hln span {
  display: block;
  transform: translateY(105%);
  animation: su var(--dur-hero) var(--ease) forwards;
  will-change: transform;
}

.hln:nth-child(1) span { animation-delay: 0.08s; }
.hln:nth-child(2) span { animation-delay: 0.20s; }
.hln:nth-child(3) span { animation-delay: 0.32s; }
.hln:nth-child(4) span { animation-delay: 0.44s; }

@keyframes su {
  to { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hln span { animation: none; transform: none; }
}

/* Highlighted word with yellow underline */
.hlw {
  color: var(--r);
  position: relative;
  display: inline-block;
}

.hlw::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: clamp(3px, 0.5vw, 7px);
  background: var(--y);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: ul 600ms var(--ease) forwards;
  animation-delay: 0.9s;
}

@keyframes ul {
  to { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hlw::after { animation: none; transform: scaleX(1); }
}

/* Hero lead paragraph */
.hp {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ink2);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fu 600ms var(--ease) forwards;
  animation-delay: 0.50s;
}

/* Hero CTA group */
.hbtns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 52px;
  opacity: 0;
  animation: fu 600ms var(--ease) forwards;
  animation-delay: 0.62s;
}

/* Fade-up keyframe (shared) */
@keyframes fu {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hp, .hbtns, .hstats { animation: none; opacity: 1; transform: none; }
}

/* Hero stats row */
.hstats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  padding-bottom: 56px;
  opacity: 0;
  animation: fu 600ms var(--ease) forwards;
  animation-delay: 0.74s;
}

.hsi {
  padding: 0 36px 0 0;
  margin-right: 36px;
  border-right: 1px solid var(--bdr);
}

.hsi:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

@media (max-width: 580px) {
  .hstats { gap: 20px 0; }
  .hsi { padding: 0 20px 0 0; margin-right: 20px; }
}

.hsin {
  font-family: var(--fd);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  display: block;
}

.hsin em {
  color: var(--r);
  font-style: normal;
}

.hsil {
  font-size: 12px;
  color: var(--ink3);
  margin-top: 4px;
  font-family: var(--fd);
  font-weight: 500;
  letter-spacing: 0.02em;
  display: block;
}

/* ─── HERO STRIP ────────────────────────────────────────────────────────────── */
.hstrip {
  border-top: 1px solid var(--bdr);
  position: relative;
  overflow: hidden;
}

.hstrip-in {
  display: flex;
  gap: 12px;
  padding: 18px 0;
  animation: hs 26s linear infinite;
  will-change: transform;
  width: max-content;
}

@keyframes hs {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hstrip:hover .hstrip-in {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .hstrip-in { animation: none; }
}

/* Hero strip card */
.hcard {
  flex-shrink: 0;
  width: 210px;
  height: 145px;
  border-radius: var(--radius-2xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 18px;
  position: relative;
  overflow: hidden;
  cursor: none;
  text-decoration: none;
  transform-style: preserve-3d;
  transition: transform 250ms var(--spring), box-shadow 250ms;
}

@media (pointer: coarse) {
  .hcard { cursor: pointer; }
}

.hcard:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.hcard-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hcard-top {
  position: relative;
  z-index: 1;
}

.hcard-ico {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hcard-ico svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hcard-bottom {
  position: relative;
  z-index: 1;
}

.hcard-cat {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--fd);
  margin-bottom: 3px;
  display: block;
}

.hcard-ttl {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ─── SERVICES SECTION ──────────────────────────────────────────────────────── */
.svcs {
  padding: 96px var(--section-pad);
  background: var(--bg);
}

.svcs-in {
  max-width: var(--container);
  margin: 0 auto;
}

.sgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 60px;
}

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

/* Service card */
.sc {
  border-radius: var(--radius-4xl);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  cursor: none;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  transition: transform 0.3s var(--spring), box-shadow 0.3s;
  transform-style: preserve-3d;
}

@media (pointer: coarse) {
  .sc { cursor: pointer; }
}

.sc:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.sc-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.4s var(--ease);
  z-index: 0;
}

.sc:hover .sc-bg { transform: scale(1.04); }

.sc-n {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  z-index: 1;
}

.sc-ico {
  position: absolute;
  top: 24px;
  left: 28px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.sc-ico svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sc-cat {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--fd);
  margin-bottom: 7px;
  position: relative;
  z-index: 1;
}

.sc-ttl {
  font-family: var(--fd);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.sc-arr {
  position: absolute;
  bottom: 26px;
  right: 26px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 0.2s, transform 0.25s var(--spring);
}

.sc-arr svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sc:hover .sc-arr {
  background: rgba(255, 255, 255, 0.28);
  transform: rotate(-45deg) scale(1.1);
}

/* Span modifiers */
.sc--tall  { grid-row: span 2; }
.sc--wide  { grid-column: span 2; }

@media (max-width: 920px) {
  .sc--wide { grid-column: span 1; }
  .sc--tall  { grid-row: span 1; }
}

/* Service card background gradients */
.sc-seo     { background: linear-gradient(140deg, #6C4FF5, #3B1FA8); }
.sc-reklam  { background: linear-gradient(140deg, #FF3B1F, #AA1500); }
.sc-web     { background: linear-gradient(140deg, #00AAEE, #0066AA); }
.sc-tasarim { background: linear-gradient(140deg, #B89600, #7A5E00); }
.sc-icerik  { background: linear-gradient(140deg, #00C97A, #00804C); }
.sc-sosyal  { background: linear-gradient(140deg, #F04E8C, #A81A55); }
.sc-eticaret { background: linear-gradient(140deg, #FF7A00, #AA4A00); }
.sc-strateji { background: linear-gradient(140deg, #00B5A0, #006B5E); }
.sc-eposta  { background: linear-gradient(140deg, #8B6FF5, #5035C0); }

/* ─── WHY ODDAK SECTION ─────────────────────────────────────────────────────── */
.why {
  background: var(--ink-fixed);
  padding: 96px var(--section-pad);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: -280px;
  left: -160px;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.07) 0%, transparent 58%);
  pointer-events: none;
}

.why::after {
  content: '';
  position: absolute;
  bottom: -160px;
  right: -80px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255, 59, 31, 0.08) 0%, transparent 58%);
  pointer-events: none;
}

.why-in {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why .ey  { color: var(--y); }
.why .sh  { color: #fff; }
.why .sp  { color: rgba(255, 255, 255, 0.4); margin-bottom: 0; }

/* Why cards grid */
.wgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-top: 60px;
}

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

/* Why card */
.wc {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-4xl);
  padding: 34px 30px;
  transition: background 0.2s, border-color 0.2s, transform 0.3s var(--spring);
}

.wc:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 204, 0, 0.22);
  transform: translateY(-4px);
}

.wico {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.wico svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.wc-ttl {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 9px;
  line-height: 1.2;
}

.wc-p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.8;
}

/* Comparison table */
.wcmp { margin-top: 60px; }

.wcmp-lbl {
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}

.cmpt {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.cmph {
  display: grid;
  grid-template-columns: 1fr 100px 100px;
  padding: 13px 22px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cmph span {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  font-family: var(--fd);
}

.cmph span:first-child { text-align: left; }

.cmpr {
  display: grid;
  grid-template-columns: 1fr 100px 100px;
  padding: 13px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.15s;
}

.cmpr:last-child { border-bottom: none; }
.cmpr:hover { background: rgba(255, 255, 255, 0.025); }

.cmpr span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}

.cmpr span:first-child {
  justify-content: flex-start;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.cky {
  color: var(--g);
  font-size: 16px;
  font-weight: 700;
}

.cno {
  color: rgba(255, 255, 255, 0.18);
  font-size: 16px;
}

/* ─── RESULTS / CASE STUDY SECTION ─────────────────────────────────────────── */
.res {
  padding: 96px var(--section-pad);
  background: var(--bg);
}

.res-in {
  max-width: var(--container);
  margin: 0 auto;
}

.rgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 60px;
}

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

/* Result card */
.rc {
  border-radius: var(--radius-4xl);
  padding: 38px 34px;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: transform 0.3s var(--spring), box-shadow 0.3s;
  text-decoration: none;
  display: block;
}

.rc:hover { transform: translateY(-5px); }

.rc:nth-child(1) {
  background: var(--w);
  border-color: var(--bdr);
  box-shadow: 0 4px 36px rgba(0, 0, 0, 0.04);
}

.rc:nth-child(1):hover {
  box-shadow: 0 18px 56px rgba(255, 59, 31, 0.09);
}

.rc:nth-child(2) { background: var(--r); }
.rc:nth-child(3) { background: var(--ink-fixed); }

[data-theme="dark"] .rc:nth-child(1) {
  background: var(--w);
  box-shadow: none;
}

.rc-sec {
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.rc:nth-child(1) .rc-sec {
  color: var(--ink3);
  border-color: var(--bdr);
}

.rc:nth-child(2) .rc-sec,
.rc:nth-child(3) .rc-sec {
  color: rgba(255, 255, 255, 0.55);
}

.rc-m {
  font-family: var(--fd);
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 5px;
}

.rc:nth-child(1) .rc-m { color: var(--r); }
.rc:nth-child(2) .rc-m,
.rc:nth-child(3) .rc-m  { color: #fff; }

.rc-wh {
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 14px;
}

.rc:nth-child(1) .rc-wh { color: var(--ink); }
.rc:nth-child(2) .rc-wh,
.rc:nth-child(3) .rc-wh  { color: rgba(255, 255, 255, 0.9); }

.rc-d { font-size: 13px; line-height: 1.85; }
.rc:nth-child(1) .rc-d { color: var(--ink2); }
.rc:nth-child(2) .rc-d,
.rc:nth-child(3) .rc-d  { color: rgba(255, 255, 255, 0.55); }

/* ─── REFERENCES / CLIENT LOGOS SECTION ─────────────────────────────────────── */
.refs {
  padding: 96px var(--section-pad);
  background: var(--w);
}

.refs-in {
  max-width: var(--container);
  margin: 0 auto;
}

.refs-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bdr);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .refs-g { grid-template-columns: repeat(6, 1fr); }
}

.rlogo {
  background: var(--w);
  padding: 26px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 800;
  color: rgba(20, 18, 16, 0.18);
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s;
  text-align: center;
  min-height: 80px;
}

.rlogo:hover {
  background: var(--bg);
  color: var(--ink);
}

/* ─── CERTIFICATIONS SECTION ────────────────────────────────────────────────── */
.certs {
  padding: 80px var(--section-pad);
  background: var(--bg);
}

.certs-in {
  max-width: var(--container);
  margin: 0 auto;
}

.certs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}

.cert {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--w);
  border: 1.5px solid var(--bdr);
  border-radius: var(--radius-pill);
  padding: 9px 18px 9px 9px;
  transition: border-color 0.2s, transform 0.2s var(--spring);
  text-decoration: none;
}

.cert:hover {
  border-color: var(--r);
  transform: translateY(-2px);
}

.cert-ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}

.cert-ico svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cert-nm {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--fd);
}

.cert-sb {
  font-size: 11px;
  color: var(--ink3);
  display: block;
  line-height: 1.2;
}

/* ─── PROCESS SECTION ───────────────────────────────────────────────────────── */
.proc {
  padding: 96px var(--section-pad);
  background: var(--w);
}

.proc-in {
  max-width: var(--container);
  margin: 0 auto;
}

.psteps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
  border-radius: var(--radius-4xl);
  overflow: hidden;
  margin-top: 60px;
}

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

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

.ps {
  padding: 38px 30px;
  border-right: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.ps:last-child { border-right: none; }
.ps:hover { background: var(--bg); }

/* Border adjustments for 2-col layout */
@media (max-width: 920px) {
  .ps:nth-child(2) { border-right: none; }
  .ps:nth-child(3) { border-right: 2px solid var(--ink); border-top: 2px solid var(--ink); }
  .ps:nth-child(4) { border-right: none; border-top: 2px solid var(--ink); }
}

@media (max-width: 520px) {
  .ps { border-right: none !important; border-top: 2px solid var(--ink); }
  .ps:first-child { border-top: none; }
}

/* Watermark number */
.ps::after {
  content: attr(data-n);
  position: absolute;
  bottom: -18px;
  right: -8px;
  font-family: var(--fd);
  font-size: 92px;
  font-weight: 800;
  color: rgba(20, 18, 16, 0.04);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
  user-select: none;
}

.ps-tag {
  display: inline-block;
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.ps-ttl {
  font-family: var(--fd);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 9px;
  line-height: 1.1;
}

.ps-p {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.8;
}

/* ─── CTA / CONTACT SECTION ─────────────────────────────────────────────────── */
.ctas {
  padding: 112px var(--section-pad);
  background: var(--ink-fixed);
  position: relative;
  overflow: hidden;
}

.ctas::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 75% at 18% 50%, rgba(255, 204, 0, 0.07) 0%, transparent 52%),
    radial-gradient(ellipse 45% 65% at 82% 18%, rgba(255, 59, 31, 0.10) 0%, transparent 52%),
    radial-gradient(ellipse 38% 55% at 68% 92%, rgba(0, 201, 122, 0.05) 0%, transparent 52%);
  pointer-events: none;
}

.ctas-in {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 1024px) {
  .ctas-in { grid-template-columns: 1fr 460px; align-items: start; }
}

.ctas .ey { color: var(--y); }

.cta-h {
  font-family: var(--fd);
  font-size: clamp(46px, 5.5vw, 92px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 22px;
}

.cta-h em {
  color: var(--y);
  font-style: normal;
}

.cta-p {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 32px;
}

.cta-gs {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.ctag {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

.ctag-dot {
  width: 7px;
  height: 7px;
  background: var(--g);
  border-radius: 50%;
  flex-shrink: 0;
}

.cinfo {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ci {
  display: flex;
  align-items: center;
  gap: 11px;
}

.ci-ico {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-ico svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255, 255, 255, 0.5);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ci-v {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
}

.ci-v a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.15s;
}

.ci-v a:hover { color: #fff; }

/* ─── CONTACT FORM BOX ──────────────────────────────────────────────────────── */
.fbox {
  background: var(--w);
  border-radius: var(--radius-5xl);
  padding: 38px 34px;
}

.fbox-ttl {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 4px;
}

.fbox-sub {
  font-size: 13px;
  color: var(--ink3);
  margin-bottom: 28px;
}

.fg {
  margin-bottom: 14px;
}

.fl {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
  font-family: var(--fd);
}

.fi {
  display: block;
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--bdr2);
  color: var(--ink);
  font-family: var(--fb);
  font-size: 14px;
  padding: 12px 15px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.4;
}

.fi:focus {
  border-color: var(--r);
  box-shadow: 0 0 0 3px rgba(255, 59, 31, 0.07);
}

.fi.is-error {
  border-color: var(--r);
  box-shadow: 0 0 0 3px rgba(255, 59, 31, 0.07);
}

.fi::placeholder {
  color: rgba(20, 18, 16, 0.2);
}

/* Honeypot — hidden from users, visible to bots */
.fhoney {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
  aria-hidden: true;
}

.fck {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-bottom: 13px;
}

.fck input[type="checkbox"] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--r);
  cursor: none;
}

@media (pointer: coarse) {
  .fck input[type="checkbox"] { cursor: pointer; }
}

.fck label {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.65;
  cursor: none;
}

@media (pointer: coarse) {
  .fck label { cursor: pointer; }
}

.fck label a {
  color: var(--r);
  text-decoration: none;
  transition: color 0.15s;
}

.fck label a:hover { color: var(--ink); }

.fsb {
  width: 100%;
  background: var(--r);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 15px;
  font-family: var(--fd);
  font-size: 14.5px;
  font-weight: 700;
  cursor: none;
  letter-spacing: 0.02em;
  transition: transform 0.2s var(--spring), box-shadow 0.2s;
  line-height: 1;
}

@media (pointer: coarse) {
  .fsb { cursor: pointer; }
}

.fsb:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-r-lg);
}

.fnote {
  font-size: 10.5px;
  color: rgba(20, 18, 16, 0.28);
  text-align: center;
  margin-top: 10px;
  font-family: var(--fd);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field-error {
  font-size: 12px;
  color: var(--r);
  margin-top: 4px;
  font-weight: 500;
  display: block;
  font-family: var(--fb);
  animation: fu 0.2s var(--ease);
}

/* ─── FAQ SECTION ───────────────────────────────────────────────────────────── */
.faq {
  padding: 96px var(--section-pad);
  background: var(--w);
}

.faq-in {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

@media (min-width: 1024px) {
  .faq-in { grid-template-columns: 380px 1fr; align-items: start; }
}

.faq-lft {
  position: sticky;
  top: 86px;
}

.faq-lft .sh {
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.05;
}

.faq-box {
  background: var(--r);
  border-radius: var(--radius-2xl);
  padding: 26px;
  margin-top: 28px;
}

.faq-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 14px;
}

.faq-box a {
  display: inline-block;
  background: #fff;
  color: var(--r);
  border-radius: var(--radius-pill);
  padding: 9px 20px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s var(--spring);
  font-family: var(--fd);
  letter-spacing: 0.02em;
}

.faq-box a:hover { transform: scale(1.04); }

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1.5px solid var(--bdr);
}

.faq-item:first-child {
  border-top: 1.5px solid var(--bdr);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: none;
  font-family: var(--fb);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.15s;
  line-height: 1.4;
}

@media (pointer: coarse) {
  .faq-q { cursor: pointer; }
}

.faq-q:hover { color: var(--r); }

.faq-ico {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--spring), background 0.2s;
}

.faq-ico svg {
  width: 12px;
  height: 12px;
  stroke: var(--ink2);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}

.faq-item.open .faq-ico {
  transform: rotate(45deg);
  background: var(--r);
}

.faq-item.open .faq-ico svg {
  stroke: #fff;
}

/* FAQ answer with CSS grid animation (no JS height calculation needed) */
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s var(--ease);
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a-in {
  overflow: hidden;
  min-height: 0;
}

.faq-a-pad {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.85;
  padding-bottom: 20px;
}

.faq-a-pad a {
  color: var(--r);
}

/* ─── FOOTER ────────────────────────────────────────────────────────────────── */
footer {
  background: #0C0B09;
  padding: 56px var(--section-pad) 30px;
}

[data-theme="dark"] footer { background: #080706; }

/* 5-column link grid */
.ft-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 44px;
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 1100px) { .ft-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
@media (max-width: 768px)  { .ft-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px)  { .ft-grid { grid-template-columns: 1fr; } }

.ft-col {}

.ft-col-title {
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  display: block;
}

.ft-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ft-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.15s;
  line-height: 1.4;
}

.ft-links a:hover { color: #fff; }

/* Hub / "view all" links */
.ft-links a.ft-hub {
  color: rgba(255, 69, 0, 0.7);
  font-weight: 600;
  margin-top: 4px;
}

.ft-links a.ft-hub:hover { color: var(--r); }

/* Cities row */
.ft-cities-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin: 0 0 28px;
}

.ft-cities-lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--fd);
  white-space: nowrap;
}

.ft-cities-row a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.15s;
}

.ft-cities-row a:hover { color: #fff; }

/* Certification badges row */
.ft-certs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
}

.ft-cert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ft-cert-badge-ico {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ft-cert-badge-ico svg {
  width: 16px;
  height: 16px;
}

.ft-cert-badge-txt {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--fd);
  letter-spacing: 0.02em;
}

/* Bottom bar */
.ft-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ft-bottom-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 18px;
}

.ft-bottom-left span,
.ft-bottom-left a {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--fd);
  letter-spacing: 0.03em;
  text-decoration: none;
}

.ft-bottom-left a:hover { color: rgba(255, 255, 255, 0.45); }

.ft-bottom-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ft-pulse {
  width: 7px;
  height: 7px;
  background: var(--g);
  border-radius: 50%;
  flex-shrink: 0;
  animation: lp 2s ease-in-out infinite;
}

.ft-made {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--fd);
  letter-spacing: 0.03em;
}

/* Social icons */
.ftsc {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ftsi {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  font-family: var(--fd);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.ftsi:hover {
  border-color: var(--r);
  color: #fff;
  background: var(--r);
}

.ftsi svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Footer logo */
.ftlogo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 13px;
}

.ftlogo svg {
  height: 26px;
  width: auto;
}

.ftdesc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.8;
  max-width: 250px;
}


/* ==========================================================================
   SPRINT 3 FIX — .bc (blog card) and .hub-cta-btns were only ever defined
   inline on the ONE page that originated each pattern (blog/index.html and
   hizmetler/index.html respectively). Every other page using these classes
   — 9 blog category pages, 16 glossary pages, 12 blog articles, 9 case
   studies, 8 regional hub pages, and several hub pages — had NO matching
   CSS rule, so the card layout and CTA button row rendered unstyled.
   Moved here so every page that already uses these classes actually
   gets the layout. No visual change on the pages that worked before;
   this fixes ones that were silently broken.
   ========================================================================== */

/* Blog card (.bc) — core rules needed wherever a blog card grid renders */
.bc {
  background: var(--w);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--spring), box-shadow 0.25s;
}
.bc:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bc-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.bc-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bc-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.bc-cat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-family: var(--fd);
}
.bc-cat-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.bc-ttl {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.bc:hover .bc-ttl { color: var(--r); }
.bc-excerpt {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bc-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--bdr);
}
.bc-author { font-size: 12px; color: var(--ink3); }
.bc-date { font-size: 12px; color: var(--ink3); }
.bc-rt { font-size: 12px; color: var(--ink3); margin-left: auto; }

/* CTA button row — used across hub pages and every content-detail page's
   closing CTA section (glossary, blog articles, case studies, regional hubs) */
.hub-cta-btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* Footer social media icons (homepage version — inner pages use self-contained inline styles) */
.ft-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ft-social-link {
  display: flex;
  color: rgba(255,255,255,.35);
  transition: color 0.2s;
}
.ft-social-link:hover,
.ft-social-link:focus-visible {
  color: var(--r);
}
