/* Figma React parity layout — overrides PHP export styles */

/* ── Light Header (Header.tsx) ─────────────────────────────── */
.site-header.site-header--light {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  height: 80px;
  overflow: visible;
}

.site-header.site-header--light .container,
.site-header.site-header--light .header-inner,
.site-header.site-header--light .header-nav {
  overflow: visible;
}

.site-header.site-header--light.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.site-header--light .header-nav__list a,
.site-header--light .header-nav a {
  color: var(--gray-700);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.site-header--light .header-nav__list a:hover,
.site-header--light .header-nav a:hover,
.site-header--light .header-nav__list a.active,
.site-header--light .header-nav a.active,
.site-header--light .header-nav__list .current-menu-item > a,
.site-header--light .header-nav__list .current_page_item > a {
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 6%, transparent);
}

.site-header--light .header-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand);
  color: var(--white);
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 700;
  transition: opacity var(--transition), transform var(--transition);
}

.site-header--light .header-cta__phone:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.site-header--light .header-cta .btn-primary { display: none; }

.site-header--light .menu-toggle__bar {
  background: var(--gray-700);
}

@media (max-width: 1024px) {
  .site-header.site-header--light .header-nav {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .site-header--light .header-nav {
    background: var(--white);
    border-top: 1px solid var(--gray-100);
  }
  .site-header--light .header-nav__list a {
    padding: 0.75rem 1rem;
    display: block;
  }
  .site-header--light .header-cta__phone {
    margin-top: 0.5rem;
    justify-content: center;
    width: 100%;
  }
}

/* ── Header submenu (Hizmetlerimiz) ──────────────────────────── */
@media (min-width: 1025px) {
  .site-header.site-header--light > .container {
    position: relative;
  }

  .header-nav {
    position: static;
  }

  .header-nav__list > .menu-item-has-children {
    position: static;
  }
}

.header-nav__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav__submenu--services {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(1160px, calc(100vw - 2.5rem));
  min-width: 0;
  max-width: min(1160px, calc(100vw - 2.5rem));
  max-height: calc(100vh - var(--header-height, 80px) - 1.5rem);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  padding-top: 1.25rem;
  display: none;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 0.875rem;
  z-index: 1001;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-300) transparent;
}

.header-nav__submenu--services::-webkit-scrollbar {
  width: 6px;
}

.header-nav__submenu--services::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: var(--radius-full);
}

/* Hover köprüsü — menü ile link arasındaki boşlukta kapanmayı önler */
.header-nav__submenu--services::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -0.875rem;
  height: 0.875rem;
}

@media (min-width: 1025px) {
  .header-nav__list > .menu-item-has-children:hover > .header-nav__submenu--services,
  .header-nav__list > .menu-item-has-children:focus-within > .header-nav__submenu--services,
  .header-nav__list > .menu-item-has-children > .header-nav__submenu--services:hover,
  .header-nav__list > .menu-item-has-children.is-mega-open > .header-nav__submenu--services {
    display: grid;
  }
}

.header-nav__service-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  color: var(--gray-800);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.header-nav__service-card > a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--brand) 25%, var(--gray-100));
}

.header-nav__service-card--featured > a {
  border-color: color-mix(in srgb, var(--brand) 35%, var(--gray-100));
}

@media (min-width: 1025px) {
  .header-nav__submenu--services {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.header-nav__service-card-img {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  line-height: 0;
}

.header-nav__service-card-photo {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center;
  display: block;
}

.header-nav__service-card-photo--placeholder {
  background: var(--gray-100);
}

.header-nav__service-card-gradient {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
}

.header-nav__service-card-body {
  padding: 0.75rem 0.875rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.header-nav__service-card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}

.header-nav__service-card-desc {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .header-nav__list > .menu-item-has-children {
    position: relative;
  }

  .header-nav__submenu--services {
    position: static;
    transform: none;
    min-width: 0;
    max-width: none;
    width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 0 0.75rem;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    max-height: none;
    overflow: visible;
    transition: none;
  }

  .header-nav__submenu--services::before {
    display: none;
  }

  .header-nav__list > .menu-item-has-children.submenu-open > .header-nav__submenu--services {
    display: grid;
    padding-top: 0.5rem;
    padding-bottom: 0.75rem;
  }

  .header-nav__service-card-img {
    display: block;
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    overflow: hidden;
  }

  .header-nav__service-card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .header-nav__service-card > a {
    flex-direction: row;
    align-items: center;
    border: none;
    border-radius: var(--radius);
    background: transparent;
    overflow: visible;
  }

  .header-nav__service-card-body {
    padding: 0.625rem 0.875rem;
  }

  .header-nav__service-card > a:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
    background: color-mix(in srgb, var(--brand) 6%, transparent);
  }

  .header-nav__parent-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
  }

  .header-nav__parent-row .header-nav__parent-link {
    flex: 1;
    min-width: 0;
  }

  .header-nav__submenu-toggle {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: inherit;
    cursor: pointer;
    padding: 0;
  }

  .header-nav__submenu-toggle-icon {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
  }

  .header-nav__list > .menu-item-has-children.submenu-open .header-nav__submenu-toggle-icon {
    transform: rotate(-135deg);
  }
}

@media (min-width: 1025px) {
  .header-nav__parent-row {
    display: contents;
  }

  .header-nav__submenu-toggle {
    display: none;
  }
}

/* ── Hero Figma (Home.tsx) ─────────────────────────────────── */
.hero-figma {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--mesh-bg);
}

.hero-figma::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-figma__stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--brand);
}

.hero-figma__glow {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  opacity: 0.1;
  background: radial-gradient(ellipse at right center, var(--brand) 0%, transparent 70%);
  pointer-events: none;
}

.hero-figma__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 5rem;
}

.hero-figma__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.hero-figma__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-figma__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-figma__highlight {
  color: var(--brand);
}

.hero-figma__subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-figma__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-figma__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-figma__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.hero-figma__trust-item svg {
  color: var(--brand);
  flex-shrink: 0;
}

.hero-figma__visual {
  position: relative;
  height: 500px;
}

.hero-figma__image-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  animation: hero-float 3s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-20px); }
}

.hero-figma__image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-figma__image-frame img,
.hero-figma__photo {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero-figma__image-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 12%, transparent) 0%, rgba(0, 0, 0, 0.22) 100%);
}

.hero-figma__float-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-figma__float-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: rgba(30, 30, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
  color: var(--brand);
  animation: hero-float-icon 3s ease-in-out infinite;
}

.hero-figma__float-icon--1 { top: 8%; left: 6%; animation-delay: 0s; }
.hero-figma__float-icon--2 { top: 14%; right: 4%; animation-delay: 0.4s; }
.hero-figma__float-icon--3 { bottom: 28%; left: 12%; animation-delay: 0.8s; }
.hero-figma__float-icon--4 { bottom: 18%; right: 10%; animation-delay: 1.2s; }

@keyframes hero-float-icon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-figma__stats-card {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-xl);
}

.hero-figma__stats-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--brand);
  color: var(--white);
}

.hero-figma__stats-number {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hero-figma__stats-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
  .hero-figma__inner { grid-template-columns: 1fr; }
  .hero-figma__visual { height: 360px; order: -1; }
}

/* ── Stats Bar Brand ───────────────────────────────────────── */
.stats-bar--brand {
  background: var(--brand);
  padding-block: 4rem;
}

.stats-bar--brand .stats-red-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats-bar--brand .stats-red-bar__number {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stats-bar--brand .stats-red-bar__label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .stats-bar--brand .stats-red-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Home Services Figma ───────────────────────────────────── */
.services-section--figma {
  background: var(--white);
}

.services-section--figma .section-title-gradient {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  background: linear-gradient(to right, #2563eb, #9333ea, #db2777);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.services-grid--figma {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card--figma {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  cursor: pointer;
}

.service-card__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.service-card--figma .service-card__body a {
  position: relative;
  z-index: 2;
}

.service-card--figma .service-card__title a {
  color: inherit;
  text-decoration: none;
}

.service-card--figma .service-card__title a:hover {
  color: var(--brand);
}

.service-card--figma:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-card--figma .service-card__img-wrap,
.service-page-card--figma .service-card__img-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray-100);
  line-height: 0;
  isolation: isolate;
}

.service-card--figma .service-card__img-wrap > *,
.service-page-card--figma .service-card__img-wrap > * {
  margin: 0;
}

.service-card--figma .service-card__img-wrap img,
.service-page-card--figma .service-card__img-wrap img,
.service-card--figma .service-card__img,
.service-page-card--figma .service-card__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  min-width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.service-card--figma:hover .service-card__img,
.service-page-card--figma:hover .service-card__img {
  transform: scale(1.08);
}

.service-card--figma .service-card__gradient,
.service-page-card--figma .service-card__gradient {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  transition: opacity var(--transition);
  pointer-events: none;
}

.service-card--figma:hover .service-card__gradient,
.service-page-card--figma:hover .service-card__gradient {
  opacity: 0.3;
}

.service-card--figma .service-card__icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--brand);
  color: var(--white);
  margin-top: -28px;
  margin-bottom: 1rem;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.service-card--figma .service-card__body {
  padding: 0 1.5rem 1.5rem;
}

.service-card--figma .service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card--figma .service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--brand);
  font-weight: 500;
  margin-top: 1rem;
  transition: gap var(--transition);
}

.service-card--figma:hover .service-card__link {
  gap: 0.5rem;
}

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

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

/* Gradient overlays */
.gradient-blue-cyan { background: linear-gradient(to bottom right, #3b82f6, #06b6d4); }
.gradient-purple-pink { background: linear-gradient(to bottom right, #a855f7, #ec4899); }
.gradient-amber-orange { background: linear-gradient(to bottom right, #f59e0b, #f97316); }
.gradient-green-emerald { background: linear-gradient(to bottom right, #22c55e, #10b981); }
.gradient-red-rose { background: linear-gradient(to bottom right, #ef4444, #f43f5e); }
.gradient-indigo-blue { background: linear-gradient(to bottom right, #6366f1, #3b82f6); }
.gradient-cyan-teal { background: linear-gradient(to bottom right, #06b6d4, #14b8a6); }
.gradient-violet-purple { background: linear-gradient(to bottom right, #8b5cf6, #a855f7); }
.gradient-lime-green { background: linear-gradient(to bottom right, #84cc16, #22c55e); }
.gradient-fuchsia-pink { background: linear-gradient(to bottom right, #d946ef, #ec4899); }
.gradient-orange-red { background: linear-gradient(to bottom right, #f97316, #ef4444); }

/* ── Why Us Figma ──────────────────────────────────────────── */
.why-us-section--figma {
  background: linear-gradient(to bottom right, var(--gray-50), #eff6ff);
}

.why-us-section--figma .section-title span {
  color: var(--brand);
}

.features-grid--figma {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card--figma {
  text-align: center;
}

.feature-card--figma .feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: var(--radius-xl);
  background: #fdf0ee;
  margin-bottom: 1.5rem;
  color: var(--brand);
  transition: transform var(--transition);
}

.feature-card--figma:hover .feature-card__icon {
  transform: rotate(360deg) scale(1.05);
}

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

@media (max-width: 640px) {
  .features-grid--figma { grid-template-columns: 1fr; }
}

/* ── References Table (Home.tsx) ───────────────────────────── */
.refs-section--figma {
  background: var(--mesh-bg);
  padding-block: 5rem;
}

.refs-section--figma__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.refs-section--figma__label-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.refs-section--figma__label-bar {
  width: 32px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--brand);
}

.refs-section--figma__label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.72);
}

.refs-section--figma__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
}

.refs-section--figma__title span {
  color: var(--brand);
}

.refs-section--figma__desc {
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.refs-brand-marquee {
  margin-bottom: 3rem;
  overflow: hidden;
}

.refs-brand-marquee__viewport {
  overflow: hidden;
  container-type: inline-size;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.refs-brand-marquee__track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  padding-block: 0.25rem;
  animation: refs-brand-marquee 32s ease-in-out infinite alternate;
  will-change: transform;
}

.refs-brand-marquee:hover .refs-brand-marquee__track {
  animation-play-state: paused;
}

@keyframes refs-brand-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(min(0px, calc(100cqw - 100%))); }
}

.refs-brand-marquee__item {
  flex: 0 0 300px;
  width: 300px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.refs-brand-marquee__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.refs-grid--figma {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .refs-grid--figma {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.refs-card--figma {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 0;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.refs-card--figma__link {
  display: block;
  padding: 1.5rem 1.75rem;
  color: inherit;
  text-decoration: none;
}

.refs-card--figma:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(232, 71, 42, 0.45);
  transform: translateY(-2px);
}

.refs-card--figma__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.refs-card--figma__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-full);
  background: rgba(232, 71, 42, 0.15);
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--brand);
}

.refs-card--figma__count-wrap {
  text-align: right;
}

.refs-card--figma__count {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  color: var(--brand);
}

.refs-card--figma__count-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.refs-card--figma__name {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.refs-card--figma__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.refs-bottom-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.refs-bottom-stat {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: border-color var(--transition);
}

.refs-bottom-stat:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.refs-bottom-stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.refs-bottom-stat span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 768px) {
  .refs-bottom-stats { grid-template-columns: 1fr; }
  .refs-grid--figma { grid-template-columns: 1fr; }
  .refs-card--figma__count-wrap { text-align: left; }
  .refs-brand-marquee { margin-bottom: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .refs-brand-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .refs-brand-marquee__viewport {
    mask-image: none;
  }
}

/* ── Testimonial Figma ─────────────────────────────────────── */
.testimonial-section--figma .section-title-gradient {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  background: linear-gradient(to right, #2563eb, #9333ea);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-card--figma {
  max-width: 56rem;
  margin-inline: auto;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 2rem 3rem;
  position: relative;
}

.testimonial-card--figma .testimonial-quote-mark {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 4rem;
  color: #2563eb;
  opacity: 0.2;
  line-height: 1;
}

.testimonial-card--figma .testimonial-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-card--figma .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card--figma .testimonial-author__avatar-letter {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-stars--figma {
  display: flex;
  gap: 0.125rem;
  color: #facc15;
}

.testimonial-section--figma .container {
  overflow: hidden;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.testimonial-carousel__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding-block: 0.5rem 1rem;
  animation: testimonial-marquee 70s linear infinite;
  will-change: transform;
}

.testimonial-carousel:hover .testimonial-carousel__track {
  animation-play-state: paused;
}

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

.testimonial-section--figma .testimonial-card--figma {
  flex: 0 0 min(420px, 88vw);
  max-width: 420px;
  margin-inline: 0;
}

.testimonial-section--figma .testimonial-author__info span.testimonial-author__meta {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-weight: 400;
  margin-top: 0.125rem;
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-carousel {
    mask-image: none;
    overflow: visible;
  }

  .testimonial-carousel__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  .testimonial-section--figma .testimonial-card--figma {
    flex: 1 1 100%;
    max-width: 56rem;
  }
}

/* ── CTA Banner Figma ──────────────────────────────────────── */
.cta-banner--brand {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--brand);
}

.cta-banner--brand__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.cta-banner--brand__content {
  padding: 3rem 4rem;
}

.cta-banner--brand__label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.cta-banner--brand__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.cta-banner--brand__desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.cta-banner--brand__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-banner--brand__visual {
  position: relative;
  min-height: 320px;
  display: none;
}

@media (min-width: 768px) {
  .cta-banner--brand__visual { display: block; }
}

.cta-banner--brand__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: multiply;
}

.cta-banner--brand__visual-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-banner--brand__visual-overlay strong {
  display: block;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
}

.cta-banner--brand__visual-overlay span {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .cta-banner--brand__inner { grid-template-columns: 1fr; }
  .cta-banner--brand__content { padding: 2rem; }
}

/* ── Page Hero Gradient ────────────────────────────────────── */
.page-hero--gradient {
  position: relative;
  padding-block: 5rem 8rem;
  background: linear-gradient(
    135deg,
    var(--brand) 0%,
    var(--brand-dark) 55%,
    color-mix(in srgb, var(--brand-dark) 75%, var(--navy-deep)) 100%
  );
  overflow: hidden;
  text-align: center;
}

.page-hero--gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  animation: gradient-pulse 20s ease-in-out infinite;
}

@keyframes gradient-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.1; }
  50% { transform: scale(1.2) rotate(90deg); opacity: 0.2; }
}

.page-hero--gradient .page-hero__title {
  position: relative;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.page-hero--gradient .page-hero__subtitle {
  position: relative;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 48rem;
  margin-inline: auto;
}

.page-hero--gradient .breadcrumb {
  display: none;
}

/* ── Service Page Cards ────────────────────────────────────── */
.services-page-grid--figma {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-page-card--figma {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.service-page-card__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.service-page-card--figma .service-card__body a {
  position: relative;
  z-index: 2;
}

.service-page-card--figma .service-card__title a {
  color: inherit;
  text-decoration: none;
}

.service-page-card--figma .service-card__title a:hover {
  color: var(--brand);
}

.service-page-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 0.25rem;
}

.service-page-card--figma .service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 600;
  color: var(--brand);
}

.service-page-card--figma:hover .service-card__link {
  gap: 0.625rem;
}

.service-page-card--figma:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-page-card--figma .service-card__body {
  padding: 2rem;
}

.service-page-card--figma .service-card__features {
  margin: 1.5rem 0;
}

.service-page-card--figma .service-card__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.service-page-card--figma .service-card__feature svg {
  color: #16a34a;
  flex-shrink: 0;
}

.service-page-card--figma .service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--brand);
  transition: gap var(--transition);
}

.service-page-card--figma:hover .service-card__cta {
  gap: 0.75rem;
}

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

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

/* ── Single Hizmet Page ─────────────────────────────────────── */
.service-single-section {
  background: var(--gray-50);
  padding-block: 4rem 5rem;
}

.service-single-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 2rem;
  align-items: start;
}

.service-article {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.service-article__media {
  position: relative;
  aspect-ratio: 21 / 9;
  background: var(--gray-100);
}

.service-article__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .service-article__media {
    aspect-ratio: 16 / 10;
  }
}

.service-article__media .service-card__gradient {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
}

.service-article__body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

/* Content blocks */
.service-block + .service-block {
  margin-top: 2.75rem;
  padding-top: 2.75rem;
  border-top: 1px solid var(--gray-100);
}

.service-block--intro {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.service-lead {
  margin: 0;
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  line-height: 1.85;
  color: var(--gray-700);
  padding-left: 1.25rem;
  border-left: 4px solid var(--brand);
}

.service-block__header {
  margin-bottom: 1.75rem;
}

.service-block__title {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--gray-900);
  line-height: 1.3;
}

.service-process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.service-process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 1.25rem 1.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.service-process-step:hover {
  border-color: rgba(var(--brand-rgb, 232, 93, 74), 0.35);
  box-shadow: var(--shadow-sm);
}

.service-process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  background: var(--brand);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.service-process-step__body {
  min-width: 0;
}

.service-process-step__title {
  margin: 0 0 0.375rem;
  font-size: 1.0625rem;
  color: var(--gray-900);
}

.service-process-step__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.service-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem;
}

.service-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.125rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
}

.service-benefit-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #fdf0ee;
  color: var(--brand);
  flex-shrink: 0;
}

.service-benefit-item__text {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--gray-700);
}

/* Sidebar */
.service-single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--header-height, 80px) + 1.5rem);
}

.service-scope-card .about-side-card__header {
  margin-bottom: 1rem;
}

.service-scope-card__title {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--navy);
}

.service-scope-list {
  grid-template-columns: 1fr;
}

.service-contact-card {
  text-align: center;
  background: linear-gradient(160deg, var(--navy) 0%, #1a3a5c 100%);
  border: none;
  color: var(--white);
}

.service-contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--brand-light, #ffb4a8);
}

.service-contact-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  color: var(--white);
}

.service-contact-card__text {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.service-contact-card__btn {
  width: 100%;
  margin-bottom: 0.75rem;
}

.service-contact-card__phone {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.service-contact-card__phone:hover {
  color: var(--white);
}

/* Legacy content fallback (pre-sync markup) */
.service-article__body.entry-content p {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.service-article__body.entry-content h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--gray-900);
  margin: 2rem 0 1rem;
}

.service-article__body.entry-content ol.service-steps,
.service-article__body.entry-content ul.service-why {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}

@media (max-width: 1024px) {
  .service-benefits-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .service-single-grid {
    grid-template-columns: 1fr;
  }

  .service-single-sidebar {
    position: static;
  }

  .service-article__media {
    aspect-ratio: 16 / 9;
  }
}

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

  .service-process-step__num {
    width: 2.75rem;
  }
}

/* ── Footer (global layout) ────────────────────────────────── */
.site-footer--figma {
  background: var(--footer-bg);
  color: var(--white);
}

.site-footer--figma .footer-shell {
  position: relative;
  padding-block: 3.75rem 3rem;
}

.site-footer--figma .footer-shell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), color-mix(in srgb, var(--brand) 60%, transparent));
}

.site-footer--figma .footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.05fr) minmax(140px, 0.65fr) minmax(420px, 2fr);
  gap: 3rem 2.5rem;
  align-items: start;
}

.site-footer--figma .footer-cell {
  min-width: 0;
}

.site-footer--figma .footer-heading {
  margin: 0 0 1.125rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.site-footer--figma .footer-cell__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.125rem;
}

.site-footer--figma .footer-cell__head .footer-heading {
  margin-bottom: 0;
}

.site-footer--figma .footer-cell__link-all {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-light, var(--brand));
  white-space: nowrap;
  transition: gap var(--transition), opacity var(--transition);
}

.site-footer--figma .footer-cell__link-all:hover {
  gap: 0.5rem;
  opacity: 0.92;
}

.site-footer--figma .footer-logo {
  display: block;
  width: 120px;
  max-width: 120px;
  line-height: 0;
  flex-shrink: 0;
}

.site-footer--figma .footer-logo .footer-logo__img,
.site-footer--figma .footer-logo img,
.site-footer--figma .footer-logo .custom-logo {
  display: block;
  width: 120px !important;
  max-width: 120px !important;
  height: 32px !important;
  max-height: 32px !important;
  margin: 0;
  object-fit: contain;
  object-position: left center;
  filter: none;
  opacity: 1;
}

.site-footer--figma .footer-tagline {
  margin: 0.875rem 0 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.48);
}

.site-footer--figma .footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.site-footer--figma .footer-meta li {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer--figma .footer-meta a {
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--transition);
}

.site-footer--figma .footer-meta a:hover {
  color: var(--white);
}

.site-footer--figma .footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.site-footer--figma .footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.site-footer--figma .footer-btn--wa {
  background: #25d366;
  color: var(--white);
}

.site-footer--figma .footer-btn--wa:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

.site-footer--figma .footer-btn--outline {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer--figma .footer-btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.site-footer--figma .footer-social {
  display: flex;
  gap: 0.5rem;
}

.site-footer--figma .footer-social__link {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.site-footer--figma .footer-social__link:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
  transform: translateY(-2px);
}

.site-footer--figma .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer--figma .footer-links a {
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.68);
  transition: color var(--transition), transform var(--transition);
}

.site-footer--figma .footer-links a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.site-footer--figma .footer-services-mega {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 1.25rem;
}

.site-footer--figma .footer-services-mega__label {
  margin: 0 0 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer--figma .footer-services-mega .footer-links {
  gap: 0.375rem;
}

.site-footer--figma .footer-services-mega .footer-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.52);
}

.site-footer--figma .footer-services-mega .footer-links a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.site-footer--figma .footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
  padding-block: 1rem;
}

.site-footer--figma .footer-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer--figma .footer-bar__copy {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.34);
}

.site-footer--figma .footer-bar__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.site-footer--figma .footer-bar__legal a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.34);
  transition: color var(--transition);
}

.site-footer--figma .footer-bar__legal a:hover {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1024px) {
  .site-footer--figma .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }

  .site-footer--figma .footer-cell--brand {
    grid-column: 1 / -1;
  }

  .site-footer--figma .footer-cell--services {
    grid-column: 1 / -1;
  }

  .site-footer--figma .footer-services-mega {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-footer--figma .footer-shell {
    padding-block: 3rem 2.25rem;
  }

  .site-footer--figma .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer--figma .footer-cell--brand {
    display: block;
  }

  .site-footer--figma .footer-services-mega {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .site-footer--figma .footer-bar__inner {
    flex-direction: column;
    text-align: center;
  }

  .site-footer--figma .footer-bar__legal {
    justify-content: center;
  }
}

/* ── Kurumsal certificates ─────────────────────────────────── */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.certificate-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: box-shadow var(--transition);
}

.certificate-card:hover {
  box-shadow: var(--shadow-lg);
}

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

.hero-figma__photo--placeholder,
.cta-banner--brand__placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: linear-gradient(135deg, rgba(30, 111, 217, 0.18), rgba(14, 165, 233, 0.28));
  border-radius: inherit;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  color: var(--gray-700);
  line-height: 1.7;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 1.25rem 1.25rem;
  padding: 0;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content strong {
  font-weight: 600;
  color: var(--navy);
}

.legal-content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--brand-dark, var(--brand));
}

.header-logo__text,
.footer-logo__text {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.125rem;
}
