:root {
  --body-bg: #ffff;
  --nav-bg: #11131a;
  --accent: #A3FE28;
  --text-light: rgba(255, 255, 255, 0.72);
  --text-strong: #ffffff;
  --badge-bg: rgba(255, 255, 255, 0.12);
  --stats-surface: #f9fafb;
  --line-height-base: 1.6;
  --line-height-heading: 1.3;
}

* {
  box-sizing: border-box;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #11131a #f1f3f6;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f3f6;
}

::-webkit-scrollbar-thumb {
  background: #11131a;
  border: 3px solid #f1f3f6;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a3fe28;
}

img,
svg,
picture {
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
}

body {
  margin: 0;
  padding: 0;
  background: var(--body-bg);
  color: #111111;
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  line-height: var(--line-height-base);
  min-height: 100vh;
  overflow-x: hidden;
}

.site-header,
.page-main,
.site-footer,
.footer {
  animation: page-enter 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-header { animation-delay: 0.02s; }
.page-main { animation-delay: 0.06s; }
.site-footer,
.footer { animation-delay: 0.1s; }

body.page-is-leaving .site-header,
body.page-is-leaving .page-main,
body.page-is-leaving .site-footer,
body.page-is-leaving .footer {
  opacity: 0;
  transform: translateY(-10px);
  filter: blur(5px);
  transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

/* Global line-height standardization */
p, span, a, li, td, th, label, input, textarea, select, button, div, section, article, aside {
  line-height: var(--line-height-base);
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  line-height: var(--line-height-heading);
}

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

.site-header {
  position: sticky;
  top: 1.5rem;
  z-index: 1000;
  padding: 0 1.5rem;
  transition: top 0.35s ease, padding 0.35s ease;
}

.site-header__container {
  max-width: 860px;
  margin: 0 auto;
  transition: max-width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-shell {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 99px;
  background: var(--nav-bg);
  box-shadow: 0 16px 32px rgba(17, 19, 26, 0.18);
  gap: 1.1rem;
  overflow: visible;
  transition: padding 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    gap 0.35s ease;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: padding 0.35s ease;
}

.nav-logo img {
  display: block;
  height: 36px;
  width: auto;
  border-radius: 8px;
  transition: height 0.35s ease;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 36px rgba(17, 19, 26, 0.3);
  outline: none;
}

.nav-toggle__label {
  pointer-events: none;
}

.nav-toggle__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  transition: transform 0.2s ease;
}

.nav-toggle__icon span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #11131a;
  transition: all 0.3s ease;
  display: block;
}

.nav-toggle.is-active .nav-toggle__icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle__icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.15rem;
}

.nav-menu li { list-style: none; }

.nav-menu__link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
}

.nav-menu__link:hover,
.nav-menu__link:focus-visible {
  color: var(--accent);
  outline: none;
}

.nav-menu__link--active {
  color: var(--text-strong);
  font-weight: 600;
}

.nav-menu__item--cta { display: none; }

/* Dropdown Menu Styles */
.nav-menu__item--has-dropdown {
  position: relative;
}

.nav-menu__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  user-select: none;
}

.nav-menu__dropdown-arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  display: inline-block;
  transition: transform 0.2s ease;
  margin-left: 0.2rem;
}

.nav-menu__item--has-dropdown.is-open .nav-menu__dropdown-arrow {
  transform: rotate(180deg);
}

.nav-menu__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.75rem;
  min-width: 220px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(17, 19, 26, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1000;
  padding: 0.5rem 0;
  list-style: none;
  margin: 0;
}

.nav-menu__item--has-dropdown.is-open .nav-menu__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-menu__dropdown-item {
  list-style: none;
  margin: 0;
}

.nav-menu__dropdown-link {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #11131a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
  border-left: 3px solid transparent;
}

.nav-menu__dropdown-link:hover,
.nav-menu__dropdown-link:focus-visible {
  background: rgba(17, 19, 26, 0.04);
  color: var(--accent);
  border-left-color: var(--accent);
  outline: none;
}

.nav-menu__dropdown-link--active {
  background: rgba(17, 19, 26, 0.06);
  color: var(--accent);
  font-weight: 600;
  border-left-color: var(--accent);
}

.nav-menu__caret {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
  margin-top: -2px;
}

.nav-menu__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: var(--badge-bg);
  color: var(--text-strong);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: #ffffff;
  color: #11131a;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: inset 0 0 0 2px #ffffff, 0 12px 24px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #f0f0f5;
  transform: translateY(-1px);
  outline: none;
}

.nav-cta svg {
  width: 14px;
  height: 14px;
  display: block;
  stroke: currentColor;
}

.nav-cta--desktop { display: inline-flex; }

.language-switcher {
  position: relative;
  flex-shrink: 0;
}

.language-switcher--header {
  display: inline-flex;
  z-index: 20;
}

.language-switcher--header summary {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  list-style: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.language-switcher--header summary::-webkit-details-marker {
  display: none;
}

.language-switcher--header summary:hover,
.language-switcher--header summary:focus-visible {
  background: #ffffff;
  color: #11131a;
  transform: translateY(-1px);
  outline: none;
}

.language-switcher--header svg {
  width: 18px;
  height: 18px;
  display: block;
}

.language-switcher--header summary span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.language-switcher__panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  width: 176px;
  padding: 0.45rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 26, 0.08);
  box-shadow: 0 22px 55px rgba(17, 19, 26, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.language-switcher--header[open] .language-switcher__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-switcher__link {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 0.55rem;
  min-height: 38px;
  padding: 0.35rem 0.45rem;
  border-radius: 12px;
  color: #11131a;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease;
}

.language-switcher__link:hover,
.language-switcher__link:focus-visible,
.language-switcher__link.is-active {
  background: #f1f5f0;
  color: #11131a;
  outline: none;
}

.language-switcher__link.is-active {
  box-shadow: inset 0 0 0 1px rgba(163, 254, 40, 0.75);
}

.language-switcher__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 26px;
  border-radius: 9px;
  background: #11131a;
  color: #ffffff;
  font-size: 0.72rem;
  letter-spacing: 0;
}

.language-switcher__name {
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-menu__language-item {
  display: none;
}

.language-switcher--menu {
  display: flex;
  gap: 0.45rem;
  width: 100%;
}

.language-switcher__option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.language-switcher__option.is-active {
  background: #A3FE28;
  color: #11131a;
}

.language-switcher--floating {
  position: fixed;
  top: 1.35rem;
  right: 1.35rem;
  z-index: 11000;
  width: 48px;
}

.language-switcher--floating summary {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(17, 19, 26, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(17, 19, 26, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  list-style: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.language-switcher--floating summary::-webkit-details-marker {
  display: none;
}

.language-switcher--floating summary:hover,
.language-switcher--floating summary:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(163, 254, 40, 0.9);
  box-shadow: 0 22px 54px rgba(17, 19, 26, 0.18);
  outline: none;
}

.language-switcher__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  font-size: 1.28rem;
  line-height: 1;
  background: #f4f5f7;
  box-shadow: inset 0 0 0 1px rgba(17, 19, 26, 0.08);
}

.language-switcher--floating .language-switcher__panel {
  top: calc(100% + 0.7rem);
  right: 0;
  width: 190px;
}

.language-switcher--floating[open] .language-switcher__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-switcher__link .language-switcher__flag {
  width: 28px;
  height: 28px;
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .language-switcher--floating {
    top: auto;
    right: auto;
    left: 1rem;
    bottom: 1rem;
    width: 50px;
  }

  .language-switcher--floating summary {
    width: 50px;
    height: 50px;
    box-shadow: 0 18px 42px rgba(17, 19, 26, 0.2);
  }

  .language-switcher--floating .language-switcher__panel {
    top: auto;
    right: auto;
    left: 0;
    bottom: calc(100% + 0.7rem);
    transform: translateY(8px);
  }

  .language-switcher--floating[open] .language-switcher__panel {
    transform: translateY(0);
  }
}

.site-header--compact {
  top: 1rem;
  padding: 0 1rem;
}

.site-header--compact .site-header__container {
  max-width: 760px;
}

.site-header--compact .nav-shell {
  padding: 0;
  gap: 0;
  border-radius: 9px;
  box-shadow: 0 14px 34px rgba(17, 19, 26, 0.2);
}

.site-header--compact .nav-logo,
.site-header--compact .nav-cta,
.site-header--compact .language-switcher--header {
  min-height: 52px;
  padding: 0 1rem;
}

.site-header--compact .nav-logo img {
  height: 32px;
}

.site-header--compact .nav-menu-overlay {
  min-height: 52px;
  padding: 0 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header--compact .nav-menu {
  gap: 1rem;
}

.site-header--compact .nav-menu__link {
  font-size: 0.88rem;
}

.site-header--compact .nav-cta {
  align-items: center;
  justify-content: center;
}

.page-main {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.page-main > .logos,
.page-main > .faq {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.hero {
  position: relative;
  padding: 4rem 0 0;
  margin-top: 2rem;
}

.hero__inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
  perspective: 950px;
  perspective-origin: 50% 48%;
  --hero-tilt: 18deg;
  --hero-lift: 0px;
}

.hero__floating {
  position: absolute;
  width: 280px;
  max-width: 60vw;
  padding: 0;
  border-radius: 0;
  color: #425066;
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero__floating::before { display: none; }

.hero__floating cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-weight: 600;
  color: #11131a;
}

/* Quote slider inside floating cards */
.quote-slider {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  cursor: grab;
  user-select: none;
}

.quote-slider:active {
  cursor: grabbing;
}

.quote-card {
  position: absolute;
  width: 100%;
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 8px 22px rgba(17, 19, 26, 0.06);
  transition: opacity 0.5s ease, transform 0.5s ease, scale 0.5s ease;
  opacity: 0.4;
  transform: translateY(0) scale(0.9);
  pointer-events: none;
}

.quote-card.is-visible {
  opacity: 0.4;
  transform: translateY(0) scale(0.9);
}

.quote-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 2;
  pointer-events: auto;
}

.quote-card.is-prev {
  transform: translateY(-100px) scale(0.85);
  opacity: 0.3;
}

.quote-card.is-next {
  transform: translateY(100px) scale(0.85);
  opacity: 0.3;
}

.hero__floating--left { left: -140px; top: 180px; transform: rotate(-9deg); }
.hero__floating--right { right: -140px; top: 130px; transform: rotate(8deg); }

.hero__announcement {
  display: inline-flex;
  align-items: center;
  width: min(640px, calc(100vw - 2rem));
  min-height: 50px;
  overflow: hidden;
  padding: 0;
  border: 1px solid #e5eaf0;
  border-radius: 99px;
  background: transparent;
  margin-bottom: 2.25rem;
}

.hero__announcement-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: hero-announcement-scroll 22s linear infinite;
  will-change: transform;
}

.hero__announcement-set {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
  padding: 0 1.15rem;
  color: #11131a;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0;
}

.hero__announcement-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  line-height: 1;
  transform-box: fill-box;
  transform-origin: center center;
  animation: hero-announcement-star 1.8s linear infinite;
  flex: 0 0 auto;
}

.hero__announcement-star img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center center;
  pointer-events: none;
}

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

@keyframes hero-announcement-star {
  from { transform: rotateZ(0deg); }
  to { transform: rotateZ(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__announcement-track,
  .hero__announcement-star {
    animation: none;
  }

  .hero__stage {
    transform: none;
    transition: none;
  }
}

.hero__chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem 0.35rem 2.3rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
}

.hero__chip--available {
  color: #0f7b49;
  border-color: rgba(60, 186, 140, 0.55);
  background: rgba(60, 186, 140, 0.18);
  overflow: visible;
}

.hero__chip--available::before,
.hero__chip--available::after {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.hero__chip--available::before {
  width: 9px;
  height: 9px;
  background: rgb(60, 186, 140);
  z-index: 1;
}

.hero__chip--available::after {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(60, 186, 140, 0.55);
  animation: pulse-ring 3.6s ease-in-out infinite;
}

.hero__chip-label { position: relative; z-index: 2; }

.hero__announcement a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.2px;
  color: #11131a;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  background: transparent;
  border: 1px solid transparent;
}

.hero__link--muted { color: rgba(17, 19, 26, 0.65); }

.hero__link--cta { border: 1px solid #e5eaf0; }

.hero__announcement a:hover,
.hero__announcement a:focus-visible {
  background: rgba(17, 19, 26, 0.06);
  color: #11131a;
  outline: none;
  border-color: #d9dfe8;
}

.hero__chip--available:hover,
.hero__chip--available:focus-visible {
  background: rgba(59, 214, 134, 0.22);
  border-color: rgba(59, 214, 134, 0.6);
  color: #0f7b49;
}

.hero__link--cta svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.hero__link--cta:hover svg,
.hero__link--cta:focus-visible svg {
  transform: translate(1px, -1px);
}

.hero__stage {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(var(--hero-tilt)) translateY(var(--hero-lift));
  transform-origin: 50% 45%;
  transition: transform 0.12s linear;
  will-change: transform;
}

.hero__title {
  margin: 0 auto 1.2rem;
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #11131a;
  letter-spacing: 0;
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 0;
  transform-style: preserve-3d;
}

.hero__headline {
  display: block;
  flex: 0 0 100%;
  transform: translateZ(22px);
}

.hero__headline--primary { color: #11131a; }

.hero__headline--muted { color: rgba(17, 19, 26, 0.55); }

.hero__headline--animated {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero__headline--animated[data-text="Değer katan tasarımlar."] {
  animation-delay: 0.2s;
}

.hero__headline--animated[data-text="Veri odaklı çözümler."] {
  animation-delay: 0.4s;
}

.hero__headline--animated[data-text="Sürekli büyüme."] {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateZ(22px) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateZ(22px) translateY(0);
  }
}

.hero__token {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.8rem;
  background: rgba(17, 19, 26, 0.04);
  border: 1px solid #e5eaf0;
  margin: 0;
  transform: translateY(-3px);
}

.hero__token svg,
.hero__token img {
  width: 60%;
  height: 60%;
  display: block;
}

.hero__subtitle {
  margin: 0 auto;
  max-width: 560px;
  color: #59616f;
  font-size: 1.05rem;
  line-height: 1.7;
  transform: translateZ(10px);
}

.hero__cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.8rem;
  transform: translateZ(26px);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.95rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.2px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  color: #11131a;
}

.hero-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  transition: stroke 0.25s ease;
}

.hero-btn--primary {
  background: #11131a;
  border-color: #11131a;
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(17, 19, 26, 0.25);
}

.hero-btn--primary:hover,
.hero-btn--primary:focus-visible {
  background: #ffffff;
  color: #11131a;
  border-color: rgba(17, 19, 26, 0.2);
  outline: none;
}

.hero-btn--secondary {
  background: transparent;
  border-color: #d9dfe8;
}

.hero-btn--secondary:hover,
.hero-btn--secondary:focus-visible {
  background: #11131a;
  color: #ffffff;
  border-color: #11131a;
  outline: none;
  box-shadow: 0 16px 32px rgba(17, 19, 26, 0.18);
}

.hero__social-proof {
  margin-top: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  color: #59616f;
  font-size: 0.94rem;
  transform: translateZ(16px);
}

.hero__avatars {
  display: inline-flex;
  align-items: center;
}

.hero-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(17, 19, 26, 0.18);
  overflow: hidden;
}

.hero-avatar + .hero-avatar { margin-left: -14px; }

.hero-avatar img {
  width: 58%;
  height: 58%;
  object-fit: contain;
  display: block;
}

.hero-avatar--meta {
  background: #ffffff;
  border-color: rgba(17, 19, 26, 0.08);
}

.hero__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.hero__rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #ffb742;
  font-size: 1rem;
}

.hero__rating-text { color: #59616f; }

.services {
  margin-top: 5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.services__intro {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
}

.services__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: rgba(17, 19, 26, 0.5);
}

.services__subtitle::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid #A3FE28;
  border-radius: 2px;
}

.services__title {
  margin: 0;
  font-size: clamp(2.5rem, 4.8vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.6px;
  color: #11131a;
}

.services__title span {
  color: rgba(17, 19, 26, 0.55);
}

.services__board {
  width: 100%;
  background: #f9fafb;
  border-radius: 48px;
  padding: 2.8rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  width: 100%;
}

.service-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border: 1px solid rgba(17, 19, 26, 0.05);
  min-height: 100%;
}

.service-card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #11131a;
}

.service-card__text {
  margin: 0;
  color: #59616f;
  font-size: 0.97rem;
  line-height: 1.6;
}

.service-card__media {
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.2), rgba(17, 19, 26, 0.08));
}

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

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(17, 19, 26, 0.06);
  color: #3b4150;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1;
}

.service-tag__icon {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: rgba(17, 19, 26, 0.35);
  flex-shrink: 0;
}

.service-tag--break {
  flex-basis: 100%;
  height: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  pointer-events: none;
}

.service-card__footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.service-button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid #d9dfe8;
  background: transparent;
  color: #11131a;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.service-button svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.service-button:hover,
.service-button:focus-visible {
  background: #11131a;
  color: #ffffff;
  border-color: #11131a;
  outline: none;
}

.service-button:hover svg,
.service-button:focus-visible svg {
  transform: translate(1px, -1px);
}

.service-card--motion {
  position: relative;
  padding-right: 18rem;
}

.service-card--motion .service-motion-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-height: 100%;
}

.service-card--motion .service-motion-body .service-button {
  margin-top: auto;
  width: fit-content;
}

.service-card--motion .service-card__panel {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 14rem;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 26, 0.08);
  border-radius: 20px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.service-card--motion .service-card__panel-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(17, 19, 26, 0.55);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.service-card--motion .service-card__panel-item:nth-last-child(1) { opacity: 0.35; }
.service-card--motion .service-card__panel-item:nth-last-child(2) { opacity: 0.5; }
.service-card--motion .service-card__panel-item:nth-last-child(3) { opacity: 0.65; }
.service-card--motion .service-card__panel-item:nth-last-child(4) { opacity: 0.8; }
.service-card--motion .service-card__panel-item:nth-last-child(n+5) { opacity: 1; }

.service-card--motion .service-card__panel-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(17, 19, 26, 0.18);
}

.service-card--motion .service-card__panel-item.is-active {
  color: #11131a;
  font-weight: 600;
  opacity: 1;
}

.service-card--motion .service-card__panel-item.is-active .service-card__panel-bullet {
  background: #A3FE28;
  box-shadow: 0 0 0 5px rgba(255, 90, 95, 0.12);
}

.service-card--mvp .service-card__media {
  margin-top: 1.4rem;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(17, 19, 26, 0) 0%, rgba(17, 19, 26, 0.2) 100%);
}

.service-card--mvp .service-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card--cta {
  background: #11131a;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 3rem 2.6rem 2.4rem;
  overflow: hidden;
  position: relative;
}

.service-card--cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05), transparent 60%);
  pointer-events: none;
}

.service-card--cta .service-card__title {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0 0 0.5rem;
}

.service-card__headline {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #ffffff;
}

.service-card__headline--muted {
  color: rgba(255, 255, 255, 0.6);
}

.service-card--cta .service-button {
  border-color: #ffffff;
  background: #ffffff;
  color: #11131a;
  padding: 0.55rem 1.4rem;
}

.service-card--cta .service-button:hover,
.service-card--cta .service-button:focus-visible {
  background: #ffffff;
  color: #11131a;
  border-color: #ffffff;
  box-shadow: none;
}

.service-card--cta .service-button:hover svg,
.service-card--cta .service-button:focus-visible svg {
  transform: none;
}

.marquee {
  position: relative;
  margin-top: 4.5rem;
  padding: 2.5rem 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.marquee__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 1.25rem 0;
  width: 100%;
  max-width: none;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.marquee__viewport.is-dragging { cursor: grabbing; }

.marquee__viewport::before,
.marquee__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(40px, 12vw, 160px);
  pointer-events: none;
  z-index: 2;
}

.marquee__viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--body-bg) 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee__viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--body-bg) 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee__track {
  display: flex;
  gap: 1.85rem;
  width: max-content;
  animation: marquee-scroll 85s linear infinite;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  will-change: transform;
}

.marquee__viewport:hover .marquee__track,
.marquee__viewport:focus-within .marquee__track,
.marquee__track.is-paused {
  animation-play-state: paused;
}

.marquee__track.is-dragging {
  animation: none;
}

.marquee__item {
  flex: 0 0 auto;
  width: clamp(280px, 22vw, 380px);
  border-radius: 28px;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 26, 0.08);
  transform: translateZ(0);
}

.marquee__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.marquee__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.marquee__item:hover .marquee__media img { transform: scale(1.04); }

.marquee__body {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.35rem 1.6rem 1.45rem;
}

.marquee__info { text-align: left; }

.marquee__heading {
  font-size: 1.08rem;
  font-weight: 600;
  color: #11131a;
  margin: 0 0 0.3rem;
}

.marquee__category {
  margin: 0;
  color: #59616f;
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.15px;
}

.marquee__link {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 600;
  color: #11131a;
  text-decoration: none;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 19, 26, 0.12);
  white-space: nowrap;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.marquee__link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.marquee__link:hover,
.marquee__link:focus-visible {
  background: #11131a;
  color: #ffffff;
  border-color: #11131a;
  outline: none;
}

.marquee__link:hover svg,
.marquee__link:focus-visible svg {
  transform: translate(1px, -1px);
}

.logos {
  margin-top: 5rem;
  text-align: center;
  position: relative;
  padding: 1.5rem 0;
}

.about-hero + .logos {
  margin-top: 0;
}

.page-main .logos {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.logos__title {
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: rgba(17, 19, 26, 0.45);
  margin-bottom: 1.9rem;
}

.logos__viewport {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 2rem;
}

.logos__viewport::before,
.logos__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}

.logos__viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--body-bg) 0%, rgba(255, 255, 255, 0) 100%);
}


.logos__viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--body-bg) 0%, rgba(255, 255, 255, 0) 100%);
}

.logos__track {
  display: flex;
  align-items: center;
  gap: clamp(4rem, 12vw, 6.5rem);
  width: max-content;
  animation: logos-scroll 60s linear infinite;
}

.logos__track:hover { animation-play-state: paused; }

.logos__item {
  flex-shrink: 0;
  padding: 0.75rem 1rem;
}

.logos__item img {
  width: 86px;
  height: 32px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.82);
  opacity: 0.75;
  transition: opacity 0.2s ease, filter 0.2s ease;
  display: block;
}

.logos__item img:hover,
.logos__item img:focus-visible {
  filter: grayscale(20%) brightness(1);
  opacity: 1;
  outline: none;
}

.logos__item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.impact {
  max-width: 1200px;
  margin: 5.5rem auto 0;
  padding: 0 clamp(1rem, 3vw, 1.5rem) clamp(3.5rem, 7vw, 5rem);
  text-align: center;
}

.impact__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: rgba(17, 19, 26, 0.45);
  margin-bottom: 1rem;
}

.impact__subtitle::before,
.impact__subtitle::after {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid rgba(17, 19, 26, 0.18);
  border-radius: 3px;
}

.impact__title {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4.5vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.6px;
  color: #11131a;
}

.impact__title span { color: rgba(17, 19, 26, 0.6); }

.impact__description {
  margin: 0 auto 2.6rem;
  max-width: 620px;
  color: #59616f;
  font-size: 1.03rem;
  line-height: 1.7;
}

.impact__grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.impact-card {
  background: var(--stats-surface);
  border-radius: 24px;
  padding: 2.1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  min-height: 100%;
}

.impact-card__value {
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  font-weight: 700;
  color: #11131a;
  font-variant-numeric: tabular-nums;
}

.impact-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(17, 19, 26, 0.72);
  text-align: left;
}

.impact-card__desc {
  margin: 0;
  color: #59616f;
  font-size: 0.96rem;
  line-height: 1.6;
  text-align: left;
}

@keyframes pulse-ring {
  0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0.4; }
  50% { opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes page-enter {
  0% {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .page-main,
  .site-footer,
  .footer {
    animation: none;
  }

  body.page-is-leaving .site-header,
  body.page-is-leaving .page-main,
  body.page-is-leaving .site-footer,
  body.page-is-leaving .footer {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@keyframes logos-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Trust (Bizi Tercih Edenler) */
.trust {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 5rem 0 6rem;
  overflow: hidden;
}
.trust .container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem, 3vw, 24px); }
.trust__eyebrow { display:inline-flex; align-items:center; gap:.4rem; color:#11131a; opacity:.7; font-weight:600; font-size:.9rem; }
.trust__title { margin:.6rem 0 .6rem; text-align:center; font-size: clamp(1.9rem, 3.6vw, 2.6rem); letter-spacing:-.3px; }
.trust__desc { text-align:center; color:#59616f; max-width: 700px; margin: 0 auto 1rem; }
.trust__cta { display:inline-flex; align-items:center; gap:.4rem; padding:.6rem .9rem; border-radius:999px; border:1px solid #e2e7ee; background:#fff; color:#11131a; text-decoration:none; font-weight:600; box-shadow:0 10px 24px rgba(17,19,26,.08); }
.trust__head { text-align:center; margin-bottom: 1.6rem; }
.trust__viewport {
  position:relative;
  overflow:hidden;
  width: 100vw;
  max-width: 100vw;
  margin: -1.5rem 0;
  padding: 1.5rem 0;
}
.trust__viewport::before, .trust__viewport::after {
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:clamp(64px, 13vw, 150px);
  pointer-events:none;
  z-index:3;
}
.trust__viewport::before { left:0; background:linear-gradient(to right, #fff 0%, rgba(255,255,255,.92) 22%, rgba(255,255,255,0) 100%); }
.trust__viewport::after { right:0; background:linear-gradient(to left, #fff 0%, rgba(255,255,255,.92) 22%, rgba(255,255,255,0) 100%); }
.trust__track { display:flex; gap: 24px; will-change: transform; padding: .5rem 0; }
.trust-card { min-width: clamp(280px, calc((100vw - 72px) / 4), 420px); max-width: clamp(280px, calc((100vw - 72px) / 4), 420px); background:#fff; border:1px solid #eef1f5; border-radius:16px; padding:1rem; box-shadow:0 14px 34px rgba(17,19,26,.08); display:flex; gap:.9rem; align-items:flex-start; transition: transform .25s ease, opacity .25s ease; opacity:.72; transform: translateZ(0) scale(.96); backface-visibility:hidden; }
.trust-card.is-focus { opacity:1; transform: translateZ(0) scale(1); }
.trust-card__avatar { width:60px; height:60px; min-width:60px; min-height:60px; max-width:500px; max-height:500px; border-radius:50%; background:#eef1f5; display:inline-block; overflow:hidden; flex-shrink:0; }
.trust-card__avatar img { width:100%; height:100%; max-width:500px; max-height:500px; object-fit: contain; display:block; border-radius:inherit; padding:4px; box-sizing:border-box; }
.trust-card__name { margin:0; font-weight:700; color:#11131a; }
.trust-card__meta { margin:0; color:#6a7382; font-size:.9rem; }
.trust-card__text { margin:.4rem 0 0; color:#59616f; line-height:1.55; }
.trust-card__stars { display:inline-flex; gap:2px; color:#f59e0b; }
@media (max-width: 768px) {
  .trust__viewport { margin: -0.75rem 0; padding: 1rem 0; }
  .trust__track { gap: 14px; }
  .trust-card { min-width: min(84vw, 340px); max-width: min(84vw, 340px); opacity: 1; transform: translateZ(0); }
  .trust-card.is-focus { transform: translateZ(0); }
  .trust-card__avatar { width: 52px; height: 52px; min-width: 52px; min-height: 52px; }
  .trust__viewport::before, .trust__viewport::after { width:60px; }
}

/* Process Timeline */
.process { padding: 6rem 0 7rem; }
.process .container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1rem, 3vw, 24px); }
.process__grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(3rem, 8vw, 5rem); align-items: start; }
.process__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17, 19, 26, 0.7);
  position: relative;
  padding-left: 1.8rem;
}
.process__eyebrow::before,
.process__eyebrow::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  opacity: 0.65;
}
.process__eyebrow::before {
  left: 0;
  top: -6px;
  transform: rotate(-45deg);
}
.process__eyebrow::after {
  display: none;
}
.process__title { margin: 1.2rem 0 1.4rem; font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -0.45px; }
.process__title span { color: #636c83; font-weight: 500; display: block; }
.process__desc { color:#636c83; max-width: 480px; font-size: 1.02rem; line-height: 1.7; }
.process__rail-wrap { position: relative; }
.process__rail {
  position:absolute;
  left: 50%;
  top:0;
  bottom:0;
  width:3px;
  background: rgba(255, 90, 95, 0.18);
  border-radius: 999px;
  overflow:visible;
  z-index: 1;
  transform: translateX(-50%);
}
.process__progress { position:absolute; left:0; top:0; width:100%; height:0; background: var(--accent); border-radius:999px; transition: height .22s ease-out; z-index: 2; }
.process__steps { display:flex; flex-direction:column; gap: clamp(3rem, 5vw, 4.5rem); position: relative; }
.process__step { opacity:0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; position: relative; }
.process__step.is-revealed { opacity:1; transform: translateY(0); }
.process__item { position: relative; display: block; }
.process__marker {
  position:absolute;
  width:44px;
  height:44px;
  border-radius:999px;
  border:2px solid rgba(208, 214, 224, 0.9);
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  font-size:0.95rem;
  color:#232733;
  box-shadow: 0 10px 18px rgba(17, 19, 26, 0.08);
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 3;
}
.process__content {
  position:absolute;
  right: 0;
  top: 0;
  width: calc(100% - 80px);
  max-width: 480px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 26, 0.08);
  border-radius: 20px;
  padding: 1.6rem 1.8rem;
  box-shadow: 0 8px 24px rgba(17, 19, 26, 0.06);
  display:flex;
  flex-direction:column;
  gap:0.5rem;
}
.process__content::after {
  display: none;
}
.process__step.is-active .process__marker {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(255, 90, 95, 0.25);
}
.process__step.is-active .process__content { 
  border-color: rgba(255, 90, 95, 0.2);
  box-shadow: 0 12px 32px rgba(17, 19, 26, 0.1);
}
.process__step-title { margin:0; font-weight:700; color:#11131a; font-size:1.32rem; letter-spacing:-0.25px; }
.process__step-desc { margin:0; color:#5a6377; line-height:1.68; font-size:0.98rem; }
@media (max-width: 992px) {
  .process {
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(5rem, 10vw, 7rem);
  }
  .process__grid { 
    grid-template-columns: 1fr; 
    gap: 2rem;
  }
  .process__rail-wrap { padding-left: 0; }
  .process__rail { left: 50%; }
  .process__marker { left: 50%; }
  .process__content { 
    position: relative;
    right: auto;
    top: 2.5rem;
    width: 100%;
    max-width: 100%;
    margin-top: 0.5rem;
  }
  .process__step-title {
    font-size: clamp(1.15rem, 3vw, 1.32rem);
  }
  .process__step-desc {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .process {
    padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(4rem, 8vw, 5.5rem);
  }
  .process__grid {
    gap: 1.5rem;
  }
  .process__eyebrow {
    font-size: 0.85rem;
    padding-left: 1.5rem;
  }
  .process__content {
    padding: 1.25rem 1.5rem;
  }
  .process__step-title {
    font-size: 1.1rem;
  }
  .process__step-desc {
    font-size: 0.9rem;
  }
}

/* FAQ */
.faq { padding: 6rem 0 7rem; background:#ffffff; }
.faq .container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1rem, 3vw, 24px); }
.faq__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem, 6vw, 4rem); align-items: start; }
.faq__intro { display: flex; flex-direction: column; gap: 1.4rem; max-width: 360px; }
.faq__eyebrow {
  display:inline-flex;
  align-items:center;
  gap:0.75rem;
  font-weight:600;
  font-size:0.85rem;
  letter-spacing:0.28em;
  text-transform:uppercase;
  color: rgba(17,19,26,0.5);
  padding: 0 1.5rem;
  position:relative;
}
.faq__eyebrow::before {
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform: translateY(-50%) rotate(-45deg);
  width:8px;
  height:8px;
  border-top:1.5px solid var(--accent);
  border-left:1.5px solid var(--accent);
}
.faq__eyebrow::after {
  content:"";
  position:absolute;
  right:0;
  top:50%;
  transform: translateY(-50%) rotate(135deg);
  width:8px;
  height:8px;
  border-top:1.5px solid var(--accent);
  border-right:1.5px solid var(--accent);
}
.faq__title {
  margin:0;
  font-size: clamp(1.75rem, 3.8vw, 2.5rem);
  letter-spacing:-0.35px;
  line-height:1.15;
  color:#11131a;
}
.faq__title span { color:#636c83; font-weight:500; }
.faq__subtitle { margin:0; color:#5a6377; max-width:420px; font-size:1.02rem; line-height:1.7; }
.faq__content { display:flex; flex-direction:column; gap:2.4rem; }
.faq__list { display:flex; flex-direction:column; gap:0; border-radius:0; padding:0; box-shadow:none; border:none; background:transparent; }
.faq-item { 
  border-bottom:1px solid rgba(17,19,26,0.08); 
  padding:0; 
  transition: all 0.3s ease; 
  background:transparent; 
  overflow: hidden;
}
.faq-item:last-child { border-bottom:none; }
.faq-item.is-open { background: transparent; }
.faq-item__toggle {
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  background:none;
  border:none;
  padding:1.5rem 0;
  text-align:left;
  cursor:pointer;
  gap:1.5rem;
  transition: all 0.2s ease;
}
.faq-item__toggle:hover {
  opacity: 0.8;
}
.faq-item__question { 
  font-size:1.05rem; 
  font-weight:600; 
  color:#11131a;
  line-height: 1.4;
  text-align: left;
  flex: 1;
}
.faq-item__icon {
  position:relative;
  width:32px;
  height:32px;
  border-radius:50%;
  background:#f9fafb;
  border:1px solid rgba(17,19,26,0.1);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.faq-item.is-open .faq-item__icon { 
  background: #11131a;
  border-color: #11131a;
}
.faq-icon__line {
  position:absolute;
  width:12px;
  height:2px;
  border-radius:2px;
  background:#11131a;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.faq-item__icon .faq-icon__line {
  background:#11131a;
}
.faq-item.is-open .faq-item__icon .faq-icon__line {
  background:#ffffff;
}
.faq-icon__line:nth-child(1) { 
  transform: rotate(0deg); 
}
.faq-icon__line:nth-child(2) { 
  transform: rotate(90deg); 
}
.faq-item.is-open .faq-icon__line:nth-child(2) { 
  opacity:0; 
  transform: rotate(90deg) scaleX(0); 
}
.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  color:#5a6377;
  font-size:0.98rem;
  line-height:1.68;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}
.faq-item.is-open .faq-item__panel { 
  max-height: 500px;
  padding: 0 0 1.5rem 0;
  opacity: 1;
}
.faq-item__panel p {
  margin: 0;
  padding: 0;
}
.faq__cta {
  max-width: 360px;
  background:#F9FAFB;
  border-radius:24px;
  padding:2rem 2.2rem;
  border:none;
  display:flex;
  flex-direction:column;
  gap:1rem;
  margin-top: clamp(2.4rem, 6vh, 3.4rem);
  box-shadow: 0 2px 8px rgba(17,19,26,0.04);
}
.faq__cta-title { margin:0; font-size:1.15rem; font-weight:600; color:#11131a; }
.faq__cta-text { margin:0; color:#5a6377; font-size:0.95rem; line-height:1.6; }
.faq__cta-button {
  align-self:flex-start;
  display:inline-flex;
  align-items:center;
  gap:0.5rem;
  padding:0.65rem 1.2rem;
  border-radius:999px;
  background:#ffffff;
  border:1px solid rgba(17,19,26,0.12);
  box-shadow:0 2px 8px rgba(17,19,26,0.06);
  color:#11131a;
  text-decoration:none;
  font-weight:600;
  font-size:0.9rem;
  transition:all 0.2s ease;
}
.faq__cta-button svg { width:12px; height:12px; stroke:currentColor; transition: transform 0.2s ease; }
.faq__cta-button:hover,
.faq__cta-button:focus-visible {
  border-color: var(--accent);
  box-shadow:0 4px 12px rgba(17,19,26,0.1);
  transform: translateY(-1px);
  outline:none;
}
.faq__cta-button:hover svg,
.faq__cta-button:focus-visible svg {
  transform: translate(2px, -2px);
}
@media (max-width: 992px) {
  .faq {
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(5rem, 10vw, 7rem);
  }
  .faq__grid { 
    grid-template-columns: 1fr; 
    gap: 2rem;
  }
  .faq__intro { 
    position: static; 
    align-items: flex-start; 
    max-width: 100%;
    gap: 1.2rem;
  }
  .faq__title {
    font-size: clamp(1.6rem, 4vw, 2rem);
  }
  .faq__subtitle {
    font-size: 0.95rem;
    max-width: 100%;
  }
  .faq__cta { 
    margin-left: 0; 
  }
}

@media (max-width: 600px) {
  .faq {
    padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(4rem, 8vw, 5.5rem);
  }
  .faq__grid {
    gap: 1.5rem;
  }
  .faq__intro {
    text-align: center;
    align-items: center;
  }
  .faq__eyebrow {
    font-size: 0.8rem;
    padding: 0 1.25rem;
    display: inline-flex;
    justify-content: center;
    margin: 0 auto;
  }
  .faq__title {
    font-size: clamp(1.5rem, 5vw, 1.9rem);
    text-align: center;
  }
  .faq__subtitle {
    font-size: 0.9rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .faq-item__question {
    font-size: 0.95rem;
  }
  .faq-item__answer {
    font-size: 0.9rem;
  }
}

/* Footer */
.footer {
  background: #0f1116;
  position: relative;
  overflow: hidden;
  width: calc(100% - clamp(2rem, 4vw, 3rem) * 2);
  margin: 0 clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 0vw, 0rem);
  border-radius: 52px;
}

.footer__wrapper {
  margin: 0;
  padding: 0;
}

.footer__watermark-logo {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(18rem, 40vw, 32rem);
  height: auto;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
  object-fit: contain;
}

/* Book a Call Section */
.footer__cta-section {
  padding: clamp(5rem, 8vw, 6.5rem) 0 clamp(4rem, 7vw, 5.5rem);
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer__cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.footer__cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
}

.footer__cta-eyebrow svg {
  width: 10px;
  height: 10px;
  stroke: var(--accent);
  flex-shrink: 0;
}

.footer__cta-title {
  margin: 0 0 1.2rem;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.footer__cta-desc {
  margin: 0 auto 2.5rem;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
}

.footer__client-logos-wrapper {
  overflow: hidden;
  margin-bottom: 2.5rem;
  position: relative;
  width: 100%;
}

.footer__client-logos-wrapper::before,
.footer__client-logos-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(60px, 12vw, 120px);
  pointer-events: none;
  z-index: 1;
}

.footer__client-logos-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #0f1116 0%, rgba(15, 17, 22, 0.95) 30%, transparent 100%);
}

.footer__client-logos-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #0f1116 0%, rgba(15, 17, 22, 0.95) 30%, transparent 100%);
}

.footer__client-logos-track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  width: fit-content;
  will-change: transform;
}

.footer__client-logo {
  flex-shrink: 0;
  width: clamp(80px, 12vw, 140px);
  height: clamp(40px, 6vw, 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.footer__client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.3;
}

.footer__cta-button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer__cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: #ffffff;
  color: #11131a;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 0;
}

.footer__cta-button:hover,
.footer__cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.3);
  outline: none;
}

.footer__cta-button svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
}

/* Main Footer Content */
.footer__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(130px, 0.7fr) minmax(130px, 0.7fr) minmax(300px, 1.3fr);
  gap: clamp(2.4rem, 4vw, 4rem);
  padding-bottom: clamp(3rem, 5vw, 4rem);
  align-items: start;
}

.footer__about {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.footer__brandmark {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.2s ease;
  margin-bottom: 0.5rem;
}

.footer__brandmark:hover {
  opacity: 0.8;
}

.footer__logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.footer__about-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 285px;
}

.footer__copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  margin-top: auto;
}

.footer__column-title {
  margin: 0 0 1.4rem;
  font-size: 0.94rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.footer__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer__links a svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  flex-shrink: 0;
  opacity: 0.7;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: #ffffff;
  transform: translateX(3px);
  outline: none;
}

.footer__links a:hover svg,
.footer__links a:focus-visible svg {
  opacity: 1;
}

.footer__newsletter {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer__newsletter-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 360px;
}

.footer__form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 0.42rem 0.42rem 0.42rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.2s ease, background 0.2s ease;
  margin-bottom: 1.5rem;
  overflow: visible;
  max-width: 360px;
}

.footer__form:focus-within {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.footer__form input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.9rem;
  min-width: 0;
  padding: 0;
}

.footer__form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.footer__form input:focus-visible {
  outline: none;
}

.footer__form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  border: none;
  background: #A3FE28;
  color: #11131a;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(163, 254, 40, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
}

.footer__form button svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
}

.footer__form button:hover,
.footer__form button:focus-visible {
  transform: scale(1.05);
  background: #b7ff55;
  box-shadow: 0 12px 28px rgba(163, 254, 40, 0.26);
  outline: none;
}

.footer__legal {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  margin-top: auto;
  flex-wrap: nowrap;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer__legal a:hover,
.footer__legal a:focus-visible {
  color: rgba(255, 255, 255, 0.85);
  outline: none;
}

@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }
  .footer__about {
    grid-column: 1 / -1;
  }
  .footer__newsletter {
    grid-column: 1 / -1;
  }
  .footer__legal {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer::before {
    font-size: clamp(8rem, 30vw, 12rem);
  }
  .footer__cta-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }
}

.platform {
  padding: clamp(5rem, 8vw, 6rem) clamp(1.5rem, 4vw, 3rem) clamp(4rem, 7vw, 5rem);
}

.platform__shell {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: start;
}

.platform__intro {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.platform__title {
  margin: 0;
  font-size: clamp(2.4rem, 4.8vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.45px;
  color: #11131a;
  max-width: 460px;
}

.platform__desc {
  margin: 0;
  color: #5a6377;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
}

.platform__stats {
  display: flex;
  gap: clamp(2rem, 6vw, 4rem);
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.platform__stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.platform__value {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #11131a;
  line-height: 1.1;
}

.platform__label {
  color: #6a7382;
  font-size: 0.95rem;
  font-weight: 500;
}

.platform__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.75rem;
  border-radius: 32px;
  background: #11131a;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: 1px solid rgba(17, 19, 26, 0.2);
  box-shadow: 0 18px 32px rgba(17, 19, 26, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 1rem;
}

.platform__cta:hover,
.platform__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(17, 19, 26, 0.2);
  outline: none;
}

.platform__cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.platform__cta:hover svg,
.platform__cta:focus-visible svg {
  transform: translate(2px, -2px);
}

.platform__feeds {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.platform__feed {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
  height: clamp(420px, 70vh, 520px);
}

.platform__mask {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 8%, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0) 85%, rgba(255, 255, 255, 0.95) 92%, rgba(255, 255, 255, 1) 100%);
  z-index: 2;
}

.platform__feed[data-direction="up"] .platform__mask {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 8%, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0) 85%, rgba(255, 255, 255, 0.95) 92%, rgba(255, 255, 255, 1) 100%);
}

.platform__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  inset: 0;
  padding-right: 0;
  overflow: hidden;
}

.platform-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(17, 19, 26, 0.08);
  box-shadow: 0 4px 16px rgba(17, 19, 26, 0.06);
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-shrink: 0;
}


.platform-card h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
  color: #11131a;
}

.platform-card p {
  margin: 0;
  color: #6a7382;
  font-size: 0.95rem;
  line-height: 1.55;
}

.platform__feed-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.platform__feed.is-moving .platform__list {
  animation-duration: var(--platform-speed, 18s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.platform__feed[data-direction="down"] .platform__list {
  animation-name: platform-scroll-down;
}

.platform__feed[data-direction="up"] .platform__list {
  animation-name: platform-scroll-up;
}

.platform__feed.is-moving .platform__list {
  animation-duration: var(--platform-speed, 16s);
}


@keyframes platform-scroll-down {
  from { transform: translateY(0); }
  to { transform: translateY(calc(-50%)); }
}

@keyframes platform-scroll-up {
  from { transform: translateY(calc(-50%)); }
  to { transform: translateY(0); }
}

@media (max-width: 992px) {
  .platform__shell { grid-template-columns: 1fr; gap: 2.5rem; }
  .platform__feeds { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .platform__cta { width: 100%; justify-content: center; }
  .platform__feed { height: clamp(380px, 65vh, 460px); padding: 0; }
  .platform__list { inset: 0; padding-right: 0; }
}
@media (max-width: 992px) {
  .footer {
    width: calc(100% - clamp(1.5rem, 3.5vw, 2.5rem) * 2);
    margin: 0 clamp(1rem, 3.5vw, 2.5rem) clamp(1.25rem, 3vw, 2rem);
    padding: clamp(4rem, 7vw, 5.5rem) clamp(1.25rem, 3.5vw, 2rem) clamp(3rem, 6vw, 4rem);
  }
  .footer__cta-section {
    padding: clamp(4rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4rem);
  }
  .footer__cta-container {
    padding: 0 clamp(1.25rem, 3.5vw, 2rem);
  }
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 4vw, 2.5rem);
  }
  .footer__about {
    grid-column: 1 / -1;
  }
  .footer__newsletter {
    grid-column: 1 / -1;
  }
  .footer__legal {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1.2rem;
    flex-wrap: wrap;
  }
  .footer__watermark-logo {
    width: clamp(14rem, 38vw, 24rem);
  }
  .footer__form {
    max-width: 420px;
  }
}

@media (max-width: 600px) {
  .footer {
    width: calc(100% - clamp(1rem, 3vw, 1.5rem) * 2);
    margin: 0 clamp(0.75rem, 3vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
    border-radius: 32px;
    padding: clamp(3rem, 6vw, 4rem) clamp(1rem, 3vw, 1.5rem) clamp(2.5rem, 5vw, 3.5rem);
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__watermark-logo {
    width: clamp(12rem, 35vw, 18rem);
  }
  .footer__cta-section {
    padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  }
  .footer__cta-container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
  .footer__cta-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    margin-bottom: 1rem;
  }
  .footer__cta-desc {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  .footer__client-logos-wrapper {
    margin-bottom: 2rem;
  }
  .footer__client-logos-wrapper::before,
  .footer__client-logos-wrapper::after {
    width: clamp(30px, 8vw, 60px);
  }
  .footer__cta-button {
    padding: 0.85rem 1.75rem;
    font-size: 0.9rem;
  }
  .footer__container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
  .footer__brandmark {
    margin-bottom: 1rem;
  }
  .footer__logo-img {
    height: 36px;
  }
  .footer__about-text {
    font-size: 0.9rem;
    max-width: 100%;
  }
  .footer__column-title {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .footer__links ul {
    gap: 0.75rem;
  }
  .footer__links a {
    font-size: 0.9rem;
  }
  .footer__newsletter-desc {
    font-size: 0.9rem;
    max-width: 100%;
  }
  .footer__form {
    padding: 0.4rem 0.4rem 0.4rem 1.2rem;
    margin-bottom: 1.2rem;
    max-width: 100%;
  }
  .footer__form input {
    font-size: 0.9rem;
  }
  .footer__form button {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .footer__legal {
    gap: 1rem;
  }
  .footer__legal a {
    font-size: 0.85rem;
  }
}

/* Services Section */
.services-section {
  padding: 6rem 0 7rem;
  background: #ffffff;
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 24px);
}

.services-section__shell {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: start;
}

.services-section__intro {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.services-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17, 19, 26, 0.7);
  position: relative;
  padding-left: 1.8rem;
}

.services-section__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: -6px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: rotate(-45deg);
  opacity: 0.65;
}

.services-section__title {
  margin: 0;
  font-size: clamp(2.4rem, 4.8vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.45px;
  color: #11131a;
  max-width: 460px;
  line-height: 1.15;
}

.services-section__title span {
  color: #636c83;
  font-weight: 500;
}

.services-section__desc {
  margin: 0;
  color: #5a6377;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
}

.services-section__stats {
  display: flex;
  gap: clamp(2rem, 6vw, 4rem);
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.services-section__stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.services-section__value {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #11131a;
  line-height: 1.1;
}

.services-section__label {
  color: #6a7382;
  font-size: 0.95rem;
  font-weight: 500;
}

.services-section__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.75rem;
  border-radius: 32px;
  background: #11131a;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: 1px solid rgba(17, 19, 26, 0.2);
  box-shadow: 0 18px 32px rgba(17, 19, 26, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 1rem;
}

.services-section__cta:hover,
.services-section__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(17, 19, 26, 0.2);
  outline: none;
}

.services-section__cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.services-section__cta:hover svg,
.services-section__cta:focus-visible svg {
  transform: translate(2px, -2px);
}

.services-section__feeds {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
}

.services-section__feed {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 18px 8px;
  height: clamp(420px, 70vh, 520px);
  isolation: isolate;
}

.services-section__mask {
  position: absolute;
  inset: 0 8px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 8%, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0) 85%, rgba(255, 255, 255, 0.95) 92%, rgba(255, 255, 255, 1) 100%);
}

.services-section__list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  position: absolute;
  top: 18px;
  left: 8px;
  right: 8px;
  padding-right: 0;
  overflow: visible;
  will-change: transform;
}

.services-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(17, 19, 26, 0.08);
  box-shadow: 0 12px 6px rgb(17 19 26 / 2%);
  padding: 1.45rem 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-shrink: 0;
  min-height: 166px;
}

.services-card__title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
  color: #11131a;
}

.services-card__desc {
  margin: 0;
  color: #6a7382;
  font-size: 0.95rem;
  line-height: 1.55;
}

.services-section__feed.is-moving .services-section__list {
  animation-duration: 22s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.services-section__feed[data-direction="down"] .services-section__list {
  animation-name: services-scroll-down;
}

.services-section__feed[data-direction="up"] .services-section__list {
  animation-name: services-scroll-up;
}

@keyframes services-scroll-down {
  from { transform: translateY(0); }
  to { transform: translateY(-25%); }
}

@keyframes services-scroll-up {
  from { transform: translateY(-25%); }
  to { transform: translateY(0); }
}

@media (max-width: 992px) {
  .services-section__shell {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .services-section__feeds {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .services-section {
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(5rem, 10vw, 7rem);
  }
  .services-section__shell {
    gap: 2rem;
  }
  .services-section__intro {
    gap: 1.25rem;
    text-align: center;
    align-items: center;
  }
  .services-section__eyebrow {
    font-size: 0.85rem;
    padding-left: 1.8rem;
    display: inline-flex;
    justify-content: center;
    margin: 0 auto;
  }
  .services-section__eyebrow::before {
    left: 0;
  }
  .services-section__title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    text-align: center;
  }
  .services-section__desc {
    font-size: 1rem;
    max-width: 100%;
    text-align: center;
  }
  .services-section__cta {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
  }
  .services-section__stats {
    gap: 2rem;
    margin-top: 0.75rem;
    justify-content: center;
  }
  .services-section__value {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .services-section__label {
    font-size: 0.9rem;
  }
  .services-section__feeds {
    gap: 0;
    position: relative;
    height: clamp(430px, 70vh, 560px);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 18%, #000 82%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 18%, #000 82%, transparent 100%);
  }
  .services-section__feed {
    height: 100%;
    padding: 18px 8px;
  }
  .services-section__feed:nth-child(2) {
    display: none;
  }
  .services-section__mask {
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,.92) 10%, rgba(255,255,255,0) 24%, rgba(255,255,255,0) 76%, rgba(255,255,255,.92) 90%, #fff 100%);
  }
  .services-section__list {
    top: 18px;
    left: 8px;
    right: 8px;
    padding-right: 0;
    gap: 1.2rem;
  }
  .services-card {
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    min-height: 150px;
  }
  .services-card__title {
    font-size: 1rem;
  }
  .services-card__desc {
    font-size: 0.9rem;
  }
}

/* Projects slider */
.projects-slider { overflow: hidden; margin: 0 auto; }
.projects-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  flex-wrap: nowrap;
  will-change: transform;
}
.portfolio-section .projects-slider .project-card {
  box-sizing: border-box;
  flex: 0 0 calc((100% - 3 * 20px) / 4) !important;
  min-width: calc((100% - 3 * 20px) / 4) !important;
  max-width: calc((100% - 3 * 20px) / 4) !important;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 26, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(17, 19, 26, 0.06);
  padding: 1rem;
}
.portfolio-section .projects-slider .project-media img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 14px; }
.portfolio-section .projects-slider .project-meta { padding: 0.75rem 0.25rem 0.25rem; }
.portfolio-section .projects-slider .project-title { font-size: 1rem; margin: 0 0 0.15rem; color: #11131a; }
.portfolio-section .projects-slider .project-text { font-size: 0.9rem; margin: 0; color: #59616f; }

/* Pause on hover (desktop) */
@media (hover:hover) {
  .projects-slider:hover .projects-track { animation-play-state: paused; }
}
/* Responsive items per view */
@media (max-width: 1200px) {
  .portfolio-section .projects-slider .project-card { flex-basis: calc((100% - 2 * 20px) / 3) !important; max-width: calc((100% - 2 * 20px) / 3) !important; }
}
@media (max-width: 900px) {
  .portfolio-section .projects-slider .project-card { flex-basis: calc((100% - 1 * 20px) / 2) !important; max-width: calc((100% - 1 * 20px) / 2) !important; }
}
@media (max-width: 600px) {
  .portfolio-section .projects-slider {
    max-width: 100%;
  }
  .portfolio-section .projects-slider .project-card { 
    flex-basis: 100% !important; 
    max-width: 100% !important; 
    min-width: 100% !important;
  }
  .projects-track {
    gap: 0;
  }
}

/* About Hero Section */
.about-hero {
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(2rem, 4vw, 3rem);
  background: #ffffff;
  position: relative;
}

.about-hero .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 24px);
}

.about-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  gap: 1.4rem;
}

.about-hero__image-wrapper {
  max-width: 1500px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  width: calc(100% - clamp(2rem, 6vw, 48px));
  aspect-ratio: 1500 / 857;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(17, 19, 26, 0.15);
  position: relative;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: imageReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease;
}

.about-hero__image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(17, 19, 26, 0.4) 0%, rgba(17, 19, 26, 0) 100%);
  opacity: 0;
  z-index: 1;
  animation: gradientFadeIn 1s ease-out 0.8s forwards;
  pointer-events: none;
}

@keyframes imageReveal {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(20px);
  }
  60% {
    opacity: 0.8;
    transform: translateY(5px) scale(0.98);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes gradientFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(17, 19, 26, 0.5);
  padding: 0 1.5rem;
  position: relative;
}

.about-hero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--accent);
  border-left: 1.5px solid var(--accent);
}

.about-hero__eyebrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--accent);
  border-right: 1.5px solid var(--accent);
}

.about-hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 4.8vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.45px;
  line-height: 1.15;
  color: #11131a;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-hero__title-line {
  display: block;
}

.about-hero__title-line--highlight {
  color: #636c83;
  font-weight: 500;
}

.about-hero__desc {
  margin: 0;
  color: #5a6377;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 680px;
}

.about-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: filter 0.6s ease;
  will-change: transform;
  z-index: 0;
}

.about-hero__image-wrapper:hover {
  transform: rotateY(-2deg) rotateX(2deg) translateZ(20px);
  box-shadow: 0 30px 80px rgba(17, 19, 26, 0.2);
}

.about-hero__image-wrapper:hover .about-hero__image {
  filter: brightness(1.05);
}

.about-hero__image-wrapper:hover::before {
  opacity: 0.25;
  transition: opacity 0.6s ease;
}

.about-hero__image-caption {
  max-width: 1500px;
  margin: clamp(1.5rem, 3vw, 2rem) auto 0;
  padding: 0 clamp(1rem, 3vw, 24px);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: captionFadeIn 0.8s ease-out 1s forwards;
}

.about-hero__image-caption p {
  margin: 0 auto;
  max-width: 800px;
  color: #5a6377;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.1px;
}

@keyframes captionFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(1.5rem, 3vw, 2rem);
  }
  
  .about-hero__content {
    gap: 1.25rem;
  }
  
  .about-hero__eyebrow {
    font-size: 0.85rem;
    padding: 0 1.5rem;
  }
  
  .about-hero__title {
    gap: 0;
  }
  
  .about-hero__desc {
    font-size: 1.02rem;
  }
  
  .about-hero__image-wrapper {
    margin-top: clamp(1.5rem, 3vw, 2rem);
    width: calc(100% - clamp(2rem, 4vw, 3rem));
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(17, 19, 26, 0.12);
    animation: imageRevealMobile 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  }
  
  .about-hero__image-wrapper::before {
    animation: gradientFadeIn 0.8s ease-out 0.6s forwards;
  }
}

@keyframes imageRevealMobile {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    filter: blur(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Sayfa başlığı (hero) — tüm sayfalarda aynı blok ve boşluk */
.page-title {
  padding: clamp(4.5rem, 9vw, 7rem) 0 clamp(1.5rem, 2.5vw, 2rem);
  background: #ffffff;
  position: relative;
}

.page-title .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 24px);
}

.page-title__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  gap: 1.4rem;
}

.page-title__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17, 19, 26, 0.7);
  position: relative;
  padding-left: 1.8rem;
}

.page-title__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: -6px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: rotate(-45deg);
  opacity: 0.65;
}

.page-title__title {
  margin: 0;
  font-size: clamp(2.4rem, 4.8vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.45px;
  line-height: 1.15;
  color: #11131a;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
}

.page-title__desc {
  margin: 0;
  color: #5a6377;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 680px;
}

/* Ana içerik alanı — tüm sayfalarda aynı dikey boşluk */
.page-content {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 7vw, 5.5rem);
  background: #ffffff;
  position: relative;
  overflow: visible;
}

.page-content > .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 24px);
}

/* page-content içindeki FAQ — üst/alt boşluk ana içerik bandı ile uyumlu */
.page-content .faq {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
}

/* Service Detail Section */
.service-detail {
  padding: 0 0 clamp(3rem, 6vw, 5rem);
  background: #ffffff;
}

.service-detail .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 24px);
}

.service-detail__image-wrapper {
  max-width: 1200px;
  margin: clamp(2rem, 4vw, 3rem) auto clamp(3rem, 6vw, 4rem);
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(17, 19, 26, 0.15);
  position: relative;
}

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

.service-detail__content {
  max-width: 700px;
  margin: 0 auto;
}

.service-detail__content p {
  margin: 0 0 1.5rem;
  color: #5a6377;
  font-size: 1.05rem;
  line-height: 1.8;
}

.service-detail__content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .service-detail {
    padding: 0 0 clamp(2rem, 4vw, 3rem);
  }
  
  .service-detail__image-wrapper {
    margin: clamp(1.5rem, 3vw, 2rem) auto clamp(2rem, 4vw, 3rem);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(17, 19, 26, 0.12);
  }
  
  .service-detail__content p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

.services-carousel-wrapper {
  display: block;
  position: relative;
  margin-top: clamp(1.75rem, 4vw, 3rem);
  min-height: 0;
}

.page-content > .container > .services-carousel-wrapper:first-child {
  margin-top: 0;
}

.services-carousel__ambient {
  position: absolute;
  top: 50%;
  right: clamp(-3rem, -5vw, 0px);
  transform: translateY(-50%);
  width: min(58vw, 620px);
  max-height: min(82vh, 720px);
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #ffffff;
}

.services-carousel__ambient-img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  max-height: min(82vh, 720px);
  object-fit: contain;
  object-position: center right;
  opacity: 0;
  filter: blur(10px) saturate(1.06);
  transform: scale(1.14);
  transition: opacity 0.45s ease, transform 0.45s ease;
  will-change: opacity;
  background-color: #ffffff;
}

.services-carousel__ambient-img.is-visible {
  opacity: 0.58;
  transform: scale(1.1);
}

.services-carousel-left {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: min(100%, 680px);
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
}

.services-carousel__viewport {
  position: relative;
  height: clamp(420px, 70vh, 520px);
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scroll-padding: 150px 0;
}

.services-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.services-carousel__viewport {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.services-carousel__nav-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(17, 19, 26, 0.1);
  box-shadow: 0 4px 16px rgba(17, 19, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.services-carousel__nav-btn:hover {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(17, 19, 26, 0.15);
  transform: translateX(-50%) scale(1.05);
}

.services-carousel__nav-btn:active {
  transform: translateX(-50%) scale(0.95);
}

.services-carousel__nav-btn svg {
  width: 20px;
  height: 20px;
  stroke: #11131a;
  stroke-width: 2.5;
}

.services-carousel__nav-btn--up {
  top: 20px;
}

.services-carousel__nav-btn--down {
  bottom: 20px;
}

.services-carousel__nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.services-carousel__track {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 150px 0;
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: visible;
}

.services-carousel-left .services-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(17, 19, 26, 0.08);
  box-shadow: 0 4px 16px rgba(17, 19, 26, 0.06);
  padding: 1.4rem 1.6rem;
  flex-shrink: 0;
  width: 100%;
  min-height: 210px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  opacity: 0.4;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.services-carousel-left .services-card__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: start;
  width: 100%;
  height: 100%;
}

.services-carousel-left .services-card__text-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 0;
}

.services-carousel-left .services-card.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 8px 24px rgba(17, 19, 26, 0.12);
  z-index: 3;
}

.services-carousel-left .services-card:hover {
  box-shadow: 0 8px 24px rgba(17, 19, 26, 0.1);
}

.services-carousel-left .services-card__title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
  color: #11131a;
}

.services-carousel-left .services-card__desc {
  margin: 0;
  color: #6a7382;
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 0 1 auto;
}

.services-carousel__button {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid #d9dfe8;
  background: transparent;
  color: #11131a;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  margin-top: 0.5rem;
}

.services-carousel__button svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.services-carousel__button:hover,
.services-carousel__button:focus-visible {
  background: #11131a;
  color: #ffffff;
  border-color: #11131a;
  outline: none;
}

.services-carousel__button:hover svg,
.services-carousel__button:focus-visible svg {
  transform: translate(1px, -1px);
}

@media (max-width: 992px) {
  .services-carousel-wrapper {
    min-height: 0;
  }

  .services-carousel__ambient {
    display: none;
  }

  .services-carousel-left {
    max-width: 100%;
  }

  .services-carousel__viewport {
    height: clamp(380px, 65vh, 460px);
  }
}

@media (max-width: 600px) {
  .page-title {
    padding: clamp(3.25rem, 7vw, 5rem) 0 clamp(1.25rem, 2.5vw, 1.75rem);
  }

  .page-content {
    padding: clamp(1.5rem, 3.5vw, 2.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  }

  .page-title__intro {
    gap: 1.25rem;
    margin-bottom: 0;
  }
  
  .services-carousel__viewport {
    height: clamp(380px, 65vh, 460px);
  }
  
  .services-carousel-left .services-card {
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
  }
  
  .services-carousel-left .services-card__content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .services-carousel-left .services-card__title {
    font-size: 1rem;
  }
  
  .services-carousel-left .services-card__desc {
    font-size: 0.9rem;
  }
}

/* Mobile Menu Overlay */
.nav-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(240, 242, 245, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}

@media (max-width: 900px) {
  .nav-menu-overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 19, 26, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 0;
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .nav-menu-overlay::before {
    display: none;
  }
  
  .nav-menu-overlay.is-open {
    display: flex;
    opacity: 1;
    visibility: visible;
  }
  
  /* Menu box container - header, menu ve footer'ı saran */
  .nav-menu-header,
  .nav-menu {
    width: calc(100% - 2rem);
    max-width: 100%;
    margin-left: 1rem;
    margin-right: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  }
  
  .nav-menu-header {
    margin-bottom: 0;
    margin-top: auto;
    background: #f5f5f7;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 20px 60px rgba(17, 19, 26, 0.25);
  }
  
  .nav-menu {
    margin-top: 0;
    margin-bottom: 0;
    background: #f5f5f7;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }
  
  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(17, 19, 26, 0.08);
  }
  
  .nav-menu li:last-child {
    border-bottom: none;
  }
  
  .nav-menu__link {
    width: 100%;
    padding: 1rem 1.5rem;
    justify-content: space-between;
    color: #11131a;
    font-size: 1rem;
  }
  
  /* Mobile Dropdown */
  .nav-menu__item--has-dropdown {
    width: 100%;
  }
  
  .nav-menu__dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }
  
  .nav-menu__dropdown {
    position: static;
    transform: none;
    margin: 0;
    box-shadow: none;
    background: rgba(17, 19, 26, 0.02);
    border-radius: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease;
  }
  
  .nav-menu__item--has-dropdown.is-open .nav-menu__dropdown {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0.5rem 0;
  }
  
  .nav-menu__dropdown-link {
    padding-left: 2.5rem;
    font-size: 0.95rem;
    color: #11131a;
  }
  
  .nav-menu__dropdown-link:hover,
  .nav-menu__dropdown-link:focus-visible {
    background: rgba(17, 19, 26, 0.04);
  }
  
  .nav-menu__dropdown-toggle.nav-menu__link--active {
    color: #11131a;
    font-weight: 600;
  }
  
  .nav-menu__item--has-dropdown.is-open .nav-menu__dropdown-arrow {
    transform: rotate(180deg);
  }
  
  .nav-menu-overlay.is-open .nav-menu-header,
  .nav-menu-overlay.is-open .nav-menu {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Tek bir box gibi görünmesi için */
  .nav-menu-header + .nav-menu {
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

/* Desktop: nav-menu-overlay should be visible as inline container */
@media (min-width: 901px) {
  .nav-menu-overlay {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    flex: 1;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: auto;
    overflow: visible;
    animation: none !important;
    padding: 0;
    width: auto;
    height: auto;
  }
  
  .nav-menu-header,
  .nav-menu-close,
  .nav-menu-logo {
    display: none !important;
    visibility: hidden !important;
  }
  
  .nav-menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    flex: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.4rem;
  }

  .nav-menu__language-item {
    display: none !important;
  }
  
  .nav-menu li {
    list-style: none;
    border-bottom: none !important;
    width: auto !important;
    text-align: left;
  }
  
  .nav-menu__link {
    color: var(--text-light) !important;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0 !important;
    width: auto !important;
    justify-content: flex-start;
    transition: color 0.2s ease;
  }
  
  .nav-menu__link:hover,
  .nav-menu__link:focus-visible {
    color: var(--accent) !important;
    outline: none;
  }
  
  .nav-menu__link--active {
    color: var(--text-strong) !important;
    font-weight: 600;
  }
  
  /* Desktop Dropdown */
  .nav-menu__dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 220px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(17, 19, 26, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1000;
    padding: 0.5rem 0;
  }
  
  .nav-menu__item--has-dropdown:hover .nav-menu__dropdown,
  .nav-menu__item--has-dropdown.is-open .nav-menu__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  
  .nav-menu__item--has-dropdown:hover .nav-menu__dropdown-arrow,
  .nav-menu__item--has-dropdown.is-open .nav-menu__dropdown-arrow {
    transform: rotate(180deg);
  }
  
  .nav-menu__dropdown-toggle.nav-menu__link--active {
    color: var(--text-strong) !important;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUpFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.nav-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(17, 19, 26, 0.08);
  background: #ffffff;
  border-radius: 24px 24px 0 0;
}

@media (max-width: 900px) {
  .nav-menu-header {
    width: calc(100% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: 24px 24px 0 0;
    background: #f5f5f7;
  }
}

.nav-menu-logo {
  display: inline-flex;
  align-items: center;
}

.nav-menu-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-menu-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(17, 19, 26, 0.06);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.nav-menu-close:hover,
.nav-menu-close:focus-visible {
  background: rgba(17, 19, 26, 0.1);
  transform: scale(1.05);
  outline: none;
}

.nav-menu-close svg {
  width: 18px;
  height: 18px;
  stroke: #11131a;
  stroke-width: 2.5;
}

@media (max-width: 900px) {
}

.nav-menu__cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  background: #11131a;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, background 0.2s ease;
  border: 1px solid rgba(17, 19, 26, 0.1);
}

.nav-menu__cta-button:hover,
.nav-menu__cta-button:focus-visible {
  background: #1a1d26;
  transform: translateY(-2px);
  outline: none;
}

@media (max-width: 900px) {
  .nav-shell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1.2rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(17, 19, 26, 0.95);
    box-shadow: 0 26px 42px rgba(17, 19, 26, 0.4);
  }

  .nav-logo img { height: 32px; }

  .nav-toggle { display: inline-flex; }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    transform: none;
    box-shadow: none;
  }

  .nav-cta--desktop { display: none; }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 2rem 1.5rem;
    border-radius: 0;
    background: #f5f5f7;
    box-shadow: none;
    border: none;
    gap: 0;
    color: #11131a;
    flex: 1;
    overflow-y: auto;
  }

  .nav-menu li {
    list-style: none;
    text-align: left;
    width: 100%;
    border-bottom: 1px solid rgba(17, 19, 26, 0.06);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu li + li {
    margin-top: 0;
  }

  .nav-menu__link {
    color: #11131a;
    font-size: 1.1rem;
    font-weight: 500;
    justify-content: flex-start;
    width: 100%;
    letter-spacing: 0.2px;
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
  }

  .nav-menu__link:hover,
  .nav-menu__link:focus-visible {
    color: var(--accent);
  }

  .nav-menu__link--active {
    color: var(--accent);
    font-weight: 600;
  }

  .nav-menu__item--cta {
    display: none;
  }

  .nav-menu__language-item {
    display: flex;
    border-bottom: 0 !important;
    padding: 0.9rem 0 0.25rem;
  }

  .hero__floating {
    display: none;
  }

  .hero__announcement {
    width: min(92vw, 620px);
    min-height: 46px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__announcement-set {
    gap: 0.85rem;
    padding: 0 0.85rem;
    font-size: 0.78rem;
  }

  .hero__chip {
    padding: 0.3rem 0.85rem 0.3rem 2rem;
    font-size: 0.75rem;
  }
  .hero__chip--available::before,
  .hero__chip--available::after {
    left: 1rem;
  }
  .hero__announcement a {
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
  }

  .hero__title {
    gap: 0.3rem 0;
    font-size: clamp(2.2rem, 7vw, 2.7rem);
    max-width: 100%;
  }

  .hero__token {
    display: none;
  }

  .hero__cta-group {
    flex-direction: column;
  }

  .hero-btn { width: 100%; }

  .impact {
    margin-top: 4.5rem;
    padding: 0 1.25rem 4rem;
  }

  .impact__grid { 
    gap: 1.4rem;
  }

  .services__board { padding: 2.2rem 2rem; }
  .services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card--motion {
    padding-right: 2rem;
  }
  .service-card--motion .service-card__panel {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }
  .service-card--cta { padding: 2.2rem; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 1rem; }

  .marquee {
    margin-top: 3.5rem;
    padding: 2rem 0;
  }

  .marquee__viewport::before,
  .marquee__viewport::after {
    width: clamp(40px, 18vw, 120px);
  }

  .marquee__item {
    width: clamp(240px, 78vw, 320px);
  }

  .logos__viewport { padding: 0 1.5rem; }
  .logos__viewport::before,
  .logos__viewport::after { width: 70px; }

  .logos__item img {
    width: 72px;
    height: 28px;
  }
}

@media (max-width: 520px) {
  .nav-logo img { height: 32px; }

  .hero__title {
    font-size: clamp(2.25rem, 8.5vw, 2.9rem);
  }

  .hero__token {
    width: 2rem;
    height: 2rem;
    border-radius: 0.7rem;
  }

  .hero__announcement a {
    font-size: 0.78rem;
  }

  .hero__stage {
    transform: rotateX(calc(var(--hero-tilt) * 0.65)) translateY(var(--hero-lift));
  }

  .hero-btn {
    padding: 0.8rem 1.55rem;
  }

  .impact {
    padding: 0 1rem 4rem;
    overflow: visible;
    position: relative;
  }
  
  .impact::after {
    display: none;
  }

  .impact__title {
    font-size: clamp(2.05rem, 7vw, 2.5rem);
  }

  .impact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    width: 100%;
    transform: none !important;
    will-change: auto;
  }
  
  .impact-card {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .logos__viewport { padding: 0 1rem; }
  .logos__item img { width: min(84px, 24vw); height: 30px; }

  .services__board { padding: 2rem 1.4rem; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card--motion {
    padding-right: 2rem;
  }
  .service-card--cta { padding: 2rem; }
}

.hero__headline,
.page-title__title,
.page-title__eyebrow,
.trust__title,
.faq__title,
.impact__title,
.footer__cta-title,
.contact-page__sidebar-heading,
.services-card__title,
.project-card__title,
.marquee__heading {
  text-transform: capitalize;
}

.contact-page__notice {
  border-radius: 14px;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  font-weight: 700;
  background: #f4f6f8;
  color: #11131a;
}

.contact-page__notice--success {
  background: rgba(163, 254, 40, 0.18);
}

.contact-page__notice--error {
  background: #fff1f0;
  color: #b42318;
}

/* Portfolio Grid Section */
.portfolio-grid-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #ffffff;
}

.page-content > .portfolio-grid-section:first-child {
  padding-top: 0;
}

.portfolio-grid-section .container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 24px);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.portfolio-card {
  background: #ffffff;
  border: 1px solid rgba(17, 19, 26, 0.08);
  border-radius: 16px;
  overflow: visible;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
}

.portfolio-card:hover {
  box-shadow: none;
}

.portfolio-card__search-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  background: #f8f9fa;
  border: 1px solid rgba(17, 19, 26, 0.12);
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.portfolio-card__url {
  color: #11131a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
  flex: 1;
}

.portfolio-card__url.typing::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  animation: blink 1s infinite;
  opacity: 1;
}

.portfolio-card__url.typing-complete::after,
.portfolio-card__url:not(.typing)::after {
  display: none;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

.portfolio-card__url:hover,
.portfolio-card__url:focus-visible {
  color: var(--accent, #636c83);
  outline: none;
}

.portfolio-card__search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #59616f;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  margin-left: 0.75rem;
  flex-shrink: 0;
}

.portfolio-card__search-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.portfolio-card__search-icon:hover,
.portfolio-card__search-icon:focus-visible {
  color: var(--accent, #636c83);
  transform: scale(1.1);
  outline: none;
}

.portfolio-card__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 0.625rem;
}

.portfolio-card__image-container {
  width: 100%;
  height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #f5f5f7;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 19, 26, 0.2) transparent;
  border-radius: 12px;
}

.portfolio-card__image-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 30%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0.2) 85%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 2;
  border-radius: 0 0 12px 12px;
}

.portfolio-card__image-container::-webkit-scrollbar {
  width: 8px;
}

.portfolio-card__image-container::-webkit-scrollbar-track {
  background: transparent;
}

.portfolio-card__image-container::-webkit-scrollbar-thumb {
  background: rgba(17, 19, 26, 0.2);
  border-radius: 4px;
}

.portfolio-card__image-container::-webkit-scrollbar-thumb:hover {
  background: rgba(17, 19, 26, 0.3);
}

.portfolio-card__image {
  width: 100%;
  max-width: 700px;
  min-width: 100%;
  height: auto;
  min-height: 400px;
  display: block;
  object-fit: contain;
  object-position: top;
  position: relative;
  z-index: 1;
}

.portfolio-card__content {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: -0.2rem;
}

.portfolio-card__subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(17, 19, 26, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-card__title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #11131a;
  line-height: 1.3;
}

.portfolio-card__description {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5a6377;
}

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .portfolio-card__image-container {
    max-width: 100%;
    height: 350px;
  }

  .portfolio-card__image {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .portfolio-grid-section {
    padding: clamp(2rem, 4vw, 3rem) 0;
  }

  .portfolio-grid {
    gap: 1.5rem;
  }

  .portfolio-card {
    padding: 0.75rem;
  }

  .portfolio-card__search-box {
    padding: 0.65rem 0.875rem;
    margin-bottom: 0.75rem;
  }

  .portfolio-card__image-wrapper {
    margin-bottom: 0.5rem;
  }
  
  .portfolio-card__image-container {
    max-width: 100%;
  }

  .portfolio-card__content {
    margin-top: -0.15rem;
    gap: 0.3rem;
  }

  .portfolio-card__url {
    font-size: 0.9rem;
  }

  .portfolio-card__search-icon {
    width: 28px;
    height: 28px;
  }

  .portfolio-card__search-icon svg {
    width: 16px;
    height: 16px;
  }

  .portfolio-card__image-container {
    max-width: 100%;
    height: 300px;
  }

  .portfolio-card__image {
    max-width: 100%;
  }

  .portfolio-card__content {
    padding: 1.25rem 1rem;
  }

  .portfolio-card__title {
    font-size: 1.2rem;
  }

  .portfolio-card__description {
    font-size: 0.9rem;
  }
}

/* Ana portfolyo — kategori sekmeleri + vitrin kartları */
.portfolio-hub {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 6rem);
  background: #ffffff;
}

.page-content > .portfolio-hub:first-child {
  padding-top: 0;
}

.portfolio-hub .container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 24px);
}

.portfolio-hub__tabs-wrap {
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  padding: clamp(0.5rem, 2vw, 1.25rem) 0;
}

.portfolio-hub__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  align-items: center;
  justify-content: center;
}

.portfolio-hub__tab {
  appearance: none;
  border: 1px solid rgba(17, 19, 26, 0.14);
  background: #ffffff;
  color: #11131a;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.portfolio-hub__tab:hover {
  border-color: rgba(17, 19, 26, 0.28);
}

.portfolio-hub__tab:focus-visible {
  outline: 2px solid var(--accent, #636c83);
  outline-offset: 2px;
}

.portfolio-hub__tab--active {
  background: #11131a;
  color: #ffffff;
  border-color: #11131a;
}

.portfolio-hub__divider {
  height: 1px;
  background: rgba(17, 19, 26, 0.1);
  margin: clamp(0.75rem, 2vw, 1.25rem) 0 clamp(1.75rem, 4vw, 2.75rem);
}

/* Proje iç sayfası — vitrin + galeri + metin */
.project-detail {
  padding-bottom: clamp(1rem, 3vw, 2rem);
}

.project-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(17, 19, 26, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.project-detail__back:hover {
  color: #11131a;
}

.project-detail__hero {
  border: 1px solid #e5eaf0;
  border-radius: clamp(22px, 3vw, 32px);
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.project-detail__hero-title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #11131a;
}

.project-detail__hero-desc {
  margin: 0 0 1.35rem;
  max-width: 52rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #5a6377;
}

.project-detail__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: max-content;
  max-width: 100%;
  min-height: 48px;
  margin-top: 0.25rem;
  padding: 0.8rem 1.2rem 0.8rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  background: #11131a;
  border: 1px solid #11131a;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(17, 19, 26, 0.14);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.project-detail__cta:hover {
  transform: translateY(-2px);
  background: #0b0d12;
  border-color: #0b0d12;
  box-shadow: 0 20px 42px rgba(17, 19, 26, 0.18);
}

.project-detail__cta svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  stroke: currentColor;
  opacity: 0.9;
}

@media (max-width: 520px) {
  .project-detail__cta {
    width: 100%;
  }
}

.project-detail__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  padding-top: clamp(1.35rem, 3vw, 1.85rem);
  border-top: 1px solid rgba(17, 19, 26, 0.1);
}

.project-detail__meta-item {
  display: flex;
  gap: 0.75rem;
  padding: 15px 20px 15px 20px;
  border-radius: 99px;
  background-color: #f6f7f8;
  align-items: flex-start;
  min-width: 0;
}

.project-detail__meta-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(17, 19, 26, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(17, 19, 26, 0.55);
}

.project-detail__meta-icon svg {
  width: 20px;
  height: 20px;
}

.project-detail__meta-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 19, 26, 0.45);
  margin-bottom: 0.35rem;
}

.project-detail__meta-value {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: #11131a;
  line-height: 1.35;
}

.project-detail__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.35rem);
  margin-bottom: clamp(2.75rem, 6vw, 4rem);
}

.project-detail__gallery figure {
  margin: 0;
  background: #f3f4f6;
  border-radius: clamp(18px, 2.5vw, 26px);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

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

.project-detail__article {
  max-width: 800px;
  margin: 0 auto;
}

.project-detail__lead {
  margin: 0 0 1.5rem;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
  color: #11131a;
  letter-spacing: -0.02em;
}

.project-detail__article p {
  margin: 0 0 1.15rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #5a6377;
}

.project-detail__article p:last-of-type {
  margin-bottom: 0;
}

.project-detail__quote {
  margin: clamp(2rem, 4vw, 2.75rem) 0 0;
  padding: 0 0 0 clamp(1rem, 2.5vw, 1.35rem);
  border-left: 3px solid rgba(17, 19, 26, 0.15);
}

.project-detail__quote p {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: #3d4456;
}

.project-detail__quote footer {
  font-size: 0.98rem;
  font-style: normal;
  color: #11131a;
}

.project-detail__quote cite {
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 720px) {
  .project-detail__meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .project-detail__gallery {
    grid-template-columns: 1fr;
  }
}

/* İki sütun grid — sabit kolonlar, dikey akış */
.portfolio-hub__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.8vw, 2rem);
  width: 100%;
  align-items: start;
}

.portfolio-showcase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 26, 0.12);
  border-radius: clamp(20px, 3vw, 26px);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-showcase-card__cover-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.portfolio-showcase-card__cover-link:focus-visible {
  outline: 2px solid var(--accent, #636c83);
  outline-offset: 3px;
}

.portfolio-showcase-card:hover {
  border-color: rgba(17, 19, 26, 0.18);
  box-shadow: 0 12px 36px rgba(17, 19, 26, 0.06);
}

.portfolio-showcase-card__media {
  overflow: hidden;
  background: #f3f4f6;
  aspect-ratio: 4 / 3;
}

.portfolio-showcase-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-showcase-card__footer {
  position: relative;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.1rem, 2.2vw, 1.45rem) clamp(1.15rem, 2.2vw, 1.5rem) clamp(1.2rem, 2.4vw, 1.55rem);
}

.portfolio-showcase-card__copy {
  min-width: 0;
  flex: 1;
}

.portfolio-showcase-card__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #11131a;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.portfolio-showcase-card__meta {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(17, 19, 26, 0.48);
}

.portfolio-showcase-card__meta-sep {
  margin: 0 0.35rem;
  opacity: 0.65;
}

.portfolio-showcase-card__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(17, 19, 26, 0.12);
  background: #ffffff;
  color: rgba(17, 19, 26, 0.65);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.portfolio-showcase-card__arrow:hover {
  background: #11131a;
  border-color: #11131a;
  color: #ffffff;
  transform: translate(1px, -1px);
}

@media (max-width: 640px) {
  .portfolio-hub__tabs {
    gap: 0.4rem;
  }

  .portfolio-hub__tab {
    font-size: 0.8rem;
    padding: 0.45rem 0.85rem;
  }

  .portfolio-hub__grid {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 1.35rem);
  }

  .portfolio-showcase-card__footer {
    flex-wrap: wrap;
    align-items: center;
  }

  .portfolio-showcase-card__arrow {
    width: 40px;
    height: 40px;
  }

  .portfolio-showcase-card__title {
    font-size: 1.05rem;
  }
}

/* İletişim sayfası — iki sütun, form + bilgi */
.contact-page {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6.5rem);
  background-image: radial-gradient(rgba(17, 19, 26, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  background-position: top center;
}

.page-content > .contact-page:first-child {
  padding-top: 0;
  padding-bottom: clamp(3rem, 8vw, 5.5rem);
}

.contact-page__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 24px);
}

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1fr);
  gap: clamp(3.5rem, 8vw, 7rem);
  align-items: start;
}

.contact-page__eyebrow-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.85rem;
}

.contact-page__eyebrow-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-top: 1px solid #c41e3a;
  border-left: 1px solid #c41e3a;
}

.contact-page__eyebrow-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  border-right: 1px solid #c41e3a;
  border-bottom: 1px solid #c41e3a;
}

.contact-page__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #11131a;
}

.contact-page__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #11131a;
  line-height: 1.12;
}

.contact-page__sidebar-heading {
  margin: 0 0 1.55rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #11131a;
  line-height: 1.08;
}

.contact-page__lead {
  margin: 0 0 clamp(4rem, 9vw, 6rem);
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(17, 19, 26, 0.72);
  max-width: 32rem;
}

.contact-page__phone {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.contact-page__phone a {
  color: #11131a;
  text-decoration: none;
}

.contact-page__phone a:hover {
  color: var(--accent, #636c83);
}

.contact-page__email {
  margin: 0 0 1.1rem;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
}

.contact-page__email a {
  color: #11131a;
  text-decoration: none;
  word-break: break-word;
}

.contact-page__email a:hover {
  color: var(--accent, #636c83);
}

.contact-page__hint {
  margin: 0 0 clamp(3.5rem, 8vw, 5.5rem);
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(17, 19, 26, 0.55);
  max-width: 28rem;
}

.contact-page__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-page__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #11131a;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.contact-page__social-link:hover {
  color: #c41e3a;
}

.contact-page__social-link:hover .contact-page__social-arrow {
  transform: translate(2px, -2px);
}

.contact-page__social-arrow {
  flex-shrink: 0;
  order: -1;
  transition: transform 0.2s ease;
}

.contact-page__panel {
  background: transparent;
}

.contact-page__form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-page__row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.contact-page__field {
  position: relative;
}

.contact-page__field-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  color: rgba(17, 19, 26, 0.38);
  pointer-events: none;
  z-index: 1;
}

.contact-page__field-icon--textarea {
  top: 1.15rem;
  transform: none;
}

.contact-page__input,
.contact-page__textarea,
.contact-page__select {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  color: #11131a;
  background: #ffffff;
  border: 1px solid rgba(99, 108, 131, 0.28);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page__input::placeholder,
.contact-page__textarea::placeholder {
  color: rgba(17, 19, 26, 0.4);
}

.contact-page__input {
  min-height: 56px;
  padding: 0.95rem 1rem 0.95rem 2.85rem;
  border-radius: 999px;
}

.contact-page__textarea {
  padding: 1.1rem 1rem 1rem 2.85rem;
  border-radius: 18px;
  min-height: 160px;
  resize: vertical;
}

.contact-page__field--select .contact-page__select {
  min-height: 56px;
  padding: 0.95rem 2.75rem 0.95rem 2.85rem;
  border-radius: 999px;
  appearance: none;
  cursor: pointer;
}

.contact-page__select-chevron {
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  color: rgba(17, 19, 26, 0.45);
  pointer-events: none;
}

.contact-page__input:hover,
.contact-page__textarea:hover,
.contact-page__select:hover {
  border-color: rgba(99, 108, 131, 0.46);
}

.contact-page__input:focus,
.contact-page__textarea:focus,
.contact-page__select:focus {
  outline: none;
  border-color: rgba(163, 254, 40, 0.75);
  box-shadow: 0 0 0 3px rgba(163, 254, 40, 0.18);
}

.contact-page__submit {
  margin-top: 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  min-height: 58px;
  padding: 1rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  background: #11131a;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.contact-page__submit:hover {
  background: #2a2d38;
}

.contact-page__submit:active {
  transform: scale(0.99);
}

.contact-page__submit:focus-visible {
  outline: 2px solid #c41e3a;
  outline-offset: 2px;
}

.contact-page__details {
  display: none;
}

.contact-page__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-page__detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fce8ec;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-page__detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(17, 19, 26, 0.45);
  margin-bottom: 0.25rem;
}

.contact-page__detail-value {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #11131a;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .contact-page__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-page__row2 {
    grid-template-columns: 1fr;
  }
}

/* Referanslar sayfası */
.references-page {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(4.5rem, 9vw, 7rem);
  background: #ffffff;
}

.references-page__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  margin: 0;
}

.references-page__item {
  min-height: clamp(190px, 18vw, 340px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2.5vw, 2.25rem);
  border-right: 1px solid rgba(17, 19, 26, 0.09);
  border-bottom: 1px solid rgba(17, 19, 26, 0.09);
  background: #ffffff;
}

.references-page__item:nth-child(5n) {
  border-right: 0;
}

.references-page__item:nth-last-child(-n + 5) {
  border-bottom: 0;
}

.reference-logo {
  display: block;
  width: min(58%, 260px);
  max-width: 100%;
  height: auto;
  filter: grayscale(1);
  opacity: 0.38;
  transition: filter 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
}

.references-page__item:hover .reference-logo,
.references-page__item:focus-within .reference-logo {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .references-page__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .references-page__item:nth-child(5n) {
    border-right: 1px solid rgba(17, 19, 26, 0.09);
  }

  .references-page__item:nth-child(4n) {
    border-right: 0;
  }

  .references-page__item:nth-last-child(-n + 5) {
    border-bottom: 1px solid rgba(17, 19, 26, 0.09);
  }

  .references-page__item:nth-last-child(-n + 4) {
    border-bottom: 0;
  }
}

@media (max-width: 820px) {
  .references-page {
    padding-left: 0;
    padding-right: 0;
  }

  .references-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .references-page__item {
    min-height: 170px;
  }

  .references-page__item:nth-child(4n),
  .references-page__item:nth-child(5n) {
    border-right: 1px solid rgba(17, 19, 26, 0.09);
  }

  .references-page__item:nth-child(2n) {
    border-right: 0;
  }

  .references-page__item:nth-last-child(-n + 4),
  .references-page__item:nth-last-child(-n + 5) {
    border-bottom: 1px solid rgba(17, 19, 26, 0.09);
  }

  .references-page__item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .reference-logo {
    width: min(62%, 220px);
  }
}

@media (max-width: 460px) {
  .references-page__grid {
    grid-template-columns: 1fr;
  }

  .references-page__item,
  .references-page__item:nth-child(2n),
  .references-page__item:nth-child(4n),
  .references-page__item:nth-child(5n) {
    border-right: 0;
  }

  .references-page__item:nth-last-child(-n + 2),
  .references-page__item:nth-last-child(-n + 4),
  .references-page__item:nth-last-child(-n + 5) {
    border-bottom: 1px solid rgba(17, 19, 26, 0.09);
  }

  .references-page__item:last-child {
    border-bottom: 0;
  }
}

/* Sticky header + mobile menu refinement */
body:has(.nav-menu-overlay.is-open) .page-main,
body:has(.nav-menu-overlay.is-open) .footer {
  filter: blur(9px);
  transform: scale(0.992);
  transition: filter 0.32s ease, transform 0.32s ease;
}

body:not(:has(.nav-menu-overlay.is-open)) .page-main,
body:not(:has(.nav-menu-overlay.is-open)) .footer {
  transition: filter 0.32s ease, transform 0.32s ease;
}

@media (min-width: 901px) {
  .site-header--compact .nav-menu-overlay {
    min-height: 52px;
    padding: 0 1rem !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-header--compact .nav-menu {
    gap: 1rem !important;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 1rem;
    padding: 0 1rem;
  }

  .site-header__container {
    max-width: 100%;
  }

  .site-header--compact .site-header__container {
    max-width: 430px;
  }

  .site-header--compact .nav-shell {
    display: grid;
    grid-template-columns: 1fr 68px auto;
    padding: 0;
    gap: 0;
    border-radius: 9px;
    border-color: rgba(255, 255, 255, 0.12);
  }

  .site-header--compact .nav-logo {
    min-height: 52px;
    padding: 0 0.85rem;
  }

  .site-header--compact .nav-toggle {
    display: inline-flex;
    width: 68px;
    height: 52px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-header--compact .nav-toggle__icon {
    width: 44px;
    height: 44px;
    background: transparent;
  }

  .site-header--compact .nav-toggle__icon span {
    background: #ffffff;
  }

  .site-header--compact .nav-cta--desktop {
    display: inline-flex;
    min-height: 52px;
    margin: 0;
    padding: 0 0.85rem;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    box-shadow: none;
    font-size: 0.86rem;
  }

  .site-header--compact .nav-cta--desktop svg {
    display: none;
  }

  .nav-menu-overlay {
    align-items: center;
    justify-content: flex-start;
    padding: 26px 0 2rem;
    background: rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(15px) saturate(1.05);
    -webkit-backdrop-filter: blur(15px) saturate(1.05);
  }

  .site-header--compact .nav-menu-overlay {
    min-height: auto;
    padding: 26px 0 2rem;
    border: 0;
  }

  .nav-menu-header,
  .nav-menu {
    width: min(448px, calc(100% - 2rem));
    margin-left: auto;
    margin-right: auto;
    background: #ffffff;
  }

  .nav-menu-header {
    display: grid;
    grid-template-columns: 1fr 68px auto;
    align-items: center;
    min-height: 68px;
    margin-top: 0;
    padding: 0;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 18px 55px rgba(17, 19, 26, 0.18);
    overflow: hidden;
  }

  .nav-menu-logo {
    min-height: 68px;
    padding: 0 1.35rem;
  }

  .nav-menu-logo img {
    height: 34px;
  }

  .nav-menu-header > .nav-menu__cta-button {
    width: auto;
    min-height: 38px;
    margin-right: 1.35rem;
    padding: 0.55rem 1rem;
    border-radius: 5px;
    background: #11131a;
    color: #ffffff;
    font-size: 0.92rem;
    box-shadow: 0 7px 18px rgba(17, 19, 26, 0.18);
  }

  .nav-menu-close {
    width: 68px;
    height: 68px;
    border-radius: 0;
    border-left: 1px solid rgba(17, 19, 26, 0.08);
    border-right: 1px solid rgba(17, 19, 26, 0.08);
    background: transparent;
  }

  .nav-menu {
    padding: 0 1.45rem;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-menu li {
    border-bottom: 1px dashed rgba(17, 19, 26, 0.11);
  }

  .nav-menu__link {
    min-height: 56px;
    padding: 0;
    font-size: clamp(1.35rem, 6vw, 1.55rem);
    font-weight: 600;
    line-height: 1.1;
  }

  .nav-menu__cta-button {
    width: auto;
    min-height: 38px;
    margin-left: auto;
    padding: 0.55rem 1rem;
    border-radius: 5px;
    background: #11131a;
    color: #ffffff;
    font-size: 0.92rem;
  }

  .nav-menu-overlay.is-open .nav-menu-header,
  .nav-menu-overlay.is-open .nav-menu {
    animation: stickyMenuIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

@keyframes stickyMenuIn {
  from {
    opacity: 0;
    transform: translateY(-18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Sticky header desktop behaves like the compact mobile shell */
@media (min-width: 901px) {
  .site-header--compact .site-header__container {
    max-width: 430px;
  }

  .site-header--compact .nav-shell {
    display: grid;
    grid-template-columns: 1fr 68px auto;
    align-items: center;
    padding: 0;
    gap: 0;
    background: var(--nav-bg);
    border-radius: 9px;
    overflow: hidden;
  }

  .site-header--compact .nav-logo {
    min-height: 52px;
    padding: 0 0.85rem;
  }

  .site-header--compact .nav-toggle {
    display: inline-flex;
    width: 68px;
    height: 52px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-header--compact .nav-toggle__icon {
    width: 44px;
    height: 44px;
    background: transparent;
  }

  .site-header--compact .nav-toggle__icon span {
    background: #ffffff;
  }

  .site-header--compact .nav-cta--desktop {
    display: inline-flex;
    min-height: 52px;
    margin: 0;
    padding: 0 0.85rem;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    box-shadow: none;
    font-size: 0.86rem;
  }

  .site-header--compact .nav-cta--desktop svg {
    display: none;
  }

  .site-header--compact .nav-menu-overlay {
    position: fixed !important;
    inset: 0 !important;
    display: none !important;
    width: 100vw !important;
    height: 100vh !important;
    min-height: 0;
    padding: 26px 0 2rem !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: flex-start;
    background: rgba(0, 0, 0, 0.68) !important;
    backdrop-filter: blur(15px) saturate(1.05) !important;
    -webkit-backdrop-filter: blur(15px) saturate(1.05) !important;
    border: 0;
    z-index: 9999;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.32s ease, visibility 0.32s ease;
  }

  .site-header--compact .nav-menu-overlay.is-open {
    display: flex !important;
    opacity: 1;
    visibility: visible;
  }

  .site-header--compact .nav-menu-header,
  .site-header--compact .nav-menu {
    display: flex !important;
    visibility: visible !important;
    width: min(448px, calc(100% - 2rem));
    margin-left: auto;
    margin-right: auto;
    background: #ffffff;
  }

  .site-header--compact .nav-menu-header {
    display: grid !important;
    grid-template-columns: 1fr 68px auto;
    align-items: center;
    min-height: 68px;
    margin-top: 0;
    padding: 0;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid rgba(17, 19, 26, 0.08);
    box-shadow: 0 18px 55px rgba(17, 19, 26, 0.22);
    overflow: hidden;
  }

  .site-header--compact .nav-menu-logo {
    display: inline-flex !important;
    visibility: visible !important;
    min-height: 68px;
    padding: 0 1.35rem;
  }

  .site-header--compact .nav-menu-logo img {
    height: 34px;
  }

  .site-header--compact .nav-menu-close {
    display: flex !important;
    visibility: visible !important;
    width: 68px;
    height: 68px;
    border-radius: 0;
    border-left: 1px solid rgba(17, 19, 26, 0.08);
    border-right: 1px solid rgba(17, 19, 26, 0.08);
    background: transparent;
  }

  .site-header--compact .nav-menu-header > .nav-menu__cta-button {
    display: inline-flex;
    width: auto;
    min-height: 38px;
    margin-right: 1.35rem;
    padding: 0.55rem 1rem;
    border-radius: 5px;
    background: #11131a;
    color: #ffffff;
    font-size: 0.92rem;
    box-shadow: 0 7px 18px rgba(17, 19, 26, 0.18);
  }

  .site-header--compact .nav-menu {
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 0 1.45rem !important;
    border-radius: 0;
    box-shadow: none;
  }

  .site-header--compact .nav-menu li {
    width: 100% !important;
    border-bottom: 1px dashed rgba(17, 19, 26, 0.11) !important;
  }

  .site-header--compact .nav-menu li:last-child {
    border-bottom: 0 !important;
  }

  .site-header--compact .nav-menu__link {
    width: 100% !important;
    min-height: 56px;
    padding: 0 !important;
    justify-content: flex-start;
    color: #11131a !important;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.1;
  }

  .site-header--compact .nav-menu__link--active {
    color: var(--accent) !important;
  }

  .site-header--compact .nav-menu-overlay.is-open .nav-menu-header,
  .site-header--compact .nav-menu-overlay.is-open .nav-menu {
    animation: stickyMenuIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

/* Final sticky menu behavior: opened menu is attached to the compact header */
@media (min-width: 901px) {
  .site-header--compact .nav-menu-overlay {
    padding-top: 26px !important;
  }

  .site-header--compact .nav-menu-header,
  .site-header--compact .nav-menu {
    width: min(448px, calc(100% - 2rem));
  }

  .site-header--compact .nav-menu-header {
    border-radius: 8px 8px 0 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  }

  .site-header--compact .nav-menu {
    border-radius: 0 0 8px 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
    transform-origin: top center;
  }

  .site-header--compact .nav-menu-overlay.is-open .nav-menu-header {
    animation: stickyHeaderGrowIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .site-header--compact .nav-menu-overlay.is-open .nav-menu {
    animation: stickyMenuDropIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

/* Mobile always uses the compact sticky header shape */
@media (max-width: 900px) {
  .site-header .site-header__container {
    max-width: 430px;
  }

  .site-header .nav-shell {
    display: grid;
    grid-template-columns: 1fr 68px auto;
    align-items: center;
    padding: 0;
    gap: 0;
    border-radius: 9px;
    background: var(--nav-bg);
    overflow: hidden;
  }

  .site-header .nav-logo {
    min-height: 52px;
    padding: 0 0.85rem;
  }

  .site-header .nav-logo img {
    height: 32px;
  }

  .site-header .nav-toggle {
    display: inline-flex;
    width: 68px;
    height: 52px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-header .nav-toggle__icon {
    width: 44px;
    height: 44px;
    background: transparent;
  }

  .site-header .nav-toggle__icon span {
    background: #ffffff;
  }

  .site-header .nav-cta--desktop {
    display: inline-flex;
    min-height: 52px;
    margin: 0;
    padding: 0 0.85rem;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    box-shadow: none;
    font-size: 0.86rem;
  }

  .site-header .nav-cta--desktop svg {
    display: none;
  }

  .nav-menu-header {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  }

  .nav-menu {
    border-radius: 0 0 8px 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  }

  .nav-menu-overlay.is-open .nav-menu-header {
    animation: stickyHeaderGrowIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .nav-menu-overlay.is-open .nav-menu {
    animation: stickyMenuDropIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

@keyframes stickyHeaderGrowIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scaleX(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleX(1);
  }
}

@keyframes stickyMenuDropIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scaleY(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

/* Menu body opens below the visible sticky header, not over it */
.site-header:has(.nav-menu-overlay.is-open) {
  z-index: 10001;
}

.site-header:has(.nav-menu-overlay.is-open) .nav-shell {
  border-radius: 9px 9px 0 0;
}

@media (min-width: 901px) {
  .site-header--compact .nav-menu-overlay {
    z-index: 10000;
    top: 0 !important;
    bottom: 0 !important;
    height: 100vh !important;
    padding-top: 52px !important;
  }

  .site-header--compact .nav-menu-overlay.is-open {
    pointer-events: auto;
  }

  .site-header--compact .nav-menu-header {
    display: none !important;
  }

  .site-header--compact .nav-menu {
    width: min(430px, calc(100% - 2rem));
    flex: 0 0 auto !important;
    max-height: none;
    padding: 0.7rem 1.45rem 0 !important;
    border-radius: 0;
    box-shadow: none;
  }

  .site-header--compact .nav-menu__link {
    min-height: 48px;
    font-size: 0.9rem;
  }

  .site-header--compact .nav-menu-overlay.is-open .nav-menu {
    animation: stickyMenuUnderHeaderIn 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

@media (max-width: 900px) {
  .nav-menu-overlay {
    z-index: 10000;
    top: 0;
    bottom: 0;
    height: 100vh;
    padding-top: 52px;
  }

  .nav-menu-header {
    display: none !important;
  }

  .nav-menu {
    width: min(430px, calc(100% - 2rem));
    flex: 0 0 auto;
    padding: 0.7rem 1.35rem 0;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-menu__link {
    min-height: 48px;
    font-size: clamp(1.12rem, 4.6vw, 1.25rem);
  }

  .nav-menu-overlay.is-open .nav-menu {
    animation: stickyMenuUnderHeaderIn 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

.site-header--compact .nav-menu-meta,
.nav-menu-meta {
  display: none;
}

.site-header--compact .nav-menu-overlay.is-open .nav-menu-meta,
.nav-menu-overlay.is-open .nav-menu-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(430px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.8rem 1.45rem 1rem;
  border-radius: 0 0 8px 8px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  animation: stickyMenuUnderHeaderIn 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.nav-menu-socials {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-menu-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(17, 19, 26, 0.06);
  color: #11131a;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
}

.nav-menu-socials a svg {
  width: 15px;
  height: 15px;
  display: block;
}

.nav-menu-meta p {
  margin: 0;
  color: rgba(17, 19, 26, 0.55);
  font-size: 0.9rem;
  font-weight: 500;
}

@keyframes stickyMenuUnderHeaderIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scaleY(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

/* Keep header visible and make the dropdown feel attached below it */
.site-header:has(.nav-menu-overlay.is-open) {
  z-index: 10050;
  top: 0;
  padding-top: 0;
}

.site-header:has(.nav-menu-overlay.is-open) .nav-shell {
  position: relative;
  z-index: 10051;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
}

.site-header:has(.nav-menu-overlay.is-open) .nav-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10052;
  background: var(--nav-bg);
  border-radius: inherit;
}

.site-header:has(.nav-menu-overlay.is-open) .nav-logo,
.site-header:has(.nav-menu-overlay.is-open) .nav-toggle,
.site-header:has(.nav-menu-overlay.is-open) .nav-cta,
.site-header:has(.nav-menu-overlay.is-open) .language-switcher--header {
  position: relative;
  z-index: 10053;
}

.site-header:has(.nav-menu-overlay.is-open) .nav-menu-overlay {
  z-index: 10040;
}

.site-header:has(.nav-menu-overlay.is-open) .nav-menu {
  background: #11131a;
}

.site-header:has(.nav-menu-overlay.is-open) .nav-menu li {
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

.site-header:has(.nav-menu-overlay.is-open) .nav-menu__link {
  color: rgba(255, 255, 255, 0.86) !important;
}

.site-header:has(.nav-menu-overlay.is-open) .nav-menu__link--active {
  color: #A3FE28 !important;
}

.site-header:has(.nav-menu-overlay.is-open) .language-switcher--header {
  display: none;
}

.site-header:has(.nav-menu-overlay.is-open) .nav-menu-meta {
  background: #11131a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header:has(.nav-menu-overlay.is-open) .nav-menu-socials a {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.site-header:has(.nav-menu-overlay.is-open) .nav-menu-meta p {
  color: rgba(255, 255, 255, 0.58);
}

/* Footer row inside opened sticky menu */
.site-header:has(.nav-menu-overlay.is-open) .nav-menu-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(430px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.9rem 1.45rem 1.05rem;
  border-radius: 0 0 8px 8px;
}

.site-header:has(.nav-menu-overlay.is-open) .nav-menu-socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  flex: 0 0 auto;
}

.site-header:has(.nav-menu-overlay.is-open) .nav-menu-meta p {
  flex: 1 1 auto;
  text-align: right;
  white-space: nowrap;
}

.nav-menu-overlay.is-open > .nav-menu-meta {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center;
  justify-content: space-between;
  width: min(430px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.9rem 1.45rem 1.05rem;
  border-radius: 0 0 8px 8px;
  background: #11131a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  position: relative;
  z-index: 10045;
}

.nav-menu-overlay.is-open > .nav-menu-meta .nav-menu-socials {
  display: flex !important;
}

.nav-menu-overlay.is-open > .nav-menu-meta p {
  display: block !important;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  text-align: right;
  white-space: nowrap;
}

.nav-menu__meta-item {
  display: none;
}

.site-header:has(.nav-menu-overlay.is-open) .nav-menu__meta-item {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 52px;
  padding: 0.75rem 0 0.15rem;
  border-bottom: 0 !important;
}

.site-header:has(.nav-menu-overlay.is-open) .nav-menu__meta-item .nav-menu-socials {
  display: flex !important;
  align-items: center;
  gap: 0.55rem;
}

.site-header:has(.nav-menu-overlay.is-open) .nav-menu__meta-item .nav-menu-copyright {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
}

.site-header:has(.nav-menu-overlay.is-open) .nav-menu-overlay > .nav-menu-meta {
  display: none !important;
}

/* Customer analysis report */
.analysis-page {
  background: #ffffff;
  color: #11131a;
  min-height: 100vh;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 3vw, 2.2rem);
}

.analysis-hero,
.analysis-shell,
.analysis-faq {
  width: min(1480px, 100%);
  margin: 0 auto;
}

.analysis-hero {
  text-align: center;
  padding: clamp(2.2rem, 5vw, 4rem);
  border: 1px solid rgba(17, 19, 26, 0.07);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 -12px 34px rgba(17, 19, 26, 0.045);
}

.analysis-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #59616f;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.analysis-hero h1 {
  margin: 0;
  color: #11131a;
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: 0;
}

.analysis-hero h1 strong { color: #7bdc1d; }
.analysis-hero p { max-width: 760px; margin: 1rem auto 0; color: #5a6377; font-weight: 600; }
.analysis-alert { margin: 1.2rem auto 0; max-width: 820px; padding: 0.9rem 1rem; border-radius: 14px; background: #fff6ed; color: #b54708; font-weight: 800; }

.analysis-shell { margin-top: clamp(1.4rem, 3vw, 2.4rem); }
.analysis-metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; margin-bottom: 1rem; }
.analysis-metrics article {
  padding: clamp(1.15rem, 2.2vw, 1.6rem);
  border-radius: 18px;
  background: #11131a;
  color: #ffffff;
  box-shadow: 0 -10px 30px rgba(17, 19, 26, 0.1);
}
.analysis-metrics span { display: block; margin-bottom: 0.8rem; color: rgba(255,255,255,.62); font-size: 0.76rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.analysis-metrics strong { color: #a3fe28; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1; font-variant-numeric: tabular-nums; }

.analysis-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; align-items: start; }
.analysis-card {
  min-width: 0;
  padding: clamp(1.1rem, 2vw, 1.45rem);
  border: 1px solid rgba(17,19,26,.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 -10px 28px rgba(17,19,26,.038);
}
.analysis-card--wide { grid-column: 1 / -1; }
.analysis-card h2 { margin: 0 0 1rem; font-size: 1.08rem; letter-spacing: 0; line-height: 1.35; }
.analysis-table-wrap {
  max-height: 430px;
  overflow: auto;
  border: 1px solid rgba(17,19,26,.08);
  border-radius: 14px;
  background: #ffffff;
  scrollbar-width: thin;
  scrollbar-color: #11131a #f1f3f6;
}
.analysis-table-wrap::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}
.analysis-table-wrap::-webkit-scrollbar-track {
  background: #f1f3f6;
  border-radius: 999px;
}
.analysis-table-wrap::-webkit-scrollbar-thumb {
  background: #11131a;
  border: 2px solid #f1f3f6;
  border-radius: 999px;
}
.analysis-table-wrap::-webkit-scrollbar-thumb:hover {
  background: #a3fe28;
}
.analysis-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.analysis-table th,
.analysis-table td { padding: 0.78rem 0.9rem; border-bottom: 1px solid rgba(17,19,26,.08); text-align: left; vertical-align: top; }
.analysis-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f8fafc;
  color: #667085;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.analysis-table td:first-child { max-width: 540px; font-weight: 700; color: #273142; }
.analysis-card--url .analysis-table { font-size: 0.8rem; }
.analysis-url {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.45;
}
.analysis-card--country .analysis-table td:first-child {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.analysis-faq {
  display: grid;
  grid-template-columns: minmax(260px, .74fr) minmax(0, 1.26fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(3rem, 7vw, 5rem);
  padding: clamp(2rem, 4vw, 3rem) 0 0;
  border-top: 1px solid rgba(17,19,26,.08);
}
.analysis-faq__intro h2 {
  margin: 0;
  color: #11131a;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0;
}
.analysis-faq__intro p {
  margin: 1rem 0 0;
  max-width: 420px;
  color: #5a6377;
  line-height: 1.7;
  font-weight: 600;
}
.analysis-faq__list {
  border-top: 1px solid rgba(17,19,26,.1);
}

@media (max-width: 900px) {
  .analysis-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .analysis-grid { grid-template-columns: 1fr; }
  .analysis-card--wide { grid-column: auto; }
  .analysis-faq { grid-template-columns: 1fr; }
  .analysis-page { padding-inline: 0.8rem; }
}

@media (max-width: 560px) {
  .analysis-hero { border-radius: 20px; }
  .analysis-metrics { grid-template-columns: 1fr; }
  .analysis-table { min-width: 560px; }
  .analysis-card--url .analysis-table { min-width: 680px; }
  .analysis-table-wrap { max-height: 360px; }
}

/* Unified eyebrow corner frame */
.page-title__eyebrow,
.services-section__eyebrow,
.impact__subtitle,
.trust__eyebrow,
.process__eyebrow,
.faq__eyebrow,
.about-hero__eyebrow,
.footer__cta-eyebrow,
.contact-page__eyebrow-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 0;
  padding: 0.42rem 0.95rem;
  color: rgba(17, 19, 26, 0.72);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: none;
  color: rgba(17, 19, 26, 0);
  animation: eyebrowTextReveal 0.45s ease 0.42s forwards;
}

.page-title__eyebrow::before,
.services-section__eyebrow::before,
.impact__subtitle::before,
.trust__eyebrow::before,
.process__eyebrow::before,
.faq__eyebrow::before,
.about-hero__eyebrow::before,
.footer__cta-eyebrow::before,
.contact-page__eyebrow-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: auto;
  width: 10px;
  height: 10px;
  border: 0;
  border-left: 2px solid #A3FE28;
  border-bottom: 2px solid #A3FE28;
  border-radius: 0;
  opacity: 1;
  transform: translate(0.65rem, -0.28rem);
  background: transparent;
  animation: eyebrowCornerLeftReveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

.page-title__eyebrow::after,
.services-section__eyebrow::after,
.impact__subtitle::after,
.trust__eyebrow::after,
.process__eyebrow::after,
.faq__eyebrow::after,
.about-hero__eyebrow::after,
.footer__cta-eyebrow::after,
.contact-page__eyebrow-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: auto;
  display: block;
  width: 10px;
  height: 10px;
  border: 0;
  border-top: 2px solid #A3FE28;
  border-right: 2px solid #A3FE28;
  border-radius: 0;
  opacity: 1;
  transform: translate(-0.65rem, 0.28rem);
  background: transparent;
  animation: eyebrowCornerRightReveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

.footer__cta-eyebrow svg {
  display: none;
}

.footer__cta-eyebrow {
  animation-name: eyebrowFooterTextReveal;
}

@keyframes eyebrowTextReveal {
  from { color: rgba(17, 19, 26, 0); }
  to { color: rgba(17, 19, 26, 0.72); }
}

@keyframes eyebrowFooterTextReveal {
  from { color: rgba(255, 255, 255, 0); }
  to { color: rgba(255, 255, 255, 0.72); }
}

@keyframes eyebrowCornerLeftReveal {
  from { transform: translate(0.65rem, -0.28rem); }
  to { transform: translate(0, 0); }
}

@keyframes eyebrowCornerRightReveal {
  from { transform: translate(-0.65rem, 0.28rem); }
  to { transform: translate(0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .page-title__eyebrow,
  .services-section__eyebrow,
  .impact__subtitle,
  .trust__eyebrow,
  .process__eyebrow,
  .faq__eyebrow,
  .about-hero__eyebrow,
  .footer__cta-eyebrow,
  .contact-page__eyebrow-wrap,
  .page-title__eyebrow::before,
  .services-section__eyebrow::before,
  .impact__subtitle::before,
  .trust__eyebrow::before,
  .process__eyebrow::before,
  .faq__eyebrow::before,
  .about-hero__eyebrow::before,
  .footer__cta-eyebrow::before,
  .contact-page__eyebrow-wrap::before,
  .page-title__eyebrow::after,
  .services-section__eyebrow::after,
  .impact__subtitle::after,
  .trust__eyebrow::after,
  .process__eyebrow::after,
  .faq__eyebrow::after,
  .about-hero__eyebrow::after,
  .footer__cta-eyebrow::after,
  .contact-page__eyebrow-wrap::after {
    animation: none;
  }

  .page-title__eyebrow,
  .services-section__eyebrow,
  .impact__subtitle,
  .trust__eyebrow,
  .process__eyebrow,
  .faq__eyebrow,
  .about-hero__eyebrow,
  .contact-page__eyebrow-wrap {
    color: rgba(17, 19, 26, 0.72);
  }

  .footer__cta-eyebrow {
    color: rgba(255, 255, 255, 0.72);
  }
}
