:root {
  --bg: #f5f8fc;
  --surface: #ffffff;
  --surface-2: #edf3ff;
  --text: #14233a;
  --muted: #4f6078;
  --primary: #1b74b8;
  --secondary: #2caea6;
  --accent: #2f3691;
  --line: #cfe0f5;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(20, 35, 58, 0.08);
  --shadow-hover: 0 18px 42px rgba(20, 35, 58, 0.14);
  --two-col-left: 1.15fr;
  --two-col-right: 0.85fr;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(27, 116, 184, 0.13), transparent 35%),
    radial-gradient(circle at 90% 20%, rgba(44, 174, 166, 0.14), transparent 42%),
    linear-gradient(180deg, #f8fbff 0%, #f2f7fc 100%);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  background-image:
    linear-gradient(transparent 31px, rgba(47, 54, 145, 0.1) 32px),
    linear-gradient(90deg, transparent 31px, rgba(27, 116, 184, 0.08) 32px);
  background-size: 32px 32px;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.sr-only:focus {
  width: auto;
  height: auto;
  margin: 0.5rem;
  clip: auto;
  padding: 0.55rem 0.7rem;
  background: #fff;
  border-radius: 6px;
  z-index: 999;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(245, 248, 252, 0.92);
  border-bottom: 1px solid var(--line);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 94px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--text);
}

.brand img {
  width: auto;
  height: 53px;
  margin-left: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  color: var(--text);
  padding: 0.5rem 0.82rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--surface-2);
  text-decoration: none;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-picker-wrap {
  display: none;
}

.lang-picker-desktop {
  display: inline-flex;
  margin-left: 0.25rem;
}

.lang-picker {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.34rem 1.95rem 0.34rem 0.58rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text);
  background: var(--surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%233e516f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.62rem center;
  background-size: 10px 6px;
  letter-spacing: 0.03em;
  line-height: 1.2;
  min-height: 34px;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  padding: 0.5rem;
  font-weight: 700;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.menu-toggle-icon {
  display: grid;
  gap: 4px;
}

.menu-toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.page-shell {
  position: relative;
  z-index: 1;
}

.anchor-section {
  scroll-margin-top: 96px;
}

.hero {
  padding: 4.5rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: var(--two-col-left) var(--two-col-right);
  gap: 1.5rem;
  align-items: stretch;
}

.hero-copy,
.hero-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 2rem;
  height: 100%;
}

.hero-panel {
  padding: 1.1rem;
  background: linear-gradient(145deg, #f0f7ff, #f4fdff);
  height: 100%;
}

.visual-stack {
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.75rem;
  height: 100%;
}

.visual-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.visual-caption {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.visual-caption-top {
  font-weight: 700;
  color: var(--accent);
}

.visual-caption-bottom {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 0.45rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2rem, 4.1vw, 3.4rem);
  margin-bottom: 0.85rem;
}

.hero-title-main,
.hero-title-sub {
  display: block;
}

.hero-title-main {
  white-space: nowrap;
}

@media (min-width: 761px) {
  .hero-copy h1 {
    font-size: clamp(1.85rem, 3.2vw, 2.95rem);
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .hero-copy .lead {
    margin-bottom: 0;
  }

  .hero-copy .hero-actions {
    margin-top: auto;
    padding-top: 1.1rem;
  }
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

h3 {
  font-size: 1.35rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.68rem 1.2rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  color: #fff;
}

.btn-secondary {
  border-color: var(--line);
  color: var(--text);
  background: var(--surface);
}

.section {
  padding: 2rem 0 3.2rem;
}

.section-title {
  margin-bottom: 1rem;
}

.service-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-quick-card,
.service-card,
.team-card,
.reference-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-quick-card,
.service-card,
.team-card,
.reference-card,
.contact-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-quick-card:hover,
.service-card:hover,
.team-card:hover,
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: #bdd7f2;
}

.service-quick-card {
  padding: 1.2rem;
}

.split-layout {
  display: grid;
  grid-template-columns: var(--two-col-left) var(--two-col-right);
  gap: 1rem;
  align-items: start;
}

.about-layout {
  margin-bottom: 1.1rem;
}

.about-main {
  background: linear-gradient(155deg, #f4f9ff 0%, #f7fdff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.6rem 1.1rem;
}

.about-main .story p {
  margin: 0 0 0.9rem;
}

.about-main .story {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.about-team-wrap {
  margin-top: 2.2rem;
}

.about-team-wrap .section-title {
  margin-bottom: 0.65rem;
  font-size: clamp(2rem, 4.1vw, 3.4rem);
  line-height: 1.2;
}

.services-intro,
.references-top {
  margin-bottom: 1.2rem;
}

.services-intro {
  grid-template-columns: 1fr;
}

.services-copy {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.services-copy .lead {
  margin-bottom: 1rem;
}

.services-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.services-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #bed7f2;
  background: rgba(255, 255, 255, 0.82);
  color: #234064;
  padding: 0.45rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

.story p {
  font-size: 1.05rem;
  color: var(--text);
}

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

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

.team-card {
  overflow: hidden;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border-bottom: 1px solid var(--line);
  filter: grayscale(100%);
  transition: filter 0.45s ease, transform 0.45s ease;
}

.team-card-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 20%, rgba(27, 116, 184, 0.12), transparent 28%),
    radial-gradient(circle at 80% 24%, rgba(37, 180, 170, 0.12), transparent 24%),
    linear-gradient(155deg, #f6fbff 0%, #eef8ff 55%, #f8fdff 100%);
}

.team-card-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 999px;
  border: 1px solid #c9def4;
  background: rgba(255, 255, 255, 0.9);
  color: #22456b;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.team-card img[src*="can-emci.jpeg"] {
  object-position: center 23%;
}

.team-card img[src*="ali-deniz-ergun.jpeg"] {
  object-position: center 5%;
}

.team-card img[src*="cagdas-polat.jpeg"] {
  object-position: center 16%;
}

.team-card img[src*="istem-cetinkaya-hasdal.jpg"] {
  object-position: center 25%;
}

.team-card img[src*="kemal-bas.jpeg"] {
  object-position: center 28%;
}

.team-card img[src*="inci-dindar.webp"] {
  object-position: center 12%;
}

.team-card img[src*="halil-ibrahim-zeytin.jpeg"] {
  object-position: center 5%;
}

.team-card img[src*="izlen-erdem.jpeg"] {
  object-position: center 30%;
}

.team-card:hover img,
.team-card:focus-within img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.team-copy {
  padding: 0.8rem 1rem 1rem;
}

.team-copy h3 {
  margin: 0 0 0.2rem;
}

.team-name-row {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.team-name-text {
  color: var(--text);
}

.team-name-link {
  color: var(--text);
  text-decoration: none;
}

.team-name-link:hover,
.team-name-link:focus-visible {
  color: var(--text);
  text-decoration: none;
}

.team-linkedin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  color: #0a66c2;
  text-decoration: none;
}

.team-linkedin-link img,
.team-linkedin-link svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0.22rem;
}

.team-linkedin-link:hover,
.team-linkedin-link:focus-visible {
  color: #084f96;
}

.team-copy p {
  margin: 0;
  color: var(--muted);
}

.team-role-prefix,
.team-role-detail {
  display: inline;
}

@media (max-width: 760px) {
  .team-role-prefix {
    display: block;
  }
}

@media (min-width: 761px) {
  .team-role-prefix,
  .team-role-detail {
    display: block;
  }
}

.team-focus {
  margin-top: 0.2rem;
  color: var(--accent);
  font-weight: 700;
}

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

.service-card {
  padding: 1.2rem;
}

.service-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

.service-card p {
  color: var(--muted);
  margin: 0;
}

.service-card ul {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
}

.service-card li {
  color: var(--text);
  margin-bottom: 0.2rem;
}

.reference-marquee {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.reference-row {
  overflow: hidden;
  border-radius: 12px;
}

.reference-track {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: max-content;
  --marquee-start: 0px;
  --loop-shift: 0px;
  --marquee-duration: 36s;
  animation: reference-marquee var(--marquee-duration) linear infinite;
  will-change: transform;
}

.reference-row:nth-child(1) .reference-track {
  --marquee-start: 0px;
  --marquee-duration: 38s;
}

.reference-row:nth-child(2) .reference-track {
  --marquee-start: -132px;
  --marquee-duration: 47s;
}

.reference-card {
  height: 100px;
  min-height: 100px;
  width: 180px;
  min-width: 180px;
  flex: 0 0 180px;
  display: grid;
  place-items: center;
  padding: 0.9rem 1rem;
  overflow: hidden;
}

.reference-card img {
  display: block;
  width: 100%;
  max-width: 150px;
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(1) saturate(0) contrast(1.02);
  opacity: 0.72;
  transform-origin: center;
  transition: filter 0.32s ease, opacity 0.32s ease, transform 0.32s ease;
}

.reference-card img[src*="west-falafel.png"] {
  transform: scale(1.65);
}

.reference-card img[src*="dominos.png"] {
  transform: scale(1.92);
}

.reference-card img[src*="otelz.svg"] {
  max-width: 128px;
  max-height: 46px;
}

.reference-card:hover img,
.reference-card:focus-within img,
.reference-card img:hover {
  filter: none;
  opacity: 1;
}

.reference-note {
  margin-top: 1rem;
  color: var(--muted);
}

@keyframes reference-marquee {
  from {
    transform: translate3d(var(--marquee-start), 0, 0);
  }
  to {
    transform: translate3d(calc(var(--marquee-start) - var(--loop-shift)), 0, 0);
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: stretch;
}

.contact-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.contact-intro-title {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--text);
}

.contact-form label {
  display: grid;
  gap: 0.32rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0.65rem 0.75rem;
  font: inherit;
  color: var(--text);
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-feedback {
  min-height: 1.2rem;
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.form-feedback.is-error {
  color: #b42318;
}

.form-feedback.is-success {
  color: #0f7a66;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(27, 116, 184, 0.25);
  border-color: var(--primary);
}

.contact-card {
  padding: 1.2rem;
  background: linear-gradient(150deg, #f2f9ff 0%, #edfffc 100%);
  display: grid;
  gap: 0.62rem;
  align-content: start;
  grid-template-rows: auto auto auto auto auto minmax(260px, 1fr);
  height: 100%;
}

.contact-card h2 {
  margin-bottom: 0.2rem;
}

.contact-card p {
  margin: 0;
  color: var(--text);
}

.map-embed {
  width: 100%;
  min-height: 260px;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  margin-top: 0.4rem;
}

.site-footer {
  border-top: 1px solid #d3e3f5;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 251, 255, 0.96) 100%);
  position: relative;
  z-index: 1;
}

.footer-shell {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.footer-signature,
.footer-copy,
.footer-rights {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.35;
  letter-spacing: 0.005em;
  font-weight: 500;
}

.footer-signature {
  letter-spacing: 0.005em;
}

.footer-legal {
  display: grid;
  justify-items: end;
  gap: 0.15rem;
}

.footer-copy,
.footer-rights {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .hero-grid,
  .split-layout,
  .contact-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    min-height: 0;
    padding: 0.9rem 0;
  }

  .footer-legal {
    justify-items: start;
  }

  .footer-copy,
  .footer-rights {
    text-align: left;
  }

  .reference-card {
    min-width: 170px;
  }
}

@media (max-width: 760px) {
  .topbar {
    min-height: 84px;
  }

  .brand img {
    height: 43px;
  }

  .lang-picker-desktop {
    display: none;
  }

  .lang-picker-mobile {
    display: inline-flex;
  }

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

  .site-nav {
    position: absolute;
    right: 1rem;
    top: 80px;
    display: none;
    width: min(260px, calc(100% - 2rem));
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.5rem;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }
  .service-quick-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .services-pill-grid {
    grid-template-columns: 1fr;
  }

  .about-main .story {
    max-height: none;
  }

  .team-card img {
    aspect-ratio: 3 / 2;
  }

  .reference-card {
    min-width: 150px;
    min-height: 90px;
  }

  .hero {
    padding-top: 3.2rem;
  }

  body {
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  .hero-title-main {
    white-space: normal;
  }
}
