:root {
  --bg-peach: #ffc5a7;
  --bg-pink: #ea73b4;
  --sheet: #fbf6ef;
  --ink: #242124;
  --line: #2d2a2d;
  --muted: rgba(36, 33, 36, 0.78);
  --card-peach: #ffc29f;
  --card-pink: #ef6db4;
  --card-dark: #242122;
  --white: #fffaf4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Ubuntu", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 247, 239, 0.9), transparent 28%),
    radial-gradient(circle at 82% 88%, rgba(255, 192, 147, 0.35), transparent 18%),
    linear-gradient(90deg, #ffb894 0%, #ffc0ad 15%, #f7a9b6 45%, #f088bf 72%, #e76eb0 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  position: relative;
  padding: 48px 22px 72px;
}

.page-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.5;
  pointer-events: none;
}

.page-glow-left {
  top: 180px;
  left: -120px;
  background: rgba(255, 252, 245, 0.75);
}

.page-glow-right {
  right: -90px;
  bottom: 120px;
  background: rgba(255, 183, 214, 0.42);
}

.site-frame {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
  background: var(--sheet);
  padding: 24px 40px 34px;
  box-shadow: 0 20px 60px rgba(174, 81, 122, 0.12);
  overflow: hidden;
  animation: frame-in 0.85s ease both;
}

.site-noise,
.site-frame::before,
.site-frame::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.site-noise {
  inset: 0;
  background:
    radial-gradient(circle at 3% 32%, rgba(255, 255, 255, 0.46), transparent 7%),
    radial-gradient(circle at 6% 57%, rgba(255, 255, 255, 0.34), transparent 11%),
    radial-gradient(circle at 91% 8%, rgba(255, 241, 228, 0.82), transparent 18%),
    radial-gradient(circle at 90% 54%, rgba(255, 248, 239, 0.72), transparent 18%);
}

.site-frame::before {
  top: 0;
  right: 0;
  width: 240px;
  height: 410px;
  background: linear-gradient(149deg, rgba(255, 208, 173, 0.1), rgba(255, 255, 255, 0.68));
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 40% 72%);
}

.site-frame::after {
  top: 298px;
  right: -16px;
  width: 260px;
  height: 250px;
  background: linear-gradient(135deg, rgba(255, 205, 186, 0.1), rgba(255, 255, 255, 0.62));
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.topbar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  font-size: 18px;
  color: rgba(36, 33, 36, 0.8);
}

.nav a,
.footer-links a {
  transition: opacity 0.22s ease;
}

.nav a:hover,
.footer-links a:hover {
  opacity: 0.7;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  border-radius: 999px;
  background: #1f1d20;
  color: #fbf7ef;
  font-size: 16px;
  line-height: 1;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pill-button:hover,
.pill-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(31, 29, 32, 0.16);
}

.top-cta {
  min-width: 138px;
}

.hero {
  position: relative;
  padding: 62px 0 56px;
}

.hero-backdrop {
  position: absolute;
  pointer-events: none;
}

.hero-backdrop-a {
  top: -28px;
  right: -58px;
  width: 390px;
  height: 430px;
  background: linear-gradient(142deg, rgba(255, 227, 210, 0.08), rgba(255, 255, 255, 0.68));
  clip-path: polygon(58% 0, 100% 0, 100% 70%, 22% 100%);
}

.hero-backdrop-b {
  left: -78px;
  top: 320px;
  width: 310px;
  height: 220px;
  background: linear-gradient(94deg, rgba(255, 255, 255, 0.46), rgba(255, 245, 235, 0.1));
  clip-path: polygon(0 36%, 100% 100%, 0 100%);
}

.hero-stage {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.hero-title {
  z-index: 1;
  margin: 0;
  text-align: center;
  font-size: clamp(72px, 8vw, 124px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero-note {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(36, 33, 36, 0.86);
  max-width: 560px;
}

.hero-link {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-link:hover {
  opacity: 0.8;
}



.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: rgba(36, 33, 36, 0.82);
  margin-top: 8px;
}

.explore-link img {
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  filter: brightness(0);
}

.section-gap {
  margin-top: 76px;
}

.top-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pill-button-whatsapp {
  background: #25d366;
  color: #fff;
}

.pill-button-whatsapp:hover,
.pill-button-whatsapp:focus-visible {
  background: #20bd5a;
}

.clients {
  text-align: center;
}

.clients-title {
  margin: 0 0 36px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 28px 40px;
  align-items: center;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 16px;
  border-radius: 16px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.client-logo:hover {
  transform: translateY(-4px);
  opacity: 0.9;
}

.client-logo img {
  max-width: 120px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-fallback {
  display: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.client-logo.has-fallback .client-fallback {
  display: block;
}

.client-logo.has-fallback img {
  display: none;
}

.services {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.services-copy {
  padding-top: 12px;
}

.services-copy h2,
.faq-copy h2,
.blog-head h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.services-copy p,
.faq-copy p,
.blog-head p,
.testimonial p,
.blog-card p,
.footer-brand p,
.faq-panel p {
  font-size: 16px;
  line-height: 1.42;
  color: var(--muted);
}

.services-copy p {
  max-width: 260px;
  margin: 28px 0 44px;
}

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

.service-card {
  position: relative;
  min-height: 220px;
  padding: 34px 24px 24px;
  border-radius: 34px;
  border: 2px solid rgba(45, 42, 45, 0.76);
  background: rgba(255, 253, 249, 0.72);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 28px rgba(31, 29, 32, 0.08);
  border-color: rgba(45, 42, 45, 0.95);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3vw, 36px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.service-card p {
  margin: 0;
  max-width: 260px;
  font-size: 16px;
  line-height: 1.34;
  color: rgba(36, 33, 36, 0.78);
}

.service-card-dark {
  min-height: 368px;
  background: var(--card-dark);
  color: #fffaf4;
  border-color: transparent;
  overflow: hidden;
}

.service-card-dark p {
  color: rgba(255, 250, 244, 0.88);
}

.service-icon-wrap {
  position: relative;
  min-height: 120px;
}

.service-pencil-image {
  width: 146px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.service-streaks {
  position: absolute;
  top: 38px;
  right: -10px;
  width: 108px;
  height: 38px;
  border-top: 3px solid #fff7ef;
  border-bottom: 3px solid #fff7ef;
}

.service-streaks::before,
.service-streaks::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  border-top: 3px solid #fff7ef;
}

.service-streaks::before {
  top: 10px;
}

.service-streaks::after {
  top: 20px;
}

.service-corner {
  position: absolute;
  top: 34px;
  right: -18px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--card-pink);
}

.service-pointer {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 34px;
  height: auto;
  filter: brightness(0) invert(1);
}

.testimonials {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 34px;
}

.testimonial {
  padding-right: 14px;
  animation: rise-in 0.8s ease both;
}

.testimonial-slim {
  border-left: 2px solid rgba(45, 42, 45, 0.62);
  padding-left: 30px;
}

.quote {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.quote-pink {
  filter: invert(72%) sepia(41%) saturate(1137%) hue-rotate(286deg) brightness(98%) contrast(94%);
}

.quote-peach {
  filter: invert(83%) sepia(36%) saturate(555%) hue-rotate(313deg) brightness(104%) contrast(102%);
}

.testimonial h2 {
  margin: 6px 0 22px;
  max-width: 520px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.testimonial p {
  margin: 0 0 28px;
  max-width: 520px;
}

.person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.person strong {
  display: block;
  margin-bottom: 2px;
  font-size: 18px;
}

.person span {
  display: block;
  font-size: 14px;
  color: rgba(36, 33, 36, 0.72);
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(36, 33, 36, 0.12);
  background-size: cover;
  background-position: center;
}

.avatar-one {
  background:
    radial-gradient(circle at 50% 36%, #5f4035 0 18%, transparent 19%),
    radial-gradient(circle at 50% 48%, #e4c2a9 0 24%, transparent 25%),
    radial-gradient(circle at 50% 78%, #8c7eb1 0 28%, transparent 29%),
    linear-gradient(180deg, #f6d9ca 0%, #c8a792 100%);
}

.avatar-two {
  background:
    radial-gradient(circle at 50% 34%, #272224 0 18%, transparent 19%),
    radial-gradient(circle at 50% 49%, #f0c4aa 0 25%, transparent 26%),
    radial-gradient(circle at 50% 78%, #ca8f71 0 29%, transparent 30%),
    linear-gradient(180deg, #fccdae 0%, #d7a38f 100%);
}

.faq-block {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.faq-copy p {
  max-width: 220px;
  margin: 26px 0 28px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
  border-radius: 30px;
  border: 2px solid rgba(45, 42, 45, 0.8);
  background: #fbf6ef;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-item.is-open {
  background: var(--card-peach);
  border-color: transparent;
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-toggle span {
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.faq-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #232023;
  flex-shrink: 0;
}

.faq-icon-image {
  width: 13px;
  height: 13px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.faq-item.is-open .faq-panel {
  padding: 0 24px 24px;
}

.faq-item.is-open .faq-panel::before {
  display: block;
  content: "";
  margin-bottom: 16px;
  border-top: 2px solid rgba(45, 42, 45, 0.76);
}

.faq-panel p {
  margin: 0;
  max-width: 690px;
}

.blog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.blog-head p {
  max-width: 348px;
  margin: 0 0 10px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.blog-card h3 {
  margin: 16px 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.blog-card p {
  margin: 0;
}

.blog-visual {
  position: relative;
  height: 188px;
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover .blog-visual {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(31, 29, 32, 0.08);
}

.blog-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.blog-visual img {
  position: absolute;
  height: auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.blog-visual-mail {
  background: var(--card-peach);
}

.blog-visual-seo {
  background: #ee73b8;
}

.blog-tag {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  padding: 5px 14px;
  border-radius: 999px;
  background: #1f1d20;
  color: #f9f6ef;
  font-size: 13px;
}

.mail-circle,
.mail-ring,
.mail-dot,
.seo-dot,
.seo-circle {
  position: absolute;
  border-radius: 50%;
}

.mail-circle {
  left: 106px;
  top: 28px;
  width: 108px;
  height: 108px;
  background: #ef6db3;
}

.mail-ring {
  left: 48px;
  top: 24px;
  width: 42px;
  height: 42px;
  border: 2px solid var(--line);
}

.mail-dot {
  left: 146px;
  bottom: 14px;
  width: 16px;
  height: 16px;
  background: var(--line);
}

.blog-mail-icon {
  z-index: 2;
  width: 94px;
  top: 40px;
  left: 194px;
  transform: rotate(9deg);
}

.seo-dot-a {
  left: 36px;
  top: 18px;
  width: 16px;
  height: 16px;
  background: #fff8f0;
}

.seo-dot-b {
  left: 50px;
  top: 40px;
  width: 22px;
  height: 22px;
  background: var(--line);
}

.seo-circle {
  right: 32px;
  bottom: -14px;
  width: 94px;
  height: 94px;
  background: rgba(255, 203, 143, 0.7);
}

.blog-browser-icon {
  z-index: 1;
  width: 176px;
  top: 20px;
  left: 88px;
}

.browser-chip {
  position: absolute;
  z-index: 2;
  top: 62px;
  left: 118px;
  padding: 8px 24px;
  border-radius: 999px;
  background: #fffaf4;
  color: #232124;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.browser-search {
  position: absolute;
  z-index: 2;
  top: 54px;
  left: 214px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--line);
}

.browser-search::after {
  position: absolute;
  content: "";
  right: -10px;
  bottom: -10px;
  width: 22px;
  border-top: 3px solid var(--line);
  transform: rotate(45deg);
  transform-origin: right center;
}

.blog-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  padding-top: 26px;
  border-top: 2px solid rgba(45, 42, 45, 0.72);
}

.footer-brand {
  max-width: 240px;
}

.footer-brand p {
  margin: 18px 0 18px;
}

.footer-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

.footer-socials a {
  display: inline-flex;
  color: #1f1d20;
}

.footer-socials img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0);
}

.footer-brand small {
  color: rgba(36, 33, 36, 0.56);
  font-size: 13px;
}

.footer-links {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(90px, 1fr));
  gap: 18px;
  max-width: 540px;
}

.footer-links h4 {
  margin: 0 0 14px;
  font-size: 14px;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(36, 33, 36, 0.82);
}

.subpage-main {
  position: relative;
  z-index: 1;
}

.subpage-hero {
  position: relative;
  padding: 78px 0 40px;
}

.subpage-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(36, 33, 36, 0.08);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.subpage-title {
  margin: 0;
  max-width: 760px;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.subpage-intro {
  margin: 22px 0 0;
  max-width: 720px;
  font-size: 20px;
  line-height: 1.5;
  color: var(--muted);
}

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

.subpage-card {
  min-height: 100%;
  padding: 28px 24px;
  border-radius: 30px;
  border: 2px solid rgba(45, 42, 45, 0.76);
  background: rgba(255, 253, 249, 0.72);
}

.subpage-card h2,
.subpage-card h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.subpage-card p,
.subpage-card li {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
}

.subpage-card p:last-child {
  margin-bottom: 0;
}

.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.subpage-list {
  margin: 0;
  padding-left: 20px;
}

.subpage-list li + li {
  margin-top: 10px;
}

.subpage-meta {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.subpage-meta strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.subpage-meta span,
.subpage-meta a {
  font-size: 17px;
  color: var(--muted);
}

.subpage-note {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 194, 159, 0.45);
}

.subpage-note p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

@keyframes frame-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes floaty-rotated {

  0%,
  100% {
    transform: translateY(0) rotate(-18deg);
  }

  50% {
    transform: translateY(-8px) rotate(-16deg);
  }
}

@keyframes drift {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes drift-tilted {

  0%,
  100% {
    transform: translateY(0) rotate(11deg);
  }

  50% {
    transform: translateY(-7px) rotate(13deg);
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 1100px) {
  .site-frame {
    padding: 24px 26px 30px;
  }

  .topbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .top-cta-group {
    width: 100%;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
  }

  .nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px 26px;
  }

  .hero-title {
    font-size: clamp(60px, 10vw, 94px);
  }

  .hero-stage {
    gap: 24px;
  }

  .hero-note {
    max-width: 100%;
  }

  .services,
  .faq-block,
  .blog-head,
  .footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .services-copy p,
  .faq-copy p {
    max-width: 100%;
  }

  .testimonials,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-slim {
    padding-left: 0;
    padding-top: 26px;
    border-left: 0;
    border-top: 2px solid rgba(45, 42, 45, 0.62);
  }

  .footer-links {
    width: 100%;
    max-width: none;
  }

  .subpage-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .page-shell {
    padding: 20px 10px 42px;
  }

  .site-frame {
    padding: 20px 18px 28px;
  }

  .brand {
    font-size: 24px;
  }

  .brand-logo {
    width: 28px;
    height: 28px;
  }

  .nav {
    font-size: 15px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-title {
    text-align: left;
    font-size: clamp(54px, 14vw, 82px);
  }

  .hero-stage {
    align-items: flex-start;
    text-align: left;
  }

  .services-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
  }

  .client-logo img {
    max-width: 90px;
    max-height: 44px;
  }

  .service-card,
  .service-card-dark {
    min-height: auto;
  }

  .faq-toggle span {
    font-size: 22px;
  }

  .blog-visual {
    height: 176px;
  }

  .blog-mail-icon {
    width: 80px;
    top: 46px;
    left: auto;
    right: 34px;
  }

  .blog-browser-icon {
    width: 150px;
    top: 24px;
    left: 72px;
  }

  .browser-chip {
    left: 98px;
    top: 62px;
    padding: 7px 18px;
    font-size: 20px;
  }

  .browser-search {
    left: 182px;
    top: 56px;
    width: 40px;
    height: 40px;
  }
}
