/**
 * /web-tasarim production hero v2.
 * Approved /web-tasarim-gelistirme hero rules, isolated from the rest of the page.
 */

body.web-design-production-page {
  --wtd-hero-navy: #071a52;
  --wtd-hero-blue: #075ce8;
  --wtd-hero-copy: #4e6085;
  --wtd-hero-line: rgba(16, 53, 119, .1);
}

body.web-design-production-page .wtd-hero {
  position: relative;
  display: block;
  min-height: max(860px, 100svh);
  overflow: hidden;
  isolation: isolate;
  color: var(--wtd-hero-navy);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(247, 250, 255, .97)),
    #f7faff;
}

body.web-design-production-page .wtd-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 92, 232, .035) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(rgba(7, 92, 232, .035) 1px, transparent 1px) 0 0 / 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 8%, #000 38%, transparent 96%);
  mask-image: linear-gradient(to bottom, transparent 8%, #000 38%, transparent 96%);
  content: "";
}

body.web-design-production-page .wtd-hero__shell {
  position: relative;
  z-index: 2;
  width: var(--wtd-shell);
  min-height: 0;
  margin-inline: auto;
  display: block;
  padding: calc(var(--home2-top-offset, 126px) + 26px) 0 22px;
}

body.web-design-production-page .wtd-hero__stage {
  display: grid;
  grid-template-areas:
    "copy visual"
    "actions visual";
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, .97fr);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: end;
  column-gap: clamp(42px, 5vw, 86px);
  min-height: clamp(350px, 30vw, 430px);
}

body.web-design-production-page .wtd-hero__copy {
  grid-area: copy;
  align-self: center;
  width: min(100%, 690px);
  padding: 0;
}

body.web-design-production-page .wtd-hero__eyebrow {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 clamp(16px, 2vh, 22px);
  padding: 6px 11px;
  border: 1px solid rgba(7, 92, 232, .11);
  border-radius: 999px;
  color: #24457f;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 6px 22px rgba(17, 57, 126, .06);
  font-size: 12px;
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

body.web-design-production-page .wtd-hero__eyebrow>span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--wtd-hero-blue);
  box-shadow: 0 0 0 4px rgba(7, 92, 232, .09);
}

body.web-design-production-page .wtd-hero__eyebrow>span::after {
  content: none;
}

body.web-design-production-page .wtd-hero__title {
  max-width: 720px;
  margin: 0;
  color: var(--wtd-hero-navy);
  font-family: var(--tc-heading-font-family, "Satoshi-Variable"), Arial, sans-serif;
  font-size: clamp(46px, 3.35vw, 64px) !important;
  font-weight: 720;
  line-height: 1.02;
  letter-spacing: -.052em;
  text-wrap: balance;
  white-space: normal;
}

body.web-design-production-page .wtd-hero__title-line {
  display: block;
}

body.web-design-production-page .wtd-hero__title-accent {
  color: var(--wtd-hero-blue);
}

body.web-design-production-page .wtd-hero__lead {
  max-width: 650px;
  margin: clamp(17px, 2.2vh, 24px) 0 0;
  color: var(--wtd-hero-copy);
  font-size: clamp(16px, 1.05vw, 19px);
  font-weight: 440;
  line-height: 1.58;
  letter-spacing: -.01em;
  text-wrap: pretty;
}

body.web-design-production-page .wtd-hero__visual {
  position: relative;
  grid-area: visual;
  align-self: stretch;
  min-height: 350px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 50, 112, .09);
  border-radius: 26px;
  background: #e9eff7;
  box-shadow:
    0 22px 55px rgba(18, 50, 102, .13),
    0 2px 4px rgba(18, 50, 102, .05);
}

body.web-design-production-page .wtd-hero__visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
  content: "";
}

body.web-design-production-page .wtd-hero__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 57% 48%;
}

body.web-design-production-page .wtd-hero__actions {
  grid-area: actions;
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: clamp(22px, 2.8vh, 30px) 0 0;
}

body.web-design-production-page .wtd-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 740;
  line-height: 1;
  letter-spacing: -.01em;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

body.web-design-production-page .wtd-button i {
  font-size: 16px;
  line-height: 1;
  transition: none;
}

body.web-design-production-page .wtd-button:hover i {
  transform: none;
}

body.web-design-production-page .wtd-button--primary {
  min-width: 205px;
  color: #fff;
  background: var(--wtd-hero-blue);
  border-color: var(--wtd-hero-blue);
  box-shadow: 0 11px 26px rgba(7, 92, 232, .22);
}

body.web-design-production-page .wtd-button--primary:hover {
  color: #fff;
  background: #064fc8;
  border-color: #064fc8;
  box-shadow: 0 14px 30px rgba(7, 92, 232, .28);
  transform: translateY(-1px);
}

body.web-design-production-page .wtd-button--secondary {
  min-width: 190px;
  color: #159447;
  background: rgba(255, 255, 255, .88);
  border-color: rgba(29, 182, 86, .36);
  box-shadow: 0 8px 20px rgba(25, 131, 68, .06);
}

body.web-design-production-page .wtd-button--secondary:hover {
  color: #0d7f39;
  background: #f7fff9;
  border-color: rgba(21, 148, 71, .58);
  transform: translateY(-1px);
}

body.web-design-production-page .wtd-button:focus-visible {
  outline: 3px solid rgba(7, 92, 232, .28);
  outline-offset: 3px;
}

body.web-design-production-page .wtd-hero__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

body.web-design-production-page .wtd-hero__features li {
  min-width: 0;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 15px;
  border: 1px solid var(--wtd-hero-line);
  border-radius: 13px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 8px 24px rgba(13, 46, 102, .055);
}

body.web-design-production-page .wtd-hero__features li>i {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--wtd-hero-blue);
  background: rgba(7, 92, 232, .075);
  font-size: 17px;
}

body.web-design-production-page .wtd-hero__features span {
  min-width: 0;
  display: grid;
  gap: 2px;
}

body.web-design-production-page .wtd-hero__features strong {
  overflow: hidden;
  color: #132b62;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.web-design-production-page .wtd-hero__features small {
  overflow: hidden;
  color: #6a7898;
  font-size: 11px;
  font-weight: 540;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.web-design-production-page .wtd-hero__proof {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, .65fr);
  align-items: stretch;
  gap: 18px;
  margin-top: 18px;
}

body.web-design-production-page .wtd-hero__testimonial,
body.web-design-production-page .wtd-hero__rating {
  margin: 0;
  border: 1px solid var(--wtd-hero-line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 8px 26px rgba(13, 46, 102, .055);
}

body.web-design-production-page .wtd-hero__testimonial {
  min-width: 0;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 13px 18px;
}

body.web-design-production-page .wtd-hero__testimonial>img {
  width: 68px;
  height: 68px;
  display: block;
  border: 4px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 16px rgba(14, 43, 94, .14);
}

body.web-design-production-page .wtd-hero__testimonial figcaption {
  min-width: 0;
}

body.web-design-production-page .wtd-hero__stars {
  color: #f5b51b;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .08em;
}

body.web-design-production-page .wtd-hero__testimonial blockquote {
  margin: 5px 0 4px;
  color: #465879;
  font-size: 12.5px;
  font-weight: 520;
  line-height: 1.42;
  text-wrap: pretty;
}

body.web-design-production-page .wtd-hero__testimonial p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  line-height: 1.2;
}

body.web-design-production-page .wtd-hero__testimonial p strong {
  color: #142d63;
  font-size: 11px;
  font-weight: 770;
}

body.web-design-production-page .wtd-hero__testimonial p span {
  padding-left: 8px;
  border-left: 1px solid rgba(16, 53, 119, .15);
  color: #74819d;
  font-size: 10px;
  font-weight: 570;
}

body.web-design-production-page .wtd-hero__rating {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 16px;
}

body.web-design-production-page .wtd-hero__avatars {
  display: flex;
  align-items: center;
  padding-left: 8px;
}

body.web-design-production-page .wtd-hero__avatars img,
body.web-design-production-page .wtd-hero__avatars>span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
}

body.web-design-production-page .wtd-hero__avatars>span {
  color: #fff;
  background: var(--wtd-hero-blue);
  font-size: 14px;
  font-weight: 760;
}

body.web-design-production-page .wtd-hero__rating-copy {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 9px;
}

body.web-design-production-page .wtd-hero__rating-copy>strong {
  color: var(--wtd-hero-navy);
  font-size: 24px;
  font-weight: 780;
  line-height: 1;
  letter-spacing: -.04em;
}

body.web-design-production-page .wtd-hero__rating-copy>strong small {
  color: #5c6c8e;
  font-size: 12px;
  font-weight: 700;
}

body.web-design-production-page .wtd-hero__rating-copy>.wtd-hero__stars {
  font-size: 11px;
}

body.web-design-production-page .wtd-hero__rating-copy>small {
  grid-column: 1 / -1;
  margin-top: 4px;
  color: #4f6082;
  font-size: 10.5px;
  font-weight: 650;
}

body.web-design-production-page .wtd-hero__brands {
  margin-top: 16px;
}

body.web-design-production-page .wtd-hero__brands>p {
  margin: 0 0 9px;
  color: #6b7895;
  font-size: 10.5px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: .035em;
  text-align: center;
}

body.web-design-production-page .wtd-hero__brands ul {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: clamp(24px, 4vw, 70px);
  margin: 0;
  padding: 0 clamp(18px, 3vw, 54px);
  list-style: none;
}

body.web-design-production-page .wtd-hero__brands li {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.web-design-production-page .wtd-hero__brands img {
  width: auto;
  max-width: 118px;
  height: 27px;
  display: block;
  object-fit: contain;
  filter: grayscale(1) brightness(.46) contrast(1.2);
  opacity: .76;
}

@media (max-width: 1199.98px) {
  body.web-design-production-page .wtd-hero__stage {
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
    column-gap: 36px;
  }

  body.web-design-production-page .wtd-hero__title {
    font-size: clamp(43px, 4.2vw, 54px) !important;
  }

  body.web-design-production-page .wtd-hero__lead {
    font-size: 16px;
  }

  body.web-design-production-page .wtd-hero__features li {
    padding-inline: 12px;
  }
}

@media (max-width: 991.98px) {
  body.web-design-production-page .wtd-hero {
    min-height: 0;
  }

  body.web-design-production-page .wtd-hero__shell {
    padding: calc(var(--home2-top-offset, 146px) + 18px) 0 32px;
  }

  body.web-design-production-page .wtd-hero__stage {
    grid-template-areas:
      "copy"
      "visual"
      "actions";
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    row-gap: 18px;
    min-height: 0;
  }

  body.web-design-production-page .wtd-hero__copy {
    width: min(100%, 700px);
  }

  body.web-design-production-page .wtd-hero__visual {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  body.web-design-production-page .wtd-hero__actions {
    margin-top: 0;
  }

  body.web-design-production-page .wtd-hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.web-design-production-page .wtd-hero__proof {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  }

  body.web-design-production-page .wtd-hero__brands ul {
    gap: 24px;
    padding-inline: 0;
  }
}

@media (max-width: 767.98px) {
  body.web-design-production-page {
    --wtd-shell: calc(100vw - 32px);
  }

  body.web-design-production-page .wtd-hero::before {
    background-size: 42px 42px;
  }

  body.web-design-production-page .wtd-hero__shell {
    padding: calc(var(--home2-top-offset, 150px) + 10px) 0 24px;
  }

  body.web-design-production-page .wtd-hero__stage {
    row-gap: 12px;
  }

  body.web-design-production-page .wtd-hero__eyebrow {
    min-height: 27px;
    margin-bottom: 12px;
    padding: 5px 9px;
    font-size: 10.5px;
  }

  body.web-design-production-page .wtd-hero__title {
    max-width: none;
    font-size: clamp(30px, 8.55vw, 37px) !important;
    line-height: 1.04;
    letter-spacing: -.047em;
    white-space: normal;
  }

  body.web-design-production-page .wtd-hero__lead {
    margin-top: 11px;
    font-size: 14px;
    line-height: 1.47;
  }

  body.web-design-production-page .wtd-hero__visual {
    height: clamp(205px, 62vw, 242px);
    aspect-ratio: auto;
    border-radius: 19px;
  }

  body.web-design-production-page .wtd-hero__visual img {
    object-position: 59% 45%;
  }

  body.web-design-production-page .wtd-hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
  }

  body.web-design-production-page .wtd-button {
    width: 100%;
    min-height: 44px;
    padding-inline: 16px;
    font-size: 12.5px;
  }

  body.web-design-production-page .wtd-button--primary,
  body.web-design-production-page .wtd-button--secondary {
    min-width: 0;
  }

  body.web-design-production-page .wtd-hero__features {
    gap: 7px;
    margin-top: 12px;
  }

  body.web-design-production-page .wtd-hero__features li {
    min-height: 44px;
    gap: 8px;
    padding: 7px 9px;
    border-radius: 10px;
  }

  body.web-design-production-page .wtd-hero__features li>i {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
    border-radius: 8px;
    font-size: 13px;
  }

  body.web-design-production-page .wtd-hero__features strong {
    font-size: 10.5px;
  }

  body.web-design-production-page .wtd-hero__features small {
    display: none;
  }

  body.web-design-production-page .wtd-hero__proof {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    margin-top: 10px;
  }

  body.web-design-production-page .wtd-hero__testimonial {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 11px;
    padding: 10px 12px;
    border-radius: 12px;
  }

  body.web-design-production-page .wtd-hero__testimonial>img {
    width: 54px;
    height: 54px;
    border-width: 3px;
  }

  body.web-design-production-page .wtd-hero__testimonial .wtd-hero__stars {
    font-size: 9px;
  }

  body.web-design-production-page .wtd-hero__testimonial blockquote {
    display: -webkit-box;
    overflow: hidden;
    margin: 4px 0 3px;
    font-size: 10.5px;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  body.web-design-production-page .wtd-hero__testimonial p {
    gap: 5px;
  }

  body.web-design-production-page .wtd-hero__testimonial p strong {
    font-size: 9.5px;
  }

  body.web-design-production-page .wtd-hero__testimonial p span {
    padding-left: 5px;
    font-size: 8.5px;
  }

  body.web-design-production-page .wtd-hero__rating {
    min-height: 51px;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 12px;
  }

  body.web-design-production-page .wtd-hero__avatars img,
  body.web-design-production-page .wtd-hero__avatars>span {
    width: 27px;
    height: 27px;
  }

  body.web-design-production-page .wtd-hero__rating-copy>strong {
    font-size: 19px;
  }

  body.web-design-production-page .wtd-hero__rating-copy>small {
    margin-top: 2px;
    font-size: 9px;
  }

  body.web-design-production-page .wtd-hero__brands {
    display: none;
  }
}

@media (max-width: 379.98px) {
  body.web-design-production-page {
    --wtd-shell: calc(100vw - 26px);
  }

  body.web-design-production-page .wtd-hero__title {
    font-size: clamp(28px, 8.3vw, 32px) !important;
  }

  body.web-design-production-page .wtd-hero__lead {
    font-size: 13.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.web-design-production-page .wtd-button {
    transition: none !important;
  }
}

@media (forced-colors: active) {

  body.web-design-production-page .wtd-hero,
  body.web-design-production-page .wtd-hero__features li,
  body.web-design-production-page .wtd-hero__testimonial,
  body.web-design-production-page .wtd-hero__rating {
    border-color: CanvasText;
    background: Canvas;
    color: CanvasText;
  }

  body.web-design-production-page .wtd-hero__visual {
    border: 1px solid CanvasText;
  }
}

body.web-design-production-page.home3-page:not(.home3-nav-scrolled) .home2-campaign {
  background: #00235a !important;
  border-bottom-color: rgba(255, 255, 255, .16) !important;
  box-shadow: none !important;
}

body.web-design-production-page.home3-page:not(.home3-nav-scrolled) .home2-header,
body.web-design-production-page.home3-page:not(.home3-nav-scrolled) .home2-header>.navbar {
  background: rgba(255, 255, 255, .92) !important;
  border-bottom-color: rgba(12, 45, 105, .08) !important;
  box-shadow: 0 10px 34px rgba(11, 42, 98, .06) !important;
  -webkit-backdrop-filter: blur(16px) saturate(150%) !important;
  backdrop-filter: blur(16px) saturate(150%) !important;
}

body.web-design-production-page.home3-page:not(.home3-nav-scrolled) .home2-header .nav-link {
  color: #071a52 !important;
}

body.web-design-production-page.home3-page:not(.home3-nav-scrolled) .home2-header .nav-link:hover,
body.web-design-production-page.home3-page:not(.home3-nav-scrolled) .home2-header .nav-link:focus {
  color: #075ce8 !important;
  background: rgba(7, 92, 232, .07) !important;
}

body.web-design-production-page.home3-page:not(.home3-nav-scrolled) .home2-header .navbar-brand img {
  filter: none !important;
}

body.web-design-production-page.home3-page:not(.home3-nav-scrolled) .home2-header .btn-gradient {
  color: #fff !important;
  background: linear-gradient(135deg, #00235a, #004d9c) !important;
  border-color: transparent !important;
  box-shadow: 0 9px 24px rgba(0, 35, 90, .24) !important;
}

body.web-design-production-page.home3-page:not(.home3-nav-scrolled) .home2-header .burger-icon {
  background: rgba(7, 38, 105, .05) !important;
  border-color: rgba(7, 38, 105, .12) !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

body.web-design-production-page.home3-page:not(.home3-nav-scrolled) .home2-header .burger-icon>span {
  background: #071a52 !important;
}

body.web-design-production-page {
  --wtd-contact-navy: #00235a;
  --wtd-contact-blue: #004d9c;
  --wtd-production-rail: min(1600px, calc(100vw - 96px));
}

body.web-design-production-page .wtd-hero {
  display: block;
  min-height: max(760px, 100svh);
  color: var(--wtd-hero-navy);
  background-color: #f7faff;
  background-image: var(--wtd-hero-background-image);
  background-repeat: no-repeat;
  /* Kampanya 42px yukarida kendi navy zemininde kalir; gorsel navbar
     seviyesinden itibaren hero'nun arkasinda baslar. */
  background-position: right 0 top var(--home3-campaign-height, 42px);
  /* Orani koruyarak yatayda her zaman tum hero genisligini doldurur. */
  background-size: 100% auto;
}

body.web-design-production-page .wtd-hero::before {
  content: none;
}

body.web-design-production-page .wtd-hero__shell {
  min-height: max(760px, 100svh);
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  box-sizing: border-box;
  padding: calc(var(--home2-top-offset, 126px) + 28px) 0 24px;
}

body.web-design-production-page .wtd-hero__stage {
  grid-template-areas:
    "copy visual"
    "actions visual";
  grid-template-columns: minmax(580px, .58fr) minmax(470px, .42fr);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0 clamp(34px, 4vw, 72px);
  height: clamp(360px, 52svh, 560px);
  min-height: 360px;
}

body.web-design-production-page .wtd-hero__copy {
  align-self: end;
  width: min(100%, 720px);
}

body.web-design-production-page .wtd-hero__visual {
  grid-area: visual;
  min-height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

body.web-design-production-page .wtd-hero__visual::after {
  content: none;
}

body.web-design-production-page .wtd-hero__actions {
  align-self: start;
  margin-top: clamp(22px, 2.8vh, 30px);
}

body.web-design-production-page .wtd-button--primary {
  background: linear-gradient(135deg, var(--wtd-contact-navy), var(--wtd-contact-blue));
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(0, 35, 90, .24);
}

body.web-design-production-page .wtd-button--primary:hover,
body.web-design-production-page .wtd-button--primary:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #001b46, #003f80);
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(0, 35, 90, .3);
}

body.web-design-production-page .wtd-hero__reviews {
  position: absolute;
  z-index: 3;
  left: calc(44% + 28px);
  bottom: clamp(174px, 19vh, 214px);
  width: 450px;
  height: 245px;
  pointer-events: none;
}

body.web-design-production-page .wtd-hero__review {
  position: absolute;
  width: 268px;
  margin: 0;
  padding: 15px 16px 14px;
  border: 1px solid rgba(16, 53, 119, .11);
  border-radius: 16px;
  color: #233b66;
  background: rgba(255, 255, 255, .94);
  box-shadow:
    0 22px 52px rgba(14, 42, 88, .18),
    inset 0 1px 0 rgba(255, 255, 255, .84);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  backdrop-filter: blur(16px) saturate(135%);
}

body.web-design-production-page .wtd-hero__review--1 {
  left: 0;
  bottom: 0;
}

body.web-design-production-page .wtd-hero__review--2 {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  width: 246px;
}

body.web-design-production-page .wtd-hero__review:only-child {
  top: calc(50% - 24px);
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
}

body.web-design-production-page .wtd-hero__review-rating {
  display: flex;
  gap: 2px;
  color: #f5b51b;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .035em;
}

body.web-design-production-page .wtd-hero__review-rating .is-muted {
  color: #d7dce5;
}

body.web-design-production-page .wtd-hero__review blockquote {
  display: -webkit-box;
  overflow: hidden;
  margin: 10px 0 14px;
  color: #334a70;
  font-size: 12.5px;
  font-weight: 560;
  line-height: 1.5;
  text-wrap: pretty;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body.web-design-production-page .wtd-hero__review--2 blockquote {
  -webkit-line-clamp: 3;
}

body.web-design-production-page .wtd-hero__review figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.web-design-production-page .wtd-hero__review figcaption img,
body.web-design-production-page .wtd-hero__review-initials {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 14px rgba(14, 43, 94, .14);
}

body.web-design-production-page .wtd-hero__review-initials {
  color: #fff;
  background: linear-gradient(135deg, var(--wtd-contact-navy), var(--wtd-contact-blue));
  font-size: 11px;
  font-weight: 800;
}

body.web-design-production-page .wtd-hero__review-author {
  min-width: 0;
  display: grid;
  gap: 2px;
}

body.web-design-production-page .wtd-hero__review-author strong {
  overflow: hidden;
  color: #102b5d;
  font-size: 12px;
  font-weight: 780;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.web-design-production-page .wtd-hero__review-author small {
  overflow: hidden;
  color: #72809b;
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.web-design-production-page .wtd-hero__customer-proof>span,
body.web-design-production-page .wtd-hero__customer-proof>i {
  position: relative;
  z-index: 1;
}

body.web-design-production-page .wtd-hero__customer-proof {
  position: absolute;
  z-index: 4;
  display: flex;
  width: min(292px, 84%);
  height: 66px;
  min-height: 66px;
  min-width: 0;
  right: 48px;
  bottom: clamp(72px, 8vh, 96px);
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 27, 70, .94), rgba(0, 50, 112, .9));
  box-shadow: 0 18px 40px rgba(0, 26, 66, .24);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  backdrop-filter: blur(14px) saturate(125%);
  pointer-events: none;
}

body.web-design-production-page .wtd-hero__customer-avatars {
  display: flex;
  align-items: center;
  padding-left: 8px;
}

body.web-design-production-page .wtd-hero__customer-avatars img,
body.web-design-production-page .wtd-hero__customer-avatars>span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
}

body.web-design-production-page .wtd-hero__customer-avatars>span {
  color: #fff;
  background: #0875ff;
  font-size: 12px;
  font-weight: 800;
}

body.web-design-production-page .wtd-hero__customer-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
  margin-left: auto;
}

body.web-design-production-page .wtd-hero__customer-copy small {
  color: rgba(255, 255, 255, .72);
  font-size: 9px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

body.web-design-production-page .wtd-hero__customer-copy strong {
  color: #fff;
  font-size: 21px;
  font-weight: 780;
  line-height: 1;
  letter-spacing: -.035em;
}

body.web-design-production-page .wtd-hero__customer-proof>i {
  flex: 0 0 auto;
  color: #f4bd3d;
  font-size: 25px;
  line-height: 1;
}

body.web-design-production-page .wtd-hero__features {
  width: min(900px, 58%);
  gap: 6px;
  margin-top: 8px;
}

body.web-design-production-page .wtd-hero__features li {
  min-height: 56px;
  justify-content: center;
  padding: 8px 6px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

body.web-design-production-page .wtd-hero__features span {
  justify-items: center;
}

body.web-design-production-page .wtd-hero__brands {
  width: min(900px, 58%);
  margin-top: 10px;
  margin-left: clamp(24px, 2vw, 36px);
}

body.web-design-production-page .wtd-hero__brands>p {
  text-align: left;
}

body.web-design-production-page .wtd-hero__brands ul {
  gap: clamp(18px, 2.5vw, 44px);
  padding-inline: 0;
}

@media (max-width: 1199.98px) {
  body.web-design-production-page .wtd-hero__stage {
    grid-template-columns: minmax(500px, .55fr) minmax(390px, .45fr);
    column-gap: 28px;
  }

  body.web-design-production-page .wtd-hero__title {
    font-size: clamp(43px, 4.3vw, 56px) !important;
  }

  body.web-design-production-page .wtd-hero__review {
    width: 258px;
  }

  body.web-design-production-page .wtd-hero__reviews {
    left: calc(38% + 20px);
    width: 430px;
  }

  body.web-design-production-page .wtd-hero__review--1 {
    left: 0;
    bottom: 0;
  }

  body.web-design-production-page .wtd-hero__review--2 {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: 236px;
  }

  body.web-design-production-page .wtd-hero__features,
  body.web-design-production-page .wtd-hero__brands {
    width: 64%;
  }
}

@media (max-width: 991.98px) {
  body.web-design-production-page .wtd-hero {
    min-height: 0;
    background-position: 72% 340px;
    background-size: auto 720px;
  }

  body.web-design-production-page .wtd-hero__shell {
    min-height: 0;
    display: block;
    padding: calc(var(--home2-top-offset, 146px) + 20px) 0 34px;
  }

  body.web-design-production-page .wtd-hero__stage {
    grid-template-areas:
      "copy"
      "actions"
      "visual";
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto minmax(360px, auto);
    height: auto;
    row-gap: 16px;
  }

  body.web-design-production-page .wtd-hero__copy {
    align-self: auto;
    width: min(100%, 690px);
  }

  body.web-design-production-page .wtd-hero__visual,
  body.web-design-production-page .wtd-hero__reviews {
    min-height: 360px;
  }

  body.web-design-production-page .wtd-hero__reviews {
    position: relative;
    inset: auto;
    grid-area: visual;
    width: auto;
    height: auto;
  }

  body.web-design-production-page .wtd-hero__actions {
    margin-top: 2px;
  }

  body.web-design-production-page .wtd-hero__review--1 {
    left: 4%;
    bottom: 78px;
  }

  body.web-design-production-page .wtd-hero__review--2 {
    top: 46px;
    right: 4%;
    bottom: auto;
  }

  body.web-design-production-page .wtd-hero__customer-proof {
    position: relative;
    inset: auto;
    grid-area: visual;
    width: min(276px, 76%);
    align-self: end;
    justify-self: end;
    margin: 0 4% 0 0;
  }

  body.web-design-production-page .wtd-hero__features,
  body.web-design-production-page .wtd-hero__brands {
    width: 100%;
  }

  body.web-design-production-page .wtd-hero__brands {
    margin-left: 0;
  }

  body.web-design-production-page .wtd-hero__features {
    margin-top: 16px;
  }
}

@media (max-width: 767.98px) {
  body.web-design-production-page .wtd-hero {
    background-image: var(--wtd-hero-background-image);
    background-position: 66% calc(var(--home2-top-offset, 150px) + 320px);
    background-size: auto 410px;
  }

  body.web-design-production-page .wtd-hero__shell {
    padding: calc(var(--home2-top-offset, 150px) + 12px) 0 26px;
  }

  body.web-design-production-page .wtd-hero__stage {
    grid-template-rows: auto auto minmax(500px, auto);
    row-gap: 12px;
  }

  body.web-design-production-page .wtd-hero__visual,
  body.web-design-production-page .wtd-hero__reviews {
    min-height: 500px;
  }

  body.web-design-production-page .wtd-hero__reviews {
    display: grid;
    align-content: end;
    gap: 8px;
    padding: 160px 0 72px;
  }

  body.web-design-production-page .wtd-hero__review,
  body.web-design-production-page .wtd-hero__review--1,
  body.web-design-production-page .wtd-hero__review--2 {
    position: relative;
    inset: auto;
    width: min(92%, 350px);
    padding: 13px 14px 12px;
    border-radius: 13px;
  }

  body.web-design-production-page .wtd-hero__review--1 {
    justify-self: start;
  }

  body.web-design-production-page .wtd-hero__review--2 {
    justify-self: end;
  }

  body.web-design-production-page .wtd-hero__review:only-child {
    position: relative;
    inset: auto;
    justify-self: center;
    transform: none;
  }

  body.web-design-production-page .wtd-hero__customer-proof {
    width: min(92%, 350px);
    height: 60px;
    min-height: 60px;
    margin: 0;
  }

  body.web-design-production-page .wtd-hero__review blockquote,
  body.web-design-production-page .wtd-hero__review--2 blockquote {
    margin: 7px 0 10px;
    font-size: 10.5px;
    line-height: 1.42;
    -webkit-line-clamp: 2;
  }

  body.web-design-production-page .wtd-hero__review figcaption img,
  body.web-design-production-page .wtd-hero__review-initials {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  body.web-design-production-page .wtd-hero__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }

  body.web-design-production-page .wtd-hero__features li {
    flex-direction: column;
    gap: 4px;
    min-height: 64px;
  }

  body.web-design-production-page .wtd-hero__features small {
    display: block;
    font-size: 9px;
  }

  body.web-design-production-page .wtd-hero__brands {
    display: block;
    margin-top: 18px;
  }

  body.web-design-production-page .wtd-hero__brands>p {
    text-align: center;
  }

  body.web-design-production-page .wtd-hero__brands ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 18px;
  }

  body.web-design-production-page .wtd-hero__brands img {
    max-width: 92px;
    height: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.web-design-production-page .wtd-hero__review {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (forced-colors: active) {
  body.web-design-production-page .wtd-hero__review {
    border: 1px solid CanvasText;
    color: CanvasText;
    background: Canvas;
    box-shadow: none;
  }
}

/* Hero disindaki tum normal section iceriklerini "Gercek is, gercek kanit"
   bolumunun kullandigi --wtd-shell rayinda hizala. */
body.web-design-production-page .wtd-why > .container,
body.web-design-production-page .wtd-references > .container,
body.web-design-production-page .lp-referans-split > .container {
  width: var(--wtd-production-rail);
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

/* Bu iki bolum Bootstrap row kullanmadigi icin container'in varsayilan
   12px padding'ini kaldir; gorunen kart kenarlari da wtd-shell ile eslessin. */
body.web-design-production-page .wtd-why > .container,
body.web-design-production-page .wtd-references > .container {
  padding-right: 0;
  padding-left: 0;
}

/* Anasayfa stilindeki 1400/1280px container sinirlarini production sayfasinda
   gecersiz kil; Neden Webioo da diger web tasarim bolumleriyle ayni raya ulassin. */
body.web-design-production-page .wtd-why.home2-why > .container {
  width: var(--wtd-production-rail) !important;
  max-width: none !important;
  margin-inline: auto;
  padding-inline: 0;
}

body.web-design-production-page .wtd-why .home2-why-layout {
  width: 100%;
  max-width: none;
}

body.web-design-production-page .wtd-site-anatomy .wtd-site-anatomy__stage,
body.web-design-production-page .wtd-site-anatomy.is-enhanced .wtd-site-anatomy__stage {
  width: var(--wtd-production-rail);
  max-width: none;
}

/* Paketler ve SSS, kanit bolumuyle ayni gorunen yatay raya oturur. */
body.web-design-production-page .landing-pricing-v2 .wtd-shell,
body.web-design-production-page .wtd-guide > .wtd-shell {
  width: var(--wtd-production-rail);
  max-width: none;
}

body.web-design-production-page .landing-pricing-v2 .wtd-packages__head,
body.web-design-production-page .landing-pricing-v2 .wtd-packages__tiers,
body.web-design-production-page .wtd-guide__main {
  width: 100%;
  max-width: none;
}

body.web-design-production-page .landing-pricing-v2 .wtd-packages__tiers[data-package-count="1"] {
  max-width: 520px;
}

body.web-design-production-page .landing-pricing-v2 .wtd-packages__tiers[data-package-count="2"] {
  max-width: 840px;
}

/* Form basligi masaustunde tek satir; mobilde dogal olarak kirilabilir. */
@media (min-width: 768px) {
  body.web-design-production-page .wtd-final__form-card h3 {
    max-width: none;
    white-space: nowrap;
  }
}

/* Tam genislikteki form CTA'sinda etiketi ve ikon kutusunu ayri kolonlara sabitle. */
body.web-design-production-page .wtd-final__form .wtd-final__button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px;
  align-items: center;
  gap: 12px;
  padding: 6px 7px 6px 27px;
}

body.web-design-production-page .wtd-final__form .wtd-final__button-label {
  justify-self: center;
  text-align: center;
}

body.web-design-production-page .wtd-final__form .wtd-final__button-icon {
  justify-self: end;
  margin: 0;
}

@media (max-width: 1499.98px) {
  body.web-design-production-page {
    --wtd-production-rail: min(1360px, calc(100vw - 64px));
  }
}

@media (max-width: 1199.98px) {
  body.web-design-production-page {
    --wtd-production-rail: min(1120px, calc(100vw - 48px));
  }
}

@media (max-width: 991.98px) {
  body.web-design-production-page {
    --wtd-production-rail: min(760px, calc(100vw - 40px));
  }
}

@media (max-width: 767.98px) {
  body.web-design-production-page {
    --wtd-production-rail: calc(100vw - 36px);
  }
}

@media (max-width: 575.98px) {
  body.web-design-production-page {
    --wtd-production-rail: calc(100vw - 32px);
  }
}

@media (max-width: 419.98px) {
  body.web-design-production-page .wtd-final__form .wtd-final__button {
    grid-template-columns: minmax(0, 1fr) 54px;
  }
}

@media (max-width: 379.98px) {
  body.web-design-production-page {
    --wtd-production-rail: calc(100vw - 28px);
  }
}
