:root {
  --accent: #f4c500;
  --orange: #ff5b4a;
  --ink: #1f242e;
  --dark: #171a21;
  --muted: #6b6e71;
  --soft: #f9f9f9;
  --white: #ffffff;
  --line: #e8e8e8;
  --shadow: 0 30px 40px rgba(0, 0, 0, .05);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: "Lora", Georgia, serif;
  font-size: 16px;
  overflow-x: hidden;
}

.page-wrap,
main,
section,
.container {
  max-width: 100%;
}

body.panel-open,
body.menu-open,
body.video-open,
body.info-open {
  overflow: hidden;
}

a,
button {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
}

.container {
  width: min(1310px, calc(100% - 48px));
  margin-inline: auto;
}

.container.narrow {
  width: min(990px, calc(100% - 48px));
}

.center {
  text-align: center;
}

.section {
  position: relative;
  padding: 118px 0;
}

.white {
  background: var(--white);
}

.pale {
  background: var(--soft);
}

.scheme-dark {
  color: var(--white);
  background: var(--dark);
}

.subtitle {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: lowercase;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo,
.button,
.quote-open,
.main-menu,
.underline-button {
  font-family: "Josefin Sans", Arial, sans-serif;
}

h1,
h2 {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: 1.05;
}

h2 {
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.08;
}

h3 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.2;
}

h4 {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
}

h6 {
  margin: 0;
  font-size: 17px;
}

p {
  color: var(--muted);
  line-height: 1.85;
}

.scheme-dark p {
  color: rgba(255, 255, 255, .68);
}

.top-panel {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, .98);
  transition: box-shadow .25s ease, padding .25s ease;
}

.top-panel.is-scrolled {
  box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 34px;
  width: min(1440px, calc(100% - 80px));
  margin-inline: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}

.logo.light {
  color: var(--white);
}

.logo-symbol {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--dark);
  background: var(--accent);
  font-size: 32px;
  line-height: 1;
}

.logo-symbol::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 2px solid rgba(23, 26, 33, .35);
}

.logo-symbol span {
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.logo-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.logo-copy strong {
  font-size: 27px;
  letter-spacing: 0;
}

.logo-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.logo.light .logo-copy small {
  color: rgba(255, 255, 255, .68);
}

.main-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-menu > ul > li {
  position: relative;
}

.main-menu a {
  display: grid;
  gap: 2px;
  padding: 26px 0;
  color: #222733;
  font-size: 15px;
  font-weight: 600;
}

.main-menu a span {
  font-size: 16px;
}

.main-menu a small {
  color: #9a9da3;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.main-menu a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 5px;
  background: var(--accent);
  transition: width .25s ease;
}

.main-menu li:hover > a::after {
  width: 100%;
}

.submenu {
  position: absolute;
  top: 72px;
  left: -24px;
  width: 230px;
  display: grid;
  gap: 0 !important;
  padding: 14px 0 !important;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .22s ease;
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  padding: 12px 22px;
  color: var(--muted);
}

.mega-menu {
  left: 50%;
  width: min(760px, calc(100vw - 80px));
  grid-template-columns: repeat(3, 1fr);
  gap: 22px !important;
  padding: 26px !important;
  transform: translate(-50%, 8px);
}

.has-submenu:hover .mega-menu {
  transform: translate(-50%, 0);
}

.mega-menu strong {
  display: block;
  margin-bottom: 11px;
  color: var(--ink);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 15px;
}

.mega-menu a {
  min-height: 0;
  margin: 0 0 6px;
  padding: 10px 12px;
  border-left: 2px solid var(--line);
  background: #fbfbfb;
}

.mega-menu a:hover {
  border-color: var(--accent);
  background: #fff9d8;
}

.mega-menu a::after {
  display: none;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 18px;
}

.langs {
  display: flex;
  gap: 8px;
}

.langs a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  overflow: hidden;
}

.langs img {
  width: 22px;
  height: 16px;
  object-fit: cover;
}

.langs .active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(244, 197, 0, .22);
}

.quote-open,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border: 0;
  border-radius: 0;
  font-weight: 700;
  text-align: center;
}

.quote-open,
.button.accent {
  color: var(--dark);
  background: var(--accent);
  box-shadow: 0 10px 28px rgba(244, 197, 0, .28);
}

.button.dark {
  color: var(--white);
  background: var(--dark);
}

.button.light,
.button.ghost-dark {
  border: 2px solid currentColor;
  background: transparent;
}

.button.full {
  width: 100%;
}

.mobile-open {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.mobile-open span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
}

.hero-slider {
  position: relative;
  min-height: 690px;
  padding-top: 86px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #f9f9f9 0 55%, #f0f2f5 55% 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(650px, calc(100% - 48px));
  padding-top: 104px;
  margin-left: max(24px, calc((100vw - 1310px) / 2));
}

.hero-content h1 {
  max-width: 660px;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(38px, 4.4vw, 66px);
  font-weight: 600;
  letter-spacing: 0;
}

.hero-content p {
  max-width: 565px;
  margin: 28px 0 24px;
  font-size: 17px;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 14px;
  color: var(--dark);
  background: var(--accent);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: "Josefin Sans", Arial, sans-serif;
}

.hero-proof span {
  position: relative;
  padding: 0 18px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
}

.hero-proof span:first-child {
  padding-left: 0;
}

.hero-proof span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 18px;
  background: var(--line);
  transform: translateY(-50%);
}

.hero-proof strong {
  color: var(--orange);
  font-weight: 700;
}

.underline-button {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.underline-button::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: var(--ink);
  transform-origin: left;
  transition: transform .3s ease;
}

.underline-button:hover::after {
  transform: scaleX(0);
}

.slider-art {
  position: absolute;
  top: 118px;
  right: max(28px, calc((100vw - 1360px) / 2));
  width: min(650px, 44vw);
  height: 520px;
}

.art-main {
  position: absolute;
  top: 0;
  right: 70px;
  width: 330px;
  height: 405px;
  overflow: hidden;
  border-radius: 180px 180px 36px 36px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .14);
}

.art-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shape {
  position: absolute;
  display: block;
}

.circle {
  border-radius: 50%;
}

.circle.yellow {
  right: 0;
  bottom: 66px;
  width: 155px;
  height: 155px;
  background: var(--accent);
}

.circle.ink {
  left: 110px;
  top: 42px;
  width: 92px;
  height: 92px;
  background: var(--ink);
}

.square.red {
  left: 450px;
  top: 20px;
  width: 118px;
  height: 118px;
  background: var(--orange);
  transform: rotate(12deg);
}

.triangle {
  right: 250px;
  top: 92px;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 44px solid var(--orange);
}

.ring {
  left: 70px;
  top: 130px;
  width: 160px;
  height: 160px;
  border: 18px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.has-wave-top::before,
.has-wave-both::before,
.has-wave-both::after,
.footer.has-wave-top::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 52px;
  background-repeat: repeat-x;
  background-size: 540px 52px;
  pointer-events: none;
}

.has-wave-top::before,
.has-wave-both::before,
.footer.has-wave-top::before {
  top: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 283.5 27.8' preserveAspectRatio='none'%3E%3Cpath fill='%23f9f9f9' d='M283.5,9.7c0,0-7.3,4.3-14,4.6c-6.8,0.3-12.6,0-20.9-1.5c-11.3-2-33.1-10.1-44.7-5.7s-12.1,4.6-18,7.4c-6.6,3.2-20,9.6-36.6,9.3C131.6,23.5,99.5,7.2,86.3,8c-1.4,0.1-6.6,0.8-10.5,2c-3.8,1.2-9.4,3.8-17,4.7c-3.2,0.4-8.3,1.1-14.2,0.9c-1.5-0.1-6.3-0.4-12-1.6c-5.7-1.2-11-3.1-15.8-3.7C6.5,9.2,0,10.8,0,10.8V0h283.5V9.7z'/%3E%3C/svg%3E");
}

.white.has-wave-top::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 283.5 27.8' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M283.5,9.7c0,0-7.3,4.3-14,4.6c-6.8,0.3-12.6,0-20.9-1.5c-11.3-2-33.1-10.1-44.7-5.7s-12.1,4.6-18,7.4c-6.6,3.2-20,9.6-36.6,9.3C131.6,23.5,99.5,7.2,86.3,8c-1.4,0.1-6.6,0.8-10.5,2c-3.8,1.2-9.4,3.8-17,4.7c-3.2,0.4-8.3,1.1-14.2,0.9c-1.5-0.1-6.3-0.4-12-1.6c-5.7-1.2-11-3.1-15.8-3.7C6.5,9.2,0,10.8,0,10.8V0h283.5V9.7z'/%3E%3C/svg%3E");
}

.has-wave-both::after {
  bottom: -1px;
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 283.5 27.8' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M283.5,9.7c0,0-7.3,4.3-14,4.6c-6.8,0.3-12.6,0-20.9-1.5c-11.3-2-33.1-10.1-44.7-5.7s-12.1,4.6-18,7.4c-6.6,3.2-20,9.6-36.6,9.3C131.6,23.5,99.5,7.2,86.3,8c-1.4,0.1-6.6,0.8-10.5,2c-3.8,1.2-9.4,3.8-17,4.7c-3.2,0.4-8.3,1.1-14.2,0.9c-1.5-0.1-6.3-0.4-12-1.6c-5.7-1.2-11-3.1-15.8-3.7C6.5,9.2,0,10.8,0,10.8V0h283.5V9.7z'/%3E%3C/svg%3E");
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 66px;
}

.intro-section h2 {
  max-width: 920px;
  margin-inline: auto;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.18;
}

.icon-card {
  min-height: 315px;
  padding: 46px 36px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.motley-two {
  color: var(--white);
  background: var(--ink);
}

.motley-two p {
  color: rgba(255, 255, 255, .72);
}

.line-icon {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto 28px;
  border: 2px solid currentColor;
}

.pen-icon {
  border-radius: 50% 50% 8px 8px;
}

.browser-icon::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 18px;
  border-top: 2px solid currentColor;
}

.layer-icon {
  transform: rotate(45deg);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vision-grid p {
  font-size: 17px;
}

.tags a {
  color: var(--ink);
  font-weight: 700;
}

.vision-media {
  position: relative;
  min-height: 520px;
}

.video-card {
  position: absolute;
  inset: 42px 210px 34px 0;
  display: grid;
  place-items: center;
  min-height: 450px;
  border-radius: 50px;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.circle-photo {
  position: absolute;
  right: 0;
  top: 95px;
  width: 300px;
  height: 300px;
  border: 12px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.play-button {
  position: relative;
  width: 86px;
  height: 86px;
  border: 8px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  background: var(--white);
}

.play-button::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 27px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid var(--ink);
}

.services-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.service-feature-grid {
  background:
    radial-gradient(circle at 20% 30%, rgba(244, 197, 0, .12), transparent 28%),
    linear-gradient(135deg, #171a21, #242936);
}

.services-strip article {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 32px 24px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, .1);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  cursor: pointer;
}

.services-strip article::after {
  content: "WEB";
  position: absolute;
  top: 100px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: rgba(255, 255, 255, .84);
  background: rgba(255, 255, 255, .05);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, .03);
}

.services-strip article:nth-child(2)::after {
  content: "SHOP";
}

.services-strip article:nth-child(3)::after {
  content: "MOB";
}

.services-strip article:nth-child(4)::after {
  content: "SEO";
}

.services-strip article:nth-child(5)::after {
  content: "SPD";
}

.services-strip article:nth-child(6)::after {
  content: "SUP";
}

.services-strip article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 26, 33, .12), rgba(23, 26, 33, .9)),
    var(--service-image, none);
  background-position: center;
  background-size: cover;
  opacity: .32;
  transition: opacity .25s ease;
}

.services-strip article:hover::before {
  opacity: .58;
}

.services-strip article:nth-child(1) {
  --service-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=900&q=70");
}

.services-strip article:nth-child(2) {
  --service-image: url("https://images.unsplash.com/photo-1556742502-ec7c0e9f34b1?auto=format&fit=crop&w=900&q=70");
}

.services-strip article:nth-child(3) {
  --service-image: url("https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?auto=format&fit=crop&w=900&q=70");
}

.services-strip article:nth-child(4) {
  --service-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=900&q=70");
}

.services-strip article:nth-child(5) {
  --service-image: url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=900&q=70");
}

.services-strip article:nth-child(6) {
  --service-image: url("https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=900&q=70");
}

.services-strip article > * {
  position: relative;
  z-index: 1;
}

.services-strip span {
  position: absolute;
  top: 32px;
  left: 24px;
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 35px;
  font-weight: 700;
}

.services-strip h3 {
  font-size: 25px;
}

.services-strip p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 15px;
  line-height: 1.65;
}

.services-strip button {
  justify-self: start;
  margin-top: 12px;
  border: 0;
  padding: 0 0 7px;
  color: var(--accent);
  background: transparent;
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 600;
}

.services-strip button::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 4px;
  background: currentColor;
}

.down-arrow {
  width: 24px;
  height: 44px;
  margin: 22px auto;
  border-left: 2px solid var(--accent);
  transform: rotate(20deg);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 58px;
  min-width: 0;
}

.project-more-wrap {
  margin-top: 28px;
}

.project-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 44px;
  padding: 30px 34px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.project-cta span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

.project-cta strong {
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.25;
}

.portfolio-card {
  position: relative;
  padding: 12px;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .06);
  text-align: left;
  animation: projectIn .28s ease both;
}

.portfolio-image {
  position: relative;
  min-height: 315px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 6px;
  background: linear-gradient(135deg, #e8ebf0, #ffffff);
  max-width: 100%;
}

.portfolio-image img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.04);
}

.portfolio-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 26, 33, .75);
  opacity: 0;
  transition: opacity .25s ease;
}

.portfolio-image div {
  position: absolute;
  inset: 40px;
  display: grid;
  place-content: center;
  color: var(--white);
  opacity: 0;
  transform: translateY(16px);
  transition: .25s ease;
}

.portfolio-card:hover .portfolio-image::before,
.portfolio-card:hover .portfolio-image div {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-card > span {
  display: block;
  margin: 24px 16px 0;
  color: var(--accent);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

.portfolio-card > h4 {
  margin: 11px 16px;
}

.portfolio-card > p {
  min-height: 72px;
  margin: 0 16px 16px;
  font-size: 15px;
  line-height: 1.55;
}

.portfolio-card > a {
  display: inline-block;
  margin: 0 16px 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.portfolio-card > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 5px;
  background: var(--accent);
}

@keyframes projectIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.counter-section {
  position: relative;
  padding: 104px 0;
}

.metrics-section {
  overflow: hidden;
  background: #f3f5f8;
}

.metrics-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--line);
  pointer-events: none;
}

.metrics-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 44px;
}

.metrics-head h2 {
  max-width: 760px;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(30px, 3.8vw, 54px);
}

.counters {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(31, 36, 46, .08);
  text-align: left;
}

.counters div {
  position: relative;
  z-index: 1;
  padding: 40px 34px;
  border-right: 1px solid var(--line);
  background: var(--white);
}

.counters div:last-child {
  border-right: 0;
}

.counters i {
  display: block;
  width: 54px;
  height: 3px;
  margin: 0 0 22px;
  background: var(--accent);
}

.counters div:nth-child(2) i {
  background: var(--orange);
}

.counters strong {
  display: block;
  color: var(--dark);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1;
}

.counters p {
  max-width: 320px;
  margin: 22px 0 0;
  color: var(--muted);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 17px;
}

.creative-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 58px;
  align-items: center;
}

.creative-visual {
  position: relative;
}

.creative-visual > img {
  width: 100%;
  border: 10px solid var(--white);
  box-shadow: var(--shadow);
}

.creative-badge {
  position: absolute;
  right: -22px;
  bottom: 34px;
  display: grid;
  gap: 3px;
  min-width: 160px;
  padding: 22px;
  color: var(--dark);
  background: var(--accent);
  font-family: "Josefin Sans", Arial, sans-serif;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .22);
}

.creative-badge strong {
  font-size: 42px;
  line-height: 1;
}

.creative-copy > p {
  max-width: 730px;
  margin: 28px 0 0;
}

.creative-copy h2 {
  max-width: 760px;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.15;
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.approach-list div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
}

.approach-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

.approach-list strong {
  display: block;
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 18px;
}

.approach-list p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.video-cover {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  margin-top: 45px;
  background-position: center;
  background-size: cover;
}

.quote-teaser {
  padding: 100px 0 118px;
}

.quote-corporate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(135deg, rgba(244, 197, 0, .12), rgba(255, 255, 255, .04));
}

.quote-corporate p {
  max-width: 760px;
  margin-bottom: 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 48px;
}

.contact-cards article {
  position: relative;
  min-height: 285px;
  padding: 38px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
    #202631;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .2);
}

.corporate-contact article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid var(--accent);
  opacity: .8;
  pointer-events: none;
}

.contact-cards article > span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  color: var(--dark);
  background: var(--accent);
  border-radius: 50%;
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

.contact-cards .thumb {
  display: none;
  width: 110px;
  height: 110px;
  margin-bottom: 26px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
}

.contact-cards article > a,
.contact-cards article > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 18px;
  border: 0;
  border-radius: 0;
  color: var(--dark);
  background: var(--accent);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

.contact-cards article > a::before,
.contact-cards article > button::before {
  content: "→";
  font-family: Arial, sans-serif;
  font-size: 24px;
}

.reviews-section {
  overflow: hidden;
}

.corporate-contact article > a::before,
.corporate-contact article > button::before {
  content: none;
}

.review-shell {
  position: relative;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
  margin-top: 56px;
}

.review-carousel {
  position: relative;
  min-width: 0;
}

.review-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(285px, 42%);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-slider::-webkit-scrollbar {
  display: none;
}

.rating-box,
.review-slider article {
  min-height: 230px;
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.rating-box {
  display: grid;
  align-content: center;
  border-top: 4px solid var(--accent);
}

.rating-box strong {
  display: block;
  margin: 8px 0;
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 28px;
}

.stars {
  color: var(--accent);
  letter-spacing: 0;
}

.review-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-size: 34px;
  line-height: 1;
  box-shadow: var(--shadow);
  transform: translateY(-50%);
}

.review-arrow.prev {
  left: -18px;
}

.review-arrow.next {
  right: -18px;
}

.footer {
  position: relative;
  padding-top: 96px;
  overflow: hidden;
  background: #11141a;
}

.footer::before {
  display: none;
}

.footer-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: center;
  padding-bottom: 58px;
}

.footer-hero h2 {
  max-width: 760px;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(32px, 4vw, 58px);
}

.footer-hero p {
  max-width: 700px;
}

.footer-cta-box {
  padding: 30px;
  color: var(--dark);
  background: var(--accent);
  box-shadow: none;
}

.footer-cta-box strong {
  display: block;
  margin-bottom: 12px;
  color: var(--dark);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 24px;
}

.footer-cta-box p {
  margin: 0 0 22px;
}

.footer-cta-box span {
  display: block;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-cta-box .button {
  color: var(--white);
  background: var(--dark);
  box-shadow: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr .9fr .9fr 1fr;
  gap: 34px;
  padding: 54px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer address {
  font-style: normal;
}

.footer-grid > * {
  min-height: 0;
  padding: 0 28px 0 0;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .1);
  background: transparent;
}

.footer-grid > *:last-child {
  border-right: 0;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .7);
}

.footer-grid h6 {
  margin-bottom: 16px;
  color: var(--accent);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.footer-socials a {
  margin: 0;
  padding: 9px 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .22);
  background: transparent;
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 28px 0 44px;
  border-top: 1px solid #323641;
}

.footer-bottom p:last-child {
  text-align: right;
}

.panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(23, 26, 33, .62);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
}

.quote-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(620px, 100%);
  height: 100vh;
  overflow-y: auto;
  padding: 48px 36px;
  background: var(--soft);
  box-shadow: -30px 0 60px rgba(0, 0, 0, .18);
  transform: translateX(105%);
  transition: transform .32s ease;
}

.panel-open .panel-overlay,
.video-open .panel-overlay,
.info-open .panel-overlay {
  opacity: 1;
  visibility: visible;
}

.panel-open .quote-panel {
  transform: translateX(0);
}

.panel-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
}

.panel-close::before,
.panel-close::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 18px;
  width: 24px;
  height: 2px;
  background: var(--ink);
}

.scheme-dark .panel-close::before,
.scheme-dark .panel-close::after,
.video-popup .panel-close::before,
.video-popup .panel-close::after {
  background: var(--white);
}

.panel-close::before {
  transform: rotate(45deg);
}

.panel-close::after {
  transform: rotate(-45deg);
}

.offer-head {
  display: grid;
  gap: 18px;
  margin-bottom: 20px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(244, 197, 0, .14), transparent 42%),
    var(--dark);
}

.offer-head span {
  color: var(--accent);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
  text-transform: lowercase;
}

.offer-head h4 {
  margin: 10px 0 8px;
  font-size: 28px;
}

.offer-head p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
}

.offer-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.offer-benefits small {
  padding: 7px 10px;
  color: var(--dark);
  background: var(--accent);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

.step-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.step-progress span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 44px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: var(--white);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

.step-progress span.active {
  color: var(--dark);
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(244, 197, 0, .22);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.form-helper {
  margin: -4px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.offer-form h4,
.offer-form h6 {
  margin: 22px 0 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.offer-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

.offer-form input,
.offer-form textarea,
.offer-form select {
  width: 100%;
  min-height: 52px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  padding: 0 14px;
  background: #fbfbfb;
  font: inherit;
}

.offer-form input:focus,
.offer-form textarea:focus,
.offer-form select:focus {
  outline: 2px solid rgba(244, 197, 0, .55);
  border-color: var(--accent);
  background: var(--white);
}

.offer-form textarea {
  padding-top: 14px;
  resize: vertical;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.choice-grid label {
  position: relative;
  display: block;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid span {
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fbfbfb;
  text-align: center;
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

.choice-grid input:checked + span {
  border-color: var(--accent);
  background: #fff4b5;
  box-shadow: inset 0 -3px 0 var(--accent);
}

.whatsapp-preview {
  min-height: 150px;
  margin-top: 16px;
  padding: 18px;
  color: var(--ink);
  background: #f7faf8;
  border: 1px solid var(--line);
  border-left: 4px solid #1fae5b;
  white-space: pre-line;
  line-height: 1.55;
}

.step-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.step-actions .whatsapp-submit {
  display: none;
  grid-column: 1 / -1;
  color: var(--white);
  background: #1fae5b;
}

.offer-form.is-final .step-actions {
  grid-template-columns: 1fr;
}

.offer-form.is-final [data-step-next] {
  display: none;
}

.offer-form.is-final .whatsapp-submit {
  display: inline-flex;
}

.offer-form.is-first [data-step-prev] {
  visibility: hidden;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  color: var(--white);
  background: var(--dark);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
}

.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  width: min(680px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0;
}

.mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-close {
  border: 0;
  color: var(--white);
  background: transparent;
}

.mobile-menu nav {
  display: grid;
  gap: 18px;
  margin-top: 70px;
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 44px;
  font-weight: 600;
}

.mobile-extra {
  margin-top: 60px;
  color: rgba(255, 255, 255, .74);
}

.mobile-extra button {
  margin-top: 10px;
  border: 0;
  padding: 0;
  color: var(--accent);
  background: transparent;
}

.video-popup {
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 110;
  width: min(980px, calc(100% - 42px));
  padding: 54px 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -45%);
  transition: .25s ease;
}

.video-open .video-popup {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.video-frame {
  background: #000;
}

.info-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 101;
  width: min(640px, calc(100% - 34px));
  max-height: min(760px, calc(100vh - 34px));
  overflow-y: auto;
  padding: 42px;
  background: var(--white);
  box-shadow: 0 36px 90px rgba(0, 0, 0, .28);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -46%) scale(.96);
  transition: .26s ease;
}

.info-open .info-popup {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.info-popup-inner > span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.info-popup-inner h3 {
  margin-right: 36px;
}

.info-popup-inner p {
  margin-bottom: 18px;
}

.info-popup-inner ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.info-popup-inner li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.65;
}

.info-popup-inner li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 3px;
  background: var(--accent);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.sticky-socials {
  position: fixed;
  right: 18px;
  top: 45%;
  z-index: 40;
  display: grid;
  gap: 10px;
}

.sticky-socials a {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--dark);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(31, 36, 46, .12);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .16);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.sticky-socials a:hover {
  transform: translateX(-4px);
  color: var(--dark);
  background: var(--accent);
}

.sticky-socials svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.sticky-socials a::after {
  content: attr(aria-label);
  position: absolute;
  right: 58px;
  padding: 8px 10px;
  color: var(--white);
  background: var(--dark);
  border-radius: 4px;
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: .2s ease;
}

.sticky-socials a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.scroll-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 38;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  color: var(--dark);
  background: var(--accent);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.scroll-top::before {
  content: "↑";
  font-size: 24px;
}

@media (max-width: 1279px) {
  .header-inner {
    grid-template-columns: auto 1fr;
    width: min(100% - 40px, 1024px);
    min-height: 78px;
  }

  .main-menu,
  .langs,
.quote-open {
    display: none;
  }

  .header-tools {
    justify-self: end;
  }

  .mobile-open {
    display: block;
  }

  .hero-slider {
    min-height: 700px;
  }

  .hero-content {
    padding-top: 150px;
  }

  .slider-art {
    opacity: .38;
    right: -170px;
    width: 760px;
  }

  .services-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .review-slider {
    grid-template-columns: none;
    grid-auto-columns: minmax(270px, 44%);
  }
}

.admin-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(21, 24, 31, .14);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.admin-open:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 1100px) {
  .owned-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .section {
    padding: 82px 0;
  }

  .icon-grid,
  .vision-grid,
  .portfolio-grid,
  .metrics-head,
  .project-cta,
  .counters,
  .creative-grid,
  .approach-list,
  .contact-cards,
  .quote-corporate,
  .footer-hero,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .vision-media {
    min-height: 420px;
  }

  .video-card {
    inset: 0 120px 0 0;
  }

  .circle-photo {
    width: 220px;
    height: 220px;
  }

  .services-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .counters div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .counters div:last-child {
    border-bottom: 0;
  }

  .review-shell {
    grid-template-columns: 1fr;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }

  .footer-grid > * {
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .footer-grid > *:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  .metrics-head {
    grid-template-columns: 1fr;
  }

  .metrics-visual {
    width: min(100%, 390px);
    margin-inline: auto;
  }

  .quote-panel {
    padding-bottom: 92px;
  }

  .pricing-grid,
  .google-business-grid,
  .google-feature-list {
    grid-template-columns: 1fr;
  }

  .pricing-grid article.featured {
    transform: none;
  }
}

@media (max-width: 620px) {
  .container,
  .container.narrow {
    width: calc(100% - 32px);
  }

  .logo-text {
    font-size: 24px;
  }

  .logo-symbol {
    width: 46px;
    height: 46px;
    font-size: 25px;
  }

  .logo-copy strong {
    font-size: 22px;
  }

  .logo-copy small {
    font-size: 10px;
  }

  .hero-slider {
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding-top: 128px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .slider-art {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    width: calc(100% - 32px);
    height: 285px;
    margin: 26px 16px 0;
    opacity: 1;
  }

  .art-main,
  .shape {
    display: none;
  }

  .hero-proof {
    gap: 10px 0;
  }

  .hero-proof span {
    width: 100%;
    padding: 0;
  }

  .hero-proof span::after {
    display: none;
  }

  .services-strip,
  .form-row {
    grid-template-columns: 1fr;
  }

  .review-shell {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-slider {
    grid-template-columns: none;
    grid-auto-columns: minmax(250px, 86vw);
  }

  .review-arrow {
    width: 42px;
    height: 42px;
    font-size: 26px;
  }

  .review-arrow.prev {
    left: 6px;
  }

  .review-arrow.next {
    right: 6px;
  }

  .services-strip article {
    min-height: 330px;
  }

  .info-popup {
    padding: 34px 22px;
  }

  .mobile-menu nav {
    font-size: 34px;
  }

  .vision-media {
    min-height: auto;
  }

  .video-card {
    position: relative;
    inset: auto;
    min-height: 320px;
  }

  .circle-photo {
    position: relative;
    top: auto;
    right: auto;
    margin: -80px 0 0 auto;
  }

  .sticky-socials {
    display: none;
  }
}

/* Targeted enhancements: original palette and layout preserved. */
.language-dropdown {
  position: relative;
  font-family: "Josefin Sans", Arial, sans-serif;
}

.language-current {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 118px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #dfe2e7;
  color: var(--dark);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(31, 36, 46, .08);
  font-weight: 700;
}

.language-current span,
.enhanced-langs span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 25px;
  color: var(--dark);
  background: var(--accent);
  line-height: 1;
}

.language-current small {
  color: var(--ink);
  font-size: 12px;
}

.language-current::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.enhanced-langs {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  display: grid;
  width: 190px;
  padding: 8px;
  border: 1px solid #dfe2e7;
  background: var(--white);
  box-shadow: 0 24px 58px rgba(31, 36, 46, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}

.language-dropdown:hover .enhanced-langs,
.language-dropdown.is-open .enhanced-langs {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.enhanced-langs a {
  width: 100%;
  min-width: 0;
  height: 46px;
  display: flex;
  justify-content: flex-start;
  gap: 7px;
  padding: 0 10px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}

.enhanced-langs img {
  display: block;
  width: 25px;
  height: 18px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(23, 26, 33, .14);
}

.enhanced-langs small {
  display: inline;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.enhanced-langs .active {
  color: var(--dark);
  background: #fff4b5;
}

.enhanced-langs .active span {
  color: var(--dark);
  background: var(--accent);
}

.portfolio-image::before {
  background: linear-gradient(180deg, rgba(23, 26, 33, .18), rgba(23, 26, 33, .92));
}

.portfolio-image div {
  inset: 24px;
  align-content: end;
  place-content: end start;
  font-family: "Josefin Sans", Arial, sans-serif;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}

.portfolio-image div h4 {
  color: var(--white);
  font-size: 28px;
}

.portfolio-image div p {
  max-width: 92%;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .86);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

.portfolio-card > a {
  color: var(--dark);
  font-size: 15px;
}

.logo-symbol {
  isolation: isolate;
  width: 66px;
  height: 58px;
  color: var(--dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .5), transparent 42%),
    var(--accent);
  box-shadow: 10px 10px 0 rgba(244, 197, 0, .2), inset 0 0 0 1px rgba(23, 26, 33, .08);
}

.logo-symbol::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .38), transparent 48%);
  z-index: 0;
}

.logo-symbol::after {
  inset: 8px;
  border: 1px solid rgba(23, 26, 33, .38);
}

.logo-symbol span {
  transform: translateY(-4px);
  font-size: 27px;
  letter-spacing: 0;
}

.logo-symbol.sinan-mark {
  width: 74px;
  min-width: 74px;
}

.logo-symbol.sinan-mark span {
  transform: none;
  font-size: 19px;
  text-transform: none;
}

.logo-symbol.sinan-mark em {
  display: none;
}

.logo-symbol em {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  z-index: 1;
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .16em;
  text-align: center;
}

.logo-copy strong {
  font-size: 29px;
}

.logo-copy small {
  color: var(--dark);
  letter-spacing: .18em;
}

.logo.light .logo-copy small {
  color: var(--accent);
}

.logo.light .logo-symbol {
  box-shadow: 10px 10px 0 rgba(255, 255, 255, .08);
}

.metrics-head {
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  align-items: center;
}

.metrics-copy h2 {
  max-width: 800px;
}

.metrics-visual {
  position: relative;
  width: min(100%, 360px);
  min-height: 260px;
}

.metrics-visual::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 26px;
  width: 220px;
  height: 220px;
  border: 18px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.metrics-visual::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 122px;
  height: 122px;
  background: var(--orange);
  transform: rotate(10deg);
}

.metrics-visual img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 220px;
  height: 260px;
  object-fit: cover;
  border: 10px solid var(--white);
  box-shadow: 0 28px 70px rgba(31, 36, 46, .14);
}

.metrics-badge {
  position: absolute;
  left: 18px;
  top: 36px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  color: var(--dark);
  background: var(--accent);
  border-radius: 50%;
  font-family: "Josefin Sans", Arial, sans-serif;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .16);
}

.metrics-badge strong {
  font-size: 34px;
  line-height: .9;
}

.metrics-badge small {
  margin-top: -20px;
  font-weight: 700;
}

.quote-flow-note {
  display: grid;
  gap: 5px;
  margin: 0 0 18px;
  padding: 14px 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  font-family: "Josefin Sans", Arial, sans-serif;
}

.quote-flow-note strong {
  font-size: 17px;
}

.quote-flow-note span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.step-progress {
  counter-reset: quote-step;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.step-progress span {
  min-height: 58px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  text-align: center;
}

.step-progress span:last-child {
  border-right: 0;
}

.step-progress span::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-bottom: 5px;
  border-radius: 50%;
  background: #eef0f3;
  box-shadow: inset 0 0 0 1px var(--line);
}

.step-progress span.active::before {
  background: var(--dark);
  box-shadow: inset 0 0 0 6px var(--accent);
}

.step-progress span.active {
  background: #fff8ca;
}

.hero-mini-card,
.hero-score-card {
  position: absolute;
  z-index: 4;
  min-width: 172px;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .12);
  font-family: "Josefin Sans", Arial, sans-serif;
}

.hero-mini-card span,
.hero-score-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}

.hero-mini-card strong,
.hero-score-card strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
}

.hero-mini-seo {
  left: 0;
  bottom: 78px;
}

.hero-mini-cms {
  right: 18px;
  top: 250px;
}

.hero-mini-care {
  left: 54px;
  top: 338px;
}

.hero-score-card {
  right: 82px;
  bottom: 0;
  min-width: 150px;
  border-top: 4px solid var(--accent);
}

.hero-score-card strong {
  color: var(--dark);
  font-size: 48px;
  line-height: .9;
}

.hero-score-card i {
  display: block;
  height: 6px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--accent) 0 78%, var(--line) 78% 100%);
}

body[dir="rtl"] .hero-content {
  margin-left: 0;
  margin-right: max(24px, calc((100vw - 1310px) / 2));
}

body[dir="rtl"] .slider-art {
  right: auto;
  left: max(28px, calc((100vw - 1360px) / 2));
}

.owned-project-grid,
.pricing-grid,
.google-feature-list {
  display: grid;
  gap: 24px;
}

.owned-project-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 54px;
}

.owned-project-grid article,
.pricing-grid article,
.google-feature-list article {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.owned-project-grid article {
  min-height: 310px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
}

.owned-project-grid span,
.pricing-grid span,
.google-steps span {
  color: var(--accent);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

.owned-project-grid h4,
.pricing-grid h4,
.google-feature-list h4 {
  font-size: 22px;
}

.owned-project-grid p,
.pricing-grid p,
.google-feature-list p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.owned-project-grid a {
  align-self: end;
  margin-top: 8px;
  color: var(--dark);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
}

.pricing-grid article {
  display: grid;
  gap: 16px;
  padding: 34px;
}

.pricing-grid article.featured {
  border-top: 5px solid var(--accent);
  transform: translateY(-12px);
}

.pricing-grid strong {
  color: var(--dark);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 34px;
}

.pricing-grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-grid li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 3px;
  background: var(--accent);
}

.pricing-grid button {
  min-height: 50px;
  padding: 12px 14px;
  border: 0;
  color: var(--dark);
  background: var(--accent);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  white-space: normal;
}

.google-business-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.google-feature-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.google-feature-list article {
  padding: 24px;
}

.google-steps {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.google-steps div {
  padding: 18px;
  background: var(--white);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
}

.google-steps strong {
  display: block;
  margin-top: 4px;
  font-family: "Josefin Sans", Arial, sans-serif;
}

.owned-project-showcase {
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(0, 1.38fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 54px;
}

.owned-project-lead {
  display: grid;
  align-content: space-between;
  gap: 22px;
  min-width: 0;
  padding: clamp(28px, 4vw, 46px);
  color: var(--white);
  background: var(--dark);
  box-shadow: var(--shadow);
}

.owned-project-lead span,
.owned-project-lead small {
  color: var(--accent);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.owned-project-lead h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.owned-project-lead p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  line-height: 1.75;
}

.owned-project-stats {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.owned-project-stats strong {
  color: var(--accent);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 38px;
  line-height: 1;
}

.owned-project-showcase .owned-project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.owned-project-showcase .owned-project-grid article {
  min-height: 0;
  border-top: 4px solid var(--accent);
}

.owned-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.owned-tags small {
  padding: 7px 9px;
  color: var(--dark);
  background: #f7f2dc;
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

.pricing-section {
  overflow: hidden;
}

.pricing-workbench {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 0;
  align-items: stretch;
  margin-top: 54px;
  background: #f7f8fa;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
  padding: 22px;
  align-content: start;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.price-package {
  position: relative;
  overflow: hidden;
}

.price-package::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 96px;
  height: 96px;
  background: rgba(247, 198, 50, .22);
  border-radius: 50%;
}

.pricing-workbench .price-package {
  box-shadow: none;
}

.pricing-workbench .price-package p {
  display: none;
}

.pricing-workbench .price-package ul {
  gap: 6px;
}

.pricing-workbench .price-package li {
  font-size: 13px;
}

.pricing-workbench .price-package button {
  min-height: 44px;
}

.price-package.custom {
  color: var(--white);
  background: var(--dark);
}

.price-package.custom h4,
.price-package.custom strong {
  color: var(--white);
}

.price-package.custom p,
.price-package.custom li {
  color: rgba(255, 255, 255, .74);
}

.price-calculator {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 0;
  padding: clamp(22px, 3vw, 34px);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.price-calc-copy {
  min-width: 0;
}

.price-calc-copy h3 {
  margin: 10px 0 16px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
}

.price-calc-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.price-feature-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.price-feature-form label {
  display: flex;
  gap: 10px;
  min-width: 0;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
}

.price-feature-form label.locked {
  cursor: default;
  background: #fff8ca;
}

.price-feature-form label.custom-choice {
  grid-column: 1 / -1;
  border-color: rgba(23, 26, 33, .22);
}

.price-feature-form input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.price-feature-form span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.price-feature-form strong {
  color: var(--dark);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 15px;
}

.price-feature-form small {
  color: var(--muted);
  font-size: 12px;
}

.price-summary {
  display: grid;
  align-content: center;
  gap: 12px;
  min-width: 0;
  padding: 28px;
  color: var(--white);
  background: var(--dark);
  box-shadow: 10px 10px 0 rgba(247, 198, 50, .22);
}

.price-summary span {
  color: var(--accent);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

.price-summary strong {
  color: var(--white);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.price-summary p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  line-height: 1.6;
}

.google-business-section {
  position: relative;
  overflow: hidden;
}

.google-business-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 230px;
  background: var(--dark);
}

.google-business-grid {
  position: relative;
  z-index: 1;
}

.google-business-copy {
  min-width: 0;
  padding: clamp(30px, 4vw, 50px);
  color: var(--white);
  background: var(--dark);
  box-shadow: 18px 18px 0 rgba(247, 198, 50, .22);
}

.google-business-copy h2 {
  color: var(--white);
}

.google-business-copy p {
  color: rgba(255, 255, 255, .76);
}

.google-impact {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 26px 0;
}

.google-service-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.google-service-badge strong {
  padding: 10px 12px;
  color: var(--dark);
  background: var(--accent);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 13px;
}

.google-impact strong {
  min-width: 0;
  padding: 12px 8px;
  color: var(--dark);
  background: var(--accent);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 13px;
  text-align: center;
}

.google-business-copy .google-steps div {
  background: rgba(255, 255, 255, .08);
  box-shadow: none;
}

.google-business-copy .button {
  margin-top: 24px;
}

.google-business-board {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.google-map-card {
  position: relative;
  min-width: 0;
  padding: 34px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.google-map-card::before {
  content: "";
  position: absolute;
  right: 28px;
  top: 28px;
  width: 72px;
  height: 72px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(23, 26, 33, .16) 48% 52%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(23, 26, 33, .16) 48% 52%, transparent 52%),
    var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.google-map-card span {
  color: var(--orange);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.google-map-card strong {
  display: block;
  max-width: 430px;
  margin: 12px 0;
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.google-map-card ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.google-map-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.45;
}

.google-map-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 3px;
  background: var(--accent);
}

.google-process-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.google-process-line div {
  min-width: 0;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.google-process-line span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  color: var(--dark);
  background: var(--accent);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

.google-process-line strong {
  display: block;
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 17px;
}

.google-process-line p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.hero-service-stack {
  position: absolute;
  left: 0;
  bottom: 32px;
  z-index: 5;
  display: grid;
  gap: 10px;
  width: min(250px, 42%);
}

.hero-service-stack .hero-mini-card {
  position: relative;
  inset: auto;
  min-width: 0;
  padding: 14px 16px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 34px rgba(23, 26, 33, .11);
}

.hero-service-stack .hero-mini-card strong {
  font-size: 15px;
}

.slider-art .circle.yellow {
  right: 0;
  bottom: 66px;
  width: 145px;
  height: 145px;
  opacity: .92;
}

.slider-art .ring {
  left: 70px;
  top: 130px;
  width: 150px;
  height: 150px;
  border-width: 16px;
  opacity: .8;
}

.slider-art .circle.ink,
.slider-art .square.red,
.slider-art .triangle {
  display: block;
}

.hero-score-card {
  right: 52px;
  bottom: 8px;
  min-width: 138px;
  padding: 14px 16px;
}

.hero-mini-card {
  min-width: 154px;
  max-width: 188px;
  padding: 13px 15px;
  border-left: 4px solid var(--accent);
}

.hero-mini-card strong {
  font-size: 15px;
}

.hero-mini-seo {
  left: 8px;
  bottom: 128px;
}

.hero-mini-cms {
  right: 0;
  top: 205px;
}

.hero-mini-care {
  left: 142px;
  bottom: 24px;
  top: auto;
}

.creative-proof-panel {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 34px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .045);
}

.creative-proof-panel .video-cover {
  min-height: 170px;
  margin-top: 0;
}

.creative-proof-panel span {
  color: var(--accent);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.creative-proof-panel strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.25;
}

.creative-proof-panel p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.65;
}

.owned-project-showcase {
  position: relative;
}

.owned-project-showcase::after {
  content: "SINAN BAYRAKTUTAN";
  position: absolute;
  right: 18px;
  top: -22px;
  color: rgba(23, 26, 33, .06);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: clamp(34px, 7vw, 92px);
  font-weight: 700;
  letter-spacing: .04em;
  pointer-events: none;
}

.owned-project-showcase > * {
  position: relative;
  z-index: 1;
}

.owned-project-showcase .owned-project-grid article {
  transition: transform .25s ease, box-shadow .25s ease;
}

.owned-project-showcase .owned-project-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 72px rgba(23, 26, 33, .12);
}

.price-scope-controls {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.price-scope-controls label {
  display: grid;
  gap: 7px;
  padding: 14px;
  cursor: default;
}

.scope-label {
  color: var(--dark);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

.price-scope-controls select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--dark);
  font-family: "Josefin Sans", Arial, sans-serif;
}

.price-meter {
  height: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .16);
}

.price-meter i {
  display: block;
  width: 24%;
  height: 100%;
  background: var(--accent);
  transition: width .25s ease;
}

.price-selected-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-selected-list li {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.35;
}

.google-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 24px;
}

.google-kpi-row div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
}

.google-kpi-row strong,
.google-kpi-row span {
  display: block;
  font-family: "Josefin Sans", Arial, sans-serif;
}

.google-kpi-row strong {
  color: var(--accent);
  font-size: 22px;
}

.google-kpi-row span {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.35;
}

.menu-solutions-section {
  padding-top: 110px;
}

.menu-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.menu-solutions-grid article {
  min-width: 0;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  box-shadow: var(--shadow);
}

.menu-solutions-grid span {
  color: var(--orange);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.menu-solutions-grid h3 {
  margin: 12px 0;
  font-size: 24px;
}

.menu-solutions-grid p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.65;
}

.menu-solutions-grid a {
  color: var(--dark);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

.pricing-studio {
  display: grid;
  grid-template-columns: minmax(250px, .68fr) minmax(0, 1.36fr) minmax(250px, .58fr);
  gap: 0;
  margin-top: 52px;
  background: #f7f8fa;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.pricing-clean {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.pricing-clean article {
  position: relative;
  display: grid;
  gap: 15px;
  min-width: 0;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  box-shadow: var(--shadow);
}

.pricing-clean article.featured {
  border-color: rgba(23, 26, 33, .16);
  border-top-color: var(--orange);
  transform: translateY(-10px);
}

.pricing-clean article.custom {
  color: var(--white);
  background: var(--dark);
}

.pricing-clean span {
  color: var(--orange);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.pricing-clean h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.12;
}

.pricing-clean strong {
  color: var(--dark);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 38px;
  line-height: 1;
}

.pricing-clean p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.pricing-clean ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-clean li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.pricing-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 3px;
  background: var(--accent);
}

.pricing-clean button {
  min-height: 48px;
  border: 0;
  color: var(--dark);
  background: var(--accent);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
}

.pricing-clean .custom h3,
.pricing-clean .custom strong {
  color: var(--white);
}

.pricing-clean .custom p,
.pricing-clean .custom li {
  color: rgba(255, 255, 255, .74);
}

.pricing-clean-note {
  grid-column: 1 / -1;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
  background: #fff8ca;
  border: 1px solid rgba(23, 26, 33, .12);
}

.pricing-clean-note strong,
.pricing-clean-note span {
  font-family: "Josefin Sans", Arial, sans-serif;
}

.pricing-clean-note strong {
  color: var(--dark);
  font-size: 18px;
}

.pricing-lead-panel,
.price-builder-panel,
.price-summary {
  min-width: 0;
}

.pricing-lead-panel {
  padding: clamp(28px, 3.5vw, 42px);
  color: var(--white);
  background: var(--dark);
}

.pricing-lead-panel > span,
.pricing-assurance strong {
  color: var(--accent);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.pricing-lead-panel h3 {
  margin: 18px 0;
  color: var(--white);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.08;
}

.pricing-lead-panel p {
  color: rgba(255, 255, 255, .74);
  line-height: 1.75;
}

.pricing-assurance {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.pricing-assurance strong {
  padding: 12px 14px;
  color: var(--dark);
  background: var(--accent);
  letter-spacing: 0;
  text-transform: none;
}

.price-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 22px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.price-plan-grid .price-package {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: none;
}

.price-plan-grid .price-package.featured {
  transform: none;
  border-top: 4px solid var(--accent);
}

.price-plan-grid .price-package span {
  color: var(--orange);
}

.price-plan-grid .price-package h4 {
  margin: 0;
  font-size: 21px;
}

.price-plan-grid .price-package strong {
  font-size: 31px;
}

.price-plan-grid .price-package ul {
  gap: 6px;
}

.price-plan-grid .price-package li {
  font-size: 13px;
}

.price-plan-grid .price-package button {
  min-height: 42px;
}

.price-builder-panel {
  grid-column: 2 / 3;
  padding: 0 22px 24px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.price-builder-head {
  padding: 0 0 18px;
}

.price-builder-head h3 {
  margin: 8px 0 0;
  font-size: 28px;
}

.pricing-studio .price-scope-controls {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 12px;
}

.pricing-studio .price-feature-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-studio .price-feature-form label {
  padding: 12px;
}

.pricing-studio .price-summary {
  grid-column: 3 / 4;
  grid-row: 1 / span 2;
  align-content: start;
  padding: clamp(28px, 3vw, 40px);
  box-shadow: none;
}

@media (max-width: 1279px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-workbench {
    grid-template-columns: 1fr;
  }

  .pricing-studio {
    grid-template-columns: 1fr;
  }

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

  .price-plan-grid,
  .price-builder-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-builder-panel,
  .pricing-studio .price-summary {
    grid-column: auto;
    grid-row: auto;
  }

  .pricing-workbench .pricing-grid {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-calculator {
    grid-template-columns: 1fr;
  }

  .owned-project-showcase,
  .google-business-grid {
    grid-template-columns: 1fr;
  }

  .hero-service-stack {
    left: 12px;
    bottom: 22px;
    width: min(270px, 48%);
  }

  .creative-proof-panel {
    grid-template-columns: 1fr;
  }

  .language-dropdown {
    position: fixed;
    left: auto;
    right: 16px;
    bottom: 16px;
    z-index: 70;
  }

  .enhanced-langs {
    top: auto;
    bottom: calc(100% + 10px);
  }
}

@media (max-width: 620px) {
  .language-dropdown {
    right: 12px;
    bottom: 12px;
  }

  .language-current {
    min-width: 108px;
    height: 42px;
  }

  .enhanced-langs {
    width: min(190px, calc(100vw - 24px));
  }

  .portfolio-image {
    min-height: 245px;
  }

  .owned-project-grid {
    grid-template-columns: 1fr;
  }

  .owned-project-showcase .owned-project-grid,
  .pricing-grid,
  .pricing-clean,
  .pricing-workbench .pricing-grid,
  .price-plan-grid,
  .price-feature-form,
  .price-scope-controls,
  .pricing-studio .price-scope-controls,
  .pricing-studio .price-feature-form,
  .menu-solutions-grid,
  .google-feature-list,
  .google-impact,
  .google-kpi-row,
  .google-process-line {
    grid-template-columns: 1fr;
  }

  .price-calculator,
  .owned-project-lead,
  .google-business-copy,
  .google-map-card,
  .price-summary,
  .pricing-lead-panel,
  .price-builder-panel,
  .pricing-clean article {
    padding: 24px;
  }

  .pricing-clean article.featured {
    transform: none;
  }

  .pricing-clean-note {
    display: grid;
  }

  .price-summary {
    box-shadow: 8px 8px 0 rgba(247, 198, 50, .25);
  }

  .pricing-grid article.featured {
    transform: none;
  }

  .owned-project-grid article,
  .pricing-grid article,
  .google-feature-list article {
    padding: 24px;
  }

  .metrics-visual {
    min-height: 220px;
    margin-bottom: 10px;
  }

  .metrics-visual img {
    width: 190px;
    height: 220px;
  }

  .metrics-visual::before {
    width: 170px;
    height: 170px;
  }

  .metrics-visual::after {
    width: 92px;
    height: 92px;
  }

  .slider-art .art-main {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    width: 100%;
    height: 285px;
    border-radius: 28px;
  }

  .hero-mini-card,
  .hero-score-card {
    display: none;
  }

  .hero-service-stack {
    display: none;
  }
}
