/* =========================================================
   Links.me landing — design tokens (from Figma variables)
   ========================================================= */
:root {
  /* Blue main */
  --blue-50:  #ebf1ff;
  --blue-100: #d6e3ff;
  --blue-200: #adc6ff;
  --blue-300: #8aadff;
  --blue-400: #6191ff;
  --blue-500: #3874ff;
  --blue-600: #004bfa;
  --blue-700: #0039bd;
  --blue-800: #00257a;
  --blue-900: #010e2f;
  --blue-950: #00091f;

  /* Violet */
  --violet-400: #d0bcff;
  --violet-600: #9c57ff;
  --violet-700: #8400f1;

  /* Neutrals */
  --black-50:  #f9f9fa;
  --black-200: #eaebed;
  --black-300: #dee0e3;
  --black-600: #838996;
  --black-700: #616670;
  --white:     #ffffff;
  --dark-text: #141212;

  /* Status */
  --success-300: #09d07d;
  --success-400: #07b86e;
  --success-500: #059d5d;
  --danger-500:  #ef4565;

  /* Type */
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;

  --container: 1024px;
  --side-pad: 24px;
}

/* ---------------- reset ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--side-pad);
}

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 13px 24px;
  white-space: nowrap;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.btn--primary { background: var(--blue-600); color: var(--white); }
.btn--primary:hover { background: var(--blue-700); }
.btn--outline { background: transparent; color: var(--white); border-color: var(--blue-500); padding-inline: 29px; }
.btn--outline:hover { background: var(--blue-500); }
.btn--light { background: var(--blue-50); color: var(--dark-text); }
.btn--light:hover { background: var(--blue-100); }
.btn--lg { padding: 20px 36px; border-radius: 12px; min-height: 40px; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--blue-950);
  padding-block: 16px;
  transition: box-shadow .2s ease, padding .2s ease;
}
.header.is-stuck {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  padding-block: 12px;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__logo { flex: 0 0 auto; }              /* never let the logo shrink */
.header__logo img { height: 32px; width: auto; }

.nav { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--blue-50);
  padding-block: 8px;
  white-space: nowrap;
  transition: color .15s ease;
}
.nav__link:hover { color: var(--blue-300); }
.nav__link--muted { color: var(--blue-200); }
.nav__caret { width: 16px; height: 16px; transition: transform .18s ease; }

/* ---- "Our services" hover dropdown ---- */
.nav__item--has-menu { position: relative; }
.nav__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 8px;
  background: var(--blue-950);
  border: 1px solid var(--blue-800);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(1, 14, 47, 0.45);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 20;
}
.nav__item--has-menu:hover .nav__menu,
.nav__item--has-menu:focus-within .nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__item--has-menu:hover .nav__caret,
.nav__item--has-menu:focus-within .nav__caret { transform: rotate(180deg); }
.nav__menu-link {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: var(--blue-50);
  white-space: nowrap;
  transition: background-color .15s ease, color .15s ease;
}
.nav__menu-link:hover { background: var(--blue-800); color: var(--white); }

.header__buttons { display: flex; gap: 8px; align-items: center; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: var(--blue-950);
  padding-block: 60px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: 368px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  max-width: none;
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.hero__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--blue-500);
  border-radius: 36px;
  padding: 9px 13px;
}
.badge__icon { width: 18px; height: 18px; }
.badge__text {
  display: inline-flex;
  gap: 4px;
  font-size: 14px;
  line-height: 18px;
  color: var(--blue-50);
  white-space: nowrap;
}
.badge__text strong { font-weight: 700; }
.badge__text span { font-weight: 400; }

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 68px;
  line-height: 76px;
  color: var(--white);
  text-align: center;
  max-width: 862px;
}
.hero__title .accent { color: var(--blue-500); }
.hero__subtitle {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--white);
  text-align: center;
  max-width: 592px;
}
.hero .btn--lg { margin-top: 8px; }

.hero__screenshot {
  width: 100%;
  background: rgba(245, 249, 255, 0.10);
  border-radius: 24px;
  padding: 16px;
  display: flex;
  justify-content: center;
}
.hero__screenshot-inner {
  width: 100%;
  max-width: 994px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 994 / 512;
}
.hero__screenshot-inner img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.hero__trust {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero__trust-text {
  flex: 0 0 174px;
  max-width: 174px;
  font-size: 14px;
  line-height: 18px;
  color: var(--blue-50);
}
.hero__logos {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* Figma SVGs use preserveAspectRatio=none + 100% sizing => need explicit dims */
.trust-logo { opacity: .95; flex: 0 0 auto; }
.trust-logo--ahrefs { width: 116px; height: 25px; }
.trust-logo--semrush { width: 169px; height: 26px; }
.trust-logo--similarweb { width: 179px; height: 28px; }
.trust-logo--ga {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 33px;
}
.trust-logo--ga .ga-icon { width: 23px; height: 26px; }
.trust-logo--ga .ga-text { width: 138px; height: 19px; }

/* =========================================================
   TRUSTED BY
   ========================================================= */
.trusted {
  background: var(--white);
  padding-top: 60px;
  padding-bottom: 100px;
}
.trusted__head {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  margin-bottom: 36px;
}
.trusted__title {
  flex: 1;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  color: var(--blue-800);
}
.trusted__meta {
  flex: 1;
  padding-top: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--blue-800);
}
.marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 88%, transparent 100%);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 37px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.m-logo { object-fit: contain; flex: 0 0 auto; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 18.5px)); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* =========================================================
   ALL YOUR LINKS (compare)
   ========================================================= */
.links {
  background: var(--blue-50);
  padding-block: 80px;
}
.links__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
}
.links__subhead {
  padding-top: 8px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--dark-text);
}
.links__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  color: var(--blue-800);
}
.links__head .btn { margin-top: 4px; }

.compare {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px 40px;
  filter: drop-shadow(0 35px 23.1px rgba(0, 75, 250, 0.08));
}
.compare__col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.compare__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.compare__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
}
.compare__icon--blue { background: var(--blue-500); }
.compare__icon--light { background: var(--blue-100); }
.compare__icon img { width: auto; }
.compare__subtitle {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--dark-text);
}
.compare__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.compare__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 0 12px 12px;
  border-bottom: 1px solid var(--black-200);
}
.tag {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 16px;
}
.tag--bad { background: var(--danger-500); }
.tag--good { background: var(--success-300); }
.tag img { width: 16px; height: 16px; }
.compare__text {
  font-size: 16px;
  line-height: 20px;
  color: var(--dark-text);
}
.compare__text--muted { color: var(--black-600); }

/* =========================================================
   WHAT YOU GAIN
   ========================================================= */
.gain {
  background: var(--white);
  padding-block: 80px;
}
.gain__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
.gain__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  color: var(--blue-800);
  text-align: center;
}
.gain__title .accent { color: var(--blue-500); }
.toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--blue-200);
  border-radius: 16px;
  padding: 5px;
}
.toggle__btn {
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  padding: 17px 25px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--blue-200);
  white-space: nowrap;
}
.toggle__btn:not(.toggle__btn--active) { border-color: var(--blue-50); }
.toggle__btn--active {
  background: var(--blue-700);
  color: var(--white);
  border-radius: 12px;
  font-weight: 500;
  padding: 16px 24px;
}
.gain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gain__grid[hidden] { display: none; }
.toggle__btn { cursor: pointer; }
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--blue-800);
  border-radius: 12px;
  padding: 24px 16px 32px;
  overflow: hidden;
}
.feature__icon { width: 56px; height: 56px; flex: 0 0 56px; }
.feature__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--blue-50);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--blue-700);
}
.feature__desc {
  font-size: 16px;
  line-height: 20px;
  color: var(--blue-100);
}

/* =========================================================
   BUILT FOR MODERN SEO TEAMS
   ========================================================= */
.teams {
  background: var(--blue-50);
  padding-block: 80px;
}
.teams__head {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
}
.teams__head-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 200px;
  color: var(--blue-800);
}
.teams__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
}
.teams__subtitle {
  font-size: 16px;
  line-height: 20px;
  max-width: 696px;
}
.teams__arrows { display: flex; gap: 8px; flex: 0 0 auto; }
.teams__arrow {
  background: transparent;
  border: 0;
  padding: 0;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: opacity .15s ease, transform .1s ease;
}
.teams__arrow:hover:not(:disabled) { transform: scale(1.06); }
.teams__arrow:active:not(:disabled) { transform: scale(0.96); }
.teams__arrow:disabled { opacity: .4; cursor: default; }
.teams__arrow img { width: 48px; height: 48px; }
.teams__arrow--next img { transform: rotate(180deg); }

.teams__cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  /* let the lane bleed past .container to both edges of the viewport */
  margin-inline: calc(50% - 50vw + 10px);
  padding-bottom: 8px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.teams__cards::-webkit-scrollbar { display: none; }
.tcard {
  flex: 0 0 328px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--blue-800);
  border-radius: 12px;
  padding: 40px 28px;
  overflow: hidden;
}
.tcard__icon { width: 48px; height: 48px; }
.tcard__content { display: flex; flex-direction: column; gap: 16px; }
.tcard__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--blue-200);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--blue-700);
}
.tcard__desc {
  font-size: 16px;
  line-height: 20px;
  color: var(--white);
}
.teams__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 40px;
}
.teams__cta-text {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--dark-text);
}
.teams__cta .btn--lg { border-radius: 8px; padding: 20px 32px; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how {
  background: var(--white);
  padding-top: 80px;
}
.how__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.how__head-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 200px;
  color: var(--blue-800);
}
.how__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
}
.how__subtitle {
  font-size: 16px;
  line-height: 20px;
  max-width: 416px;
}
.how__cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  /* let the lane bleed past .container to both edges of the viewport */
  margin-inline: calc(50% - 50vw + 10px);
  padding-bottom: 8px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.how__cards::-webkit-scrollbar { display: none; }
.step {
  flex: 0 0 328px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--blue-100);
  border-radius: 12px;
  padding: 40px 20px;
  overflow: hidden;
}
.step__top { display: flex; gap: 12px; align-items: flex-start; }
.step__num {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  color: var(--blue-900);
}
.step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid var(--success-500);
  border-radius: 28px;
}
.step__icon img { width: 16px; height: 16px; }
.step__body { display: flex; flex-direction: column; gap: 16px; color: var(--blue-900); }
.step__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}
.step__desc { font-size: 14px; line-height: 18px; }

/* =========================================================
   PRICING CTA
   ========================================================= */
.pricing {
  background: var(--white);
  padding-block: 80px;
}
.pricing__card {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding: 48px 40px;
  border-radius: 12px;
  background: linear-gradient(254.9deg, #004bfa 0%, #00257a 100%);
  overflow: hidden;
  position: relative;
}
.pricing__left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.pricing__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  color: var(--white);
}
.pricing__toggle { display: flex; gap: 12px; align-items: center; }
.pricing__btn {
  border: 0;
  border-radius: 12px;
  padding: 20px 40px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}
.pricing__btn--active { background: var(--blue-50); color: var(--blue-900); }
.pricing__btn:not(.pricing__btn--active) { background: var(--blue-900); color: var(--white); }
.pricing__right {
  flex: 1;
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  padding-top: 16px;
}
.pricing__panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.pricing__panel[hidden] { display: none; }
.pricing__subhead {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--white);
  text-align: left;
}
.pricing__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.pricing__item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  line-height: 18px;
  color: var(--white);
}
.tag--green { background: var(--success-500); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.reviews {
  background: var(--black-50);
  padding-block: 80px;
}
.reviews__head {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
}
.reviews__title {
  flex: 1;
  min-width: 0;
  max-width: 365px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  color: var(--blue-800);
}
.reviews__title .accent { color: var(--blue-500); }
.reviews__head-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}
.reviews__subtitle {
  font-size: 16px;
  line-height: 20px;
  color: var(--blue-800);
}
.reviews__cards {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  overflow-x: auto;
  /* let the lane bleed past .container to both edges of the viewport */
  margin-inline: calc(50% - 50vw + 10px);
  padding-bottom: 8px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.reviews__cards::-webkit-scrollbar { display: none; }
.review {
  flex: 0 0 322px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 12px;
  padding: 40px 20px;
  overflow: hidden;
}
.review--wide { flex-basis: 589px; gap: 60px; }
.review__top { display: flex; flex-direction: column; gap: 32px; }
.review__rating { display: flex; align-items: flex-start; justify-content: space-between; }
.review__stars { width: 105px; height: 21px; }
.review__badge { width: 74px; height: 20px; }
.review__quote-wrap { display: flex; flex-direction: column; gap: 16px; color: var(--dark-text); }
.review__quote {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}
.review__text { font-size: 14px; line-height: 18px; }
.review__author { display: flex; gap: 16px; align-items: center; }
.review__avatar { width: 60px; height: 60px; border-radius: 40px; object-fit: cover; flex: 0 0 60px; }
.review__author-info { display: flex; flex-direction: column; gap: 8px; color: var(--dark-text); }
.review__name { font-family: var(--font-heading); font-weight: 400; font-size: 18px; line-height: 24px; }
.review__role { font-size: 14px; line-height: 18px; }

/* =========================================================
   WEBSITES CATALOG / TABLE
   ========================================================= */
.catalog {
  background: var(--white);
  padding-block: 80px;
}
.catalog__card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 35px 60px rgba(0, 75, 250, 0.08);
  padding: 40px;
  margin-bottom: 56px;
}
.catalog__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  color: var(--blue-800);
  margin-bottom: 24px;
}
.catalog__table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--black-200);
  border-radius: 12px;
  -webkit-overflow-scrolling: touch;
}
.ctable {
  width: 100%;
  min-width: 820px;            /* keeps columns readable; scrolls on narrow screens */
  border-collapse: collapse;
  font-size: 13px;
}
.ctable th {
  text-align: left;
  padding: 13px 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  color: var(--blue-500);
  white-space: nowrap;
  border-bottom: 1px solid var(--black-200);
  background: var(--black-50);
}
.ctable th:first-child { border-top-left-radius: 12px; }
.ctable th:last-child { border-top-right-radius: 12px; }
.ctable .info { color: var(--black-600); font-size: 11px; }
.ctable .sort { color: var(--success-400); }
.ctable td {
  padding: 14px 9px;
  color: var(--dark-text);
  white-space: nowrap;
  border-bottom: 1px solid var(--black-200);
  font-weight: 600;
  font-size: 13px;
}
.ctable tbody tr:last-child td { border-bottom: 0; }
.ctable tbody tr:hover { background: var(--black-50); }
.cell-site a { color: var(--blue-500); font-weight: 700; }
.cell-site a:hover { text-decoration: underline; }
.cell-actions { margin-left: 8px; color: var(--black-600); letter-spacing: 3px; font-weight: 400; white-space: nowrap; }
.ctable .flag { font-size: 15px; margin-right: 2px; }
.buy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-500);
  color: var(--white);
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 13px;
}
.buy:hover { background: var(--blue-600); }
.buy__cart { font-size: 16px; color: var(--white); line-height: 1; }
.catalog__cta { display: flex; justify-content: center; margin-top: 32px; }

.taglist { margin-top: 32px; padding-inline: 40px; }
.taglist__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.taglist__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--blue-800);
  margin: 0;
}
.taglist__items { display: flex; flex-wrap: wrap; gap: 18px 22px; align-items: center; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-text);
  transition: color .15s ease;
}
.pill { cursor: default; }
.pill__ico { font-size: 16px; line-height: 1; }
/* collapsible full list */
.taglist__more { margin-top: 18px; }
.taglist__more[hidden] { display: none; }
.taglist__toggle {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--blue-600);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  transition: color .15s ease;
}
.taglist__toggle:hover { color: var(--blue-700); }
.taglist__toggle::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
  margin-bottom: 3px;
}
.taglist__toggle[aria-expanded="true"]::after { transform: rotate(225deg); margin-bottom: -3px; }
/* round flag chip with a thin ring */
.pill__flag {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
  flex: 0 0 auto;
  border: 1px solid #d8dde6;
}
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}
/* niche icon inside a solid blue circle */
.pill__ico.material-symbols-outlined {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-500);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  flex: 0 0 auto;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  background: var(--blue-50);
  padding-block: 80px;
  position: relative;
  overflow: hidden;
}
.faq__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: var(--blue-800);
  margin-bottom: 32px;
}
.faq__title { font-family: var(--font-heading); font-weight: 500; font-size: 40px; line-height: 48px; }
.faq__subtitle { font-size: 16px; line-height: 20px; }
.faq__body { display: flex; gap: 20px; align-items: flex-start; }
.faq__list { flex: 1 1 auto; min-width: 0; max-width: 589px; display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: 8px;
  padding: 8px 8px 8px 12px;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--blue-900);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "";
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin: 8px 12px;
  background:
    linear-gradient(var(--blue-900), var(--blue-900)) center/16px 2px no-repeat,
    linear-gradient(var(--blue-900), var(--blue-900)) center/2px 16px no-repeat;
  transition: transform .2s ease;
}
.faq-item[open] .faq-q::after { background: linear-gradient(var(--blue-900), var(--blue-900)) center/16px 2px no-repeat; }
.faq-a {
  padding: 12px 60px 8px 0;
  font-size: 14px;
  line-height: 18px;
  color: var(--blue-900);
}
.faq__image {
  flex: 0 0 415px;
  height: 538px;
  border-radius: 12px;
  overflow: hidden;
}
.faq__image img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   SCALE CTA
   ========================================================= */
.scale {
  background: var(--white);
  padding-bottom: 80px;
}
.scale__card {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  background: linear-gradient(90deg, #ebf1ff 0%, #d6e3ff 100%);
  border-radius: 12px;
  padding: 60px 40px;
  overflow: hidden;
}
.scale__left { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 36px; }
.scale__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  color: var(--dark-text);
}
.scale__cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.scale__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 4px;
  padding: 12px 24px;
  min-height: 46px;
  font-weight: 500;
  font-size: 16px;
}
.scale__btn:hover { background: var(--blue-700); }
.scale__caption { font-size: 14px; line-height: 18px; color: var(--dark-text); text-align: left; align-self: flex-start; }
.scale__right { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 24px; padding-top: 8px; }
.scale__icon { width: 48px; height: 48px; }
.scale__desc { display: flex; flex-direction: column; gap: 12px; color: var(--dark-text); }
.scale__desc-title { font-family: var(--font-heading); font-weight: 500; font-size: 18px; line-height: 24px; max-width: 409px; }
.scale__desc-sub { font-size: 14px; line-height: 18px; }
.scale__payments { height: 23px; width: auto; }

/* =========================================================
   BLOG
   ========================================================= */
.blog {
  background: var(--white);
  padding-block: 80px;
}
.blog__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--blue-800);
  margin-bottom: 40px;
}
.blog__title { font-family: var(--font-heading); font-weight: 500; font-size: 40px; line-height: 48px; }
.blog__subtitle { font-size: 16px; line-height: 20px; }
.blog__cards { display: flex; gap: 20px; align-items: stretch; }
.post {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--blue-50);
  border-radius: 16px;
  overflow: hidden;
  padding-top: 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.post:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0, 37, 122, 0.12); }
.post__link { position: absolute; inset: 0; z-index: 1; }
.post__body, .post__img { position: relative; }
.post__more { position: relative; z-index: 2; }
.post__body { display: flex; flex-direction: column; gap: 24px; padding: 0 20px; }
.post__text { display: flex; flex-direction: column; gap: 12px; }
.post__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--dark-text);
  /* always reserve 2 lines so the button + image line up across cards */
  min-height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post__excerpt {
  font-size: 14px;
  line-height: 18px;
  color: var(--black-700);
  min-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post__more {
  align-self: flex-start;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 50px;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}
.post__more:hover { background: var(--blue-700); }
.post__img { width: 100%; aspect-ratio: 1 / 1; margin-top: 8px; }
.post__img img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--blue-900);            /* #010e2f */
  color: var(--white);
  padding-top: 60px;
}
.footer__content {
  display: flex;
  gap: 70px;
  align-items: flex-start;
  justify-content: space-between;
}

/* Nav groups (Navigate + Legal) — flattened into footer__content so
   brand · Navigate · Legal spread evenly across the full width */
.footer__nav { display: contents; }
.footer__nav .footer__col { gap: 18px; }
.footer__nav .footer__list a {
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: var(--blue-50);
}
.footer__nav .footer__list a:hover { color: var(--white); }

/* Brand column */
.footer__brand {
  flex: 0 0 241px;
  width: 241px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.footer__brand-top { display: flex; flex-direction: column; gap: 16px; }
.footer__logo { width: 175px; height: 28px; }
.footer__address {
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--white);
  padding-bottom: 24px;
}
.footer__lang { align-self: flex-start; position: relative; }
.footer__lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--blue-500);
  border-radius: 100px;
  padding: 9px 13px;
  color: var(--blue-50);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
  transition: background .15s ease;
}
.footer__lang-btn:hover { background: rgba(56, 116, 255, 0.12); }
.footer__lang-btn svg { transition: transform .18s ease; }
.footer__lang-menu {
  position: absolute;
  left: 0;
  bottom: calc(100% + 8px);
  min-width: 180px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--blue-900);
  border: 1px solid var(--blue-700);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  z-index: 20;
}
.footer__lang:hover .footer__lang-menu,
.footer__lang:focus-within .footer__lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.footer__lang:hover .footer__lang-btn svg,
.footer__lang:focus-within .footer__lang-btn svg { transform: rotate(180deg); }
.footer__lang-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--blue-50);
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  white-space: nowrap;
  transition: background .12s ease, color .12s ease;
}
.footer__lang-menu a:hover { background: rgba(56, 116, 255, 0.16); color: var(--white); }
.footer__lang-menu a.is-current { color: var(--white); font-weight: 700; background: rgba(56, 116, 255, 0.12); }

/* Wrapper: services + subscribe */
.footer__wrapper { flex: 1; min-width: 0; display: flex; gap: 88px; }
.footer__services { flex: 1; min-width: 0; display: flex; gap: 68px; }
.footer__col { display: flex; flex-direction: column; gap: 16px; }
.footer__col-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: var(--blue-300);                 /* #8aadff */
  margin: 0;
  white-space: nowrap;
}
.footer__list { display: flex; flex-direction: column; gap: 12px; }
.footer__list a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--white);
  white-space: nowrap;
  transition: color .15s ease;
}
.footer__list a:hover { color: var(--blue-300); }
.footer__col--links { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 77px; }
.footer__links2 { display: flex; flex-direction: column; gap: 16px; }
.footer__links2 a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: var(--blue-300);                 /* #8aadff */
  white-space: nowrap;
  transition: color .15s ease;
}
.footer__links2 a:hover { color: var(--blue-200); }
.footer__euipo { width: 128px; height: 35px; }
.footer__euipo img { width: 100%; height: 100%; object-fit: contain; }

/* Subscribe column */
.footer__subscribe { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 24px; }
.footer__sub-head { display: flex; flex-direction: column; gap: 8px; }
.footer__sub-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--blue-300);
  margin: 0;
}
.footer__sub-text { font-size: 14px; line-height: 18px; color: var(--white); }
.footer__form { display: flex; flex-direction: column; gap: 12px; }
.footer__inputs { display: flex; flex-direction: column; gap: 4px; }
.footer__input {
  width: 100%;
  background: transparent;
  border: 1px solid var(--blue-800);      /* #00257a */
  border-radius: 8px;
  padding: 13px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color .15s ease;
}
.footer__input::placeholder { color: var(--blue-100); }   /* #d6e3ff */
.footer__input:focus { outline: none; border-color: var(--blue-500); }
.footer__submit {
  width: 100%;
  min-height: 40px;
  background: var(--blue-500);
  color: var(--white);
  border: 0;
  border-radius: 8px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background .15s ease;
}
.footer__submit:hover { background: var(--blue-600); }

/* Bottom bar */
.footer__bottom {
  margin-top: 40px;
  border-top: 1px solid var(--blue-700);  /* #0039bd */
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 48px;
}
.footer__copy { color: var(--white); font-size: 16px; line-height: 20px; white-space: nowrap; }
.footer__legal { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer__legal a {
  color: var(--blue-50);
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  white-space: nowrap;
  transition: color .15s ease;
}
.footer__legal a:hover { color: var(--white); }
.footer__social { display: flex; gap: 4px; flex: 0 0 auto; }
.footer__soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--blue-50);             /* #ebf1ff */
  transition: background .15s ease, transform .1s ease;
}
.footer__soc:hover { background: var(--white); transform: translateY(-1px); }

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* ---- <= 1024: tighten side padding ---- */
@media (max-width: 1080px) {
  :root { --side-pad: 32px; }
  .teams__head-text,
  .how__head-text { padding-right: 80px; }
  .reviews__title { max-width: none; }
}

/* ---- <= 900: tablet ---- */
@media (max-width: 900px) {
  .header__inner { gap: 16px; }
  .nav { display: none; }

  .hero__title { font-size: 52px; line-height: 60px; }
  .hero__trust { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero__trust-text { flex-basis: auto; max-width: none; }
  /* keep trust logos on a single line (tablet sizes) */
  .hero__logos { width: 100%; flex-wrap: nowrap; justify-content: space-between; gap: 12px; align-items: center; }
  .trust-logo--ahrefs { width: 93px; height: 20px; }
  .trust-logo--semrush { width: 130px; height: 20px; }
  .trust-logo--similarweb { width: 128px; height: 20px; }
  .trust-logo--ga { height: 20px; gap: 4px; }
  .trust-logo--ga .ga-icon { width: 17px; height: 19px; }
  .trust-logo--ga .ga-text { width: 100px; height: 14px; }

  .trusted__head { flex-direction: column; gap: 16px; }

  .compare { flex-direction: column; gap: 32px; }

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

  .teams__head,
  .how__head,
  .reviews__head { flex-direction: column; align-items: flex-start; }
  .teams__head-text,
  .how__head-text,
  .reviews__head-right { padding-right: 0; }

  .pricing__card,
  .scale__card { flex-direction: column; align-items: stretch; gap: 32px; }
  .pricing__right,
  .scale__right { padding-top: 0; }

  .faq__body { flex-direction: column; }
  .faq__list { flex-basis: auto; max-width: none; width: 100%; }
  /* show the whole portrait (no face cropping) on mobile */
  .faq__image { flex-basis: auto; width: 100%; height: auto; aspect-ratio: 1114 / 1601; max-height: 520px; }
  .faq__image img { object-position: center top; }

  .blog__cards { flex-wrap: wrap; }
  .post { flex: 1 1 calc(50% - 10px); }

  .footer__content { flex-direction: column; gap: 36px; }
  .footer__brand { width: 100%; flex-basis: auto; gap: 18px; }
  .footer__nav { gap: 64px; }
}

/* ---- <= 600: mobile ---- */
@media (max-width: 600px) {
  :root { --side-pad: 20px; }
  .header { padding-block: 12px; }
  .header__logo img { height: 26px; }
  .btn--outline { display: none; }
  .btn { font-size: 15px; padding: 11px 18px; }
  .btn--lg { padding: 16px 24px; }

  .hero { padding-block: 44px; }
  .hero__title { font-size: 36px; line-height: 42px; }
  .hero__subtitle { font-size: 17px; line-height: 24px; }
  .badge__text { white-space: normal; }

  .taglist { padding-inline: 20px; }

  /* trust logos — phone sizes (single line) */
  .hero__logos { gap: 8px; }
  .trust-logo--ahrefs { width: 58px; height: 12.5px; }
  .trust-logo--semrush { width: 81px; height: 12.5px; }
  .trust-logo--similarweb { width: 80px; height: 12.5px; }
  .trust-logo--ga { height: 15px; gap: 3px; }
  .trust-logo--ga .ga-icon { width: 13px; height: 14px; }
  .trust-logo--ga .ga-text { width: 64px; height: 9px; }

  .trusted__title,
  .links__title,
  .gain__title,
  .teams__title,
  .how__title,
  .pricing__title,
  .reviews__title,
  .faq__title,
  .scale__title,
  .blog__title,
  .catalog__title { font-size: 30px; line-height: 38px; }

  section { /* generic vertical rhythm */ }
  .trusted, .links, .gain, .teams, .reviews, .catalog, .faq, .blog { padding-block: 56px; }
  .how { padding-top: 56px; }
  .pricing, .scale { padding-block: 56px; }

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

  .pricing__toggle { flex-direction: column; align-items: stretch; }
  .pricing__btn { padding: 16px 24px; }

  /* blog: horizontal swipe carousel on mobile (compact, less scrolling) */
  .blog__cards {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 10px;
    margin-inline: calc(-1 * var(--side-pad));
    padding-inline: var(--side-pad);
    scrollbar-width: none;
  }
  .blog__cards::-webkit-scrollbar { display: none; }
  .post {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: center;
  }

  .catalog__card { padding: 24px 16px; }
  .catalog__title { font-size: 26px; line-height: 32px; }

  .scale__card { padding: 40px 24px; }
  .scale__title { font-size: 28px; line-height: 36px; }

  .footer__nav { gap: 48px; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* =========================================================
   DECORATIVE BLURRED TILE GRID
   ========================================================= */
.deco {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 1038px;
  /* negative bottom margin so the following card overlaps the dense base
     of the grid (matches Figma mb:-124) — only the skyline shows above it */
  margin: 0 auto -150px;
  aspect-ratio: 1038 / 270;
  /* blur (10.8) and 50% opacity are baked into the SVG (Figma export) */
  background: url("assets/deco-grid.svg") center / contain no-repeat;
  pointer-events: none;
}
/* cards sit ON TOP of the decorative grid */
.compare,
.catalog__card,
.pricing__card,
.scale__card { position: relative; z-index: 1; }

/* the grid now overlaps the card, so trim each section's own top padding */
.catalog { padding-top: 24px; }
.pricing { padding-top: 12px; }
/* .scale keeps no top padding so the grid forms the gap after FAQ */

@media (max-width: 700px) {
  .deco { margin-bottom: -90px; }
  /* let the image set its own height — no fixed ratio box, no empty space, no crop */
  .hero__screenshot-inner { aspect-ratio: auto; height: auto; }
  .hero__screenshot-inner img { height: auto; object-fit: contain; }
}

/* "All your links": grid sits BEHIND the compare card (absolute),
   so the button stays close to the card (~28px) */
.links__head { position: relative; z-index: 2; margin-bottom: 28px; }
.links__cardwrap { position: relative; z-index: 1; }
.links__cardwrap .deco {
  position: absolute;
  left: 50%;
  top: -70px;            /* peeks above the card; base hidden behind it */
  transform: translateX(-50%);
  width: 100%;
  max-width: 1038px;
  margin: 0;
  z-index: 0;
}
.links__cardwrap .compare { position: relative; z-index: 1; }
@media (max-width: 700px) {
  .links__cardwrap .deco { top: -44px; }
}

/* =========================================================
   DECORATIVE CORNER RIBBONS (imr)
   ========================================================= */
.ribbon {
  position: absolute;
  display: block;
  height: auto;
  pointer-events: none;
  z-index: 3;
}
/* Seam between hero and "Trusted by" — straddles the boundary on the right */
.trusted { position: relative; }
.ribbon--seam { top: -27px; right: 0; width: 124px; z-index: 4; }
/* All your links — right edge of the screen, at the compare card's top */
.links { position: relative; }
.ribbon--links { top: 286px; right: 0; width: 232px; z-index: 3; }
/* What You Gain — small tab centered at the top of the section */
.gain { position: relative; }
.ribbon--gain { top: -16px; left: calc(50% + 12px); transform: translateX(-50%); width: 138px; }
/* Pricing — top-right corner (card clips it) */
.ribbon--pricing { top: -8px; right: -8px; width: 135px; }
/* Catalog — right edge of the screen, BEHIND the table card (card overlaps its base) */
.catalog { position: relative; }
.ribbon--catalog { top: 96px; right: 0; width: 214px; z-index: 0; }
/* Scale — top-right corner (card clips it) */
.ribbon--scale { top: -6px; right: -6px; width: 110px; }
/* FAQ — sits right on the top-right corner of the photo */
.faq__body { position: relative; }
.ribbon--faq { top: -16px; right: -10px; width: 96px; }

@media (max-width: 700px) {
  .ribbon--links,
  .ribbon--catalog { width: 170px; }
  .ribbon--links { right: 0; top: 230px; }
  .ribbon--catalog { right: 0; }
  /* avoid overlapping the first FAQ question on stacked mobile layout */
  .ribbon--faq { display: none; }
}

/* =========================================================
   BLOG ARTICLE PAGE
   ========================================================= */
.article { padding-block: 56px 80px; }

.article__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 18px;
  color: var(--black-600);
  margin-bottom: 32px;
}
.article__breadcrumb a { color: var(--black-600); transition: color .15s ease; }
.article__breadcrumb a:hover { color: var(--blue-600); }
.article__crumb-sep { color: var(--black-300); }
.article__crumb-current { color: var(--blue-800); font-weight: 600; }

.article__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
  gap: 56px;
  align-items: center;
  margin-bottom: 48px;
}
.article__hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  text-align: left;
}
.article__hero-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin: 0;
}
.article__hero-img img { width: 100%; height: 100%; object-fit: cover; }
.article__category {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 36px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.article__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 44px;
  line-height: 54px;
  color: var(--blue-900);
}
.article__lead {
  font-size: 18px;
  line-height: 28px;
  color: var(--black-700);
  max-width: 640px;
}
.article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px 24px;
  margin-top: 4px;
}
.article__author { display: flex; align-items: center; gap: 12px; }
.article__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.article__author-info { text-align: left; }
.article__author-name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--blue-900);
}
.article__author-role { font-size: 14px; line-height: 18px; color: var(--black-600); }
.article__meta-dots { display: flex; align-items: center; gap: 16px; }
.article__meta-item {
  position: relative;
  font-size: 14px;
  line-height: 18px;
  color: var(--black-600);
}
.article__meta-item + .article__meta-item::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--black-300);
  transform: translateY(-50%);
}

.article__cover {
  margin: 40px auto;
  max-width: 600px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.article__cover img { width: 100%; height: 100%; object-fit: cover; }

.article__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 56px;
  justify-content: center;
}

/* Table of contents */
.article__toc {
  position: sticky;
  top: 24px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.article__toc-title {
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--black-600);
}
.article__toc-list { display: flex; flex-direction: column; gap: 4px; }
.article__toc-list a {
  padding: 6px 0 6px 14px;
  border-left: 2px solid var(--black-200);
  font-size: 14px;
  line-height: 18px;
  color: var(--black-700);
  transition: color .15s ease, border-color .15s ease;
}
.article__toc-list a:hover { color: var(--blue-600); border-color: var(--blue-500); }
.article__share { display: flex; flex-direction: column; gap: 10px; }
.article__share-label {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--black-600);
}
.article__share-row { display: flex; gap: 8px; }
.article__soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-800);
  transition: background-color .15s ease, color .15s ease;
}
.article__soc:hover { background: var(--blue-600); color: var(--white); }

/* Body typography */
.article__body { color: var(--dark-text); font-size: 17px; line-height: 28px; }
.article__body > * + * { margin-top: 20px; }
.article__body p { color: var(--black-700); }
.article__body a { color: var(--blue-600); font-weight: 600; }
.article__body a:hover { text-decoration: underline; }
.article__body h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  color: var(--blue-900);
  margin-top: 44px;
  scroll-margin-top: 24px;
}
.article__body h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: var(--blue-900);
  margin-top: 32px;
  scroll-margin-top: 24px;
}
.article__body h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: var(--blue-800);
  margin-top: 24px;
}
.article__body em { font-style: italic; }
.article__body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
  background: var(--black-50);
  border: 1px solid var(--black-200);
  border-radius: 6px;
  padding: 2px 6px;
  color: var(--blue-800);
}
.article__hr { border: 0; height: 1px; background: var(--black-200); margin: 40px 0; }

.article__list { padding-left: 22px; }
.article__list li { color: var(--black-700); margin-top: 10px; }
.article__list > li:first-child { margin-top: 0; }
.article__list { list-style: disc; }
.article__list--ordered { list-style: decimal; }
.article__list ul { list-style: circle; padding-left: 24px; margin-top: 10px; }
.article__list ol { list-style: lower-alpha; padding-left: 24px; margin-top: 10px; }
.article__list strong, .article__body strong { color: var(--blue-900); font-weight: 700; }

/* In-text full-width image */
.article__figure { margin: 32px 0; }
.article__figure img { width: 100%; display: block; border-radius: 12px; }
.article__figure figcaption {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
  color: var(--black-600);
  text-align: center;
}

/* Table */
.article__table-wrap { margin: 28px 0; overflow-x: auto; border-radius: 12px; border: 1px solid var(--black-200); }
.article__table { width: 100%; border-collapse: collapse; font-size: 15px; line-height: 22px; }
.article__table thead th {
  background: var(--blue-50);
  color: var(--blue-900);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-align: left;
}
.article__table th, .article__table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--black-200);
}
.article__table tbody tr:last-child td { border-bottom: 0; }
.article__table tbody tr:hover { background: var(--black-50); }
.article__table td { color: var(--black-700); }
.article__table td:first-child, .article__table th:first-child { font-weight: 600; color: var(--blue-900); }

.article__quote {
  margin: 32px 0;
  padding: 8px 0 8px 28px;
  border-left: 4px solid var(--blue-500);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  color: var(--blue-800);
}

/* Inline internal-link block (auto-insertable "Read also" — WordPress style) */
.article__related-inline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0;
  padding: 16px 20px;
  border: 1px solid var(--blue-100);
  border-left: 4px solid var(--blue-500);
  border-radius: 10px;
  background: var(--blue-50);
}
.article__related-inline-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
}
.article__related-inline-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.article__related-inline-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue-600);
}
.article__related-inline a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--blue-900);
}
.article__related-inline a:hover { color: var(--blue-600); text-decoration: none; }

.article__callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 32px 0;
  padding: 20px 24px;
  border-radius: 12px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
}
.article__callout-icon {
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--success-500);
}
.article__callout p { margin: 0; font-size: 15px; line-height: 24px; color: var(--blue-900); }

.article__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.article__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 36px;
  background: var(--black-50);
  border: 1px solid var(--black-200);
  font-size: 14px;
  line-height: 18px;
  color: var(--black-700);
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.article__tag:hover { background: var(--blue-50); color: var(--blue-700); border-color: var(--blue-200); }

@media (max-width: 980px) {
  .article__layout { grid-template-columns: minmax(0, 760px); }
  /* TOC moves from a sticky sidebar to a static card above the article */
  .article__toc {
    position: static;
    gap: 16px;
    padding: 20px 22px;
    margin-bottom: 8px;
    border: 1px solid var(--black-200);
    border-radius: 12px;
    background: var(--black-50);
  }
  .article__share { display: none; }
}
@media (max-width: 820px) {
  .article__hero {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 36px;
  }
  .article__hero-img { aspect-ratio: 16 / 10; max-height: 360px; }
}
@media (max-width: 600px) {
  .article { padding-block: 40px 56px; }
  .article__title { font-size: 32px; line-height: 40px; }
  .article__lead { font-size: 16px; line-height: 24px; }
  .article__cover { margin: 28px 0; aspect-ratio: 16 / 11; }
  .article__body { font-size: 16px; line-height: 26px; }
  .article__body h2 { font-size: 24px; line-height: 30px; }
  .article__quote { font-size: 19px; line-height: 28px; }
}

/* =========================================================
   BLOG CATALOG / INDEX PAGE
   ========================================================= */
.blogindex { padding-block: 56px 80px; }

.blogindex__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}
.blogindex__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 48px;
  line-height: 56px;
  color: var(--blue-900);
}
.blogindex__subtitle {
  font-size: 18px;
  line-height: 28px;
  color: var(--black-700);
}

.blogindex__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}
.blogindex__chip {
  padding: 10px 18px;
  border-radius: 36px;
  border: 1px solid var(--black-200);
  background: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--black-700);
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.blogindex__chip:hover { border-color: var(--blue-400); color: var(--blue-700); }
.blogindex__chip--active {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: var(--white);
}

/* Category pill */
.bcat {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 5px 12px;
  border-radius: 36px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

/* Featured post */
.bfeatured {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--black-200);
}
.bfeatured__img {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.bfeatured__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.bfeatured__img:hover img { transform: scale(1.04); }
.bfeatured__body { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.bfeatured__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: var(--blue-900);
}
.bfeatured__title a:hover { color: var(--blue-600); }
.bfeatured__excerpt { font-size: 16px; line-height: 26px; color: var(--black-700); }

/* Card grid */
.bgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
}
.bcard { display: flex; flex-direction: column; gap: 16px; }
.bcard__img {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.bcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.bcard:hover .bcard__img img { transform: scale(1.05); }
.bcard__body { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.bcard__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 19px;
  line-height: 26px;
  color: var(--blue-900);
}
.bcard__title a:hover { color: var(--blue-600); }
.bcard__excerpt { font-size: 14px; line-height: 21px; color: var(--black-700); }
.bcard__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  font-size: 13px;
  line-height: 18px;
  color: var(--black-600);
}
.bcard__avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.bcard__author { font-weight: 600; color: var(--blue-900); }
.bcard__dot { width: 3px; height: 3px; border-radius: 50%; background: var(--black-300); }

.bgrid__empty {
  text-align: center;
  padding: 48px 0;
  font-size: 16px;
  color: var(--black-600);
}

/* Pagination */
.bpag { display: flex; justify-content: center; gap: 8px; margin-top: 56px; }
.bpag a {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid var(--black-200);
  font-weight: 500;
  font-size: 15px;
  color: var(--black-700);
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.bpag a:hover { border-color: var(--blue-500); color: var(--blue-600); }
.bpag a.is-active { background: var(--blue-600); border-color: var(--blue-600); color: var(--white); }

@media (max-width: 980px) {
  .bgrid { grid-template-columns: repeat(2, 1fr); }
  .bfeatured { gap: 32px; }
  .bfeatured__title { font-size: 28px; line-height: 36px; }
}
@media (max-width: 760px) {
  .blogindex__title { font-size: 36px; line-height: 44px; }
  .blogindex__subtitle { font-size: 16px; line-height: 24px; }
  .bfeatured {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .bfeatured__img { order: -1; }
}
@media (max-width: 560px) {
  .bgrid { grid-template-columns: 1fr; gap: 32px; }
}

/* =========================================================
   GUEST POSTING LANDING — custom sections
   ========================================================= */
.gp-microcopy { font-size: 14px; line-height: 20px; color: var(--black-600); }
.gp-microcopy--light { color: var(--blue-200); }

/* "Works with" logos in the hero (first screen) */
.gp-hero__trust {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}
.gp-hero__trust .hero__trust-text {
  flex: none;
  max-width: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-200);
}
.gp-hero__trust .hero__logos {
  flex: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 44px;
}
.gp-gsc { display: inline-flex; align-items: center; gap: 8px; height: 28px; }
.gp-gsc__icon { width: 24px; height: 27px; }
.gp-gsc__text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  line-height: 22px;
  color: var(--white);
  white-space: nowrap;
}

.gp-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.gp-head__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  color: var(--blue-800);
}
.gp-head__subtitle { font-size: 18px; line-height: 26px; color: var(--black-700); }
.gp-center-cta { display: flex; justify-content: center; margin-top: 32px; }

.gp-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 36px;
  border: 1px solid var(--black-200);
  background: var(--white);
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: var(--blue-800);
}
.gp-chip--ok { border-color: var(--blue-100); background: var(--blue-50); color: var(--blue-700); }

/* Stats */
.gpstats { padding-block: 72px; }
.gpstats__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  color: var(--blue-800);
  text-align: center;
  margin-bottom: 40px;
}
.gpstats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.gpstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 16px;
  border-radius: 12px;
  background: var(--blue-800);
  overflow: hidden;
  text-align: center;
}
.gpstat__num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
  color: var(--white);
}
.gpstat__label { font-size: 15px; line-height: 20px; color: var(--blue-100); }
.gpstats__note { text-align: center; margin-top: 24px; font-size: 16px; color: var(--black-700); }
.gpstats__note strong { color: var(--blue-800); }
.gpstats__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 48px;
  margin-top: 32px;
}
.gpstats__block { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.gpstats__block-label {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--black-600);
}
.gpstats__chips { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; }
.gpstats__payments { height: 28px; width: auto; }

/* Comparison table */
.gpcompare { padding-block: 72px; background: var(--black-50); }
.gpcompare__wrap { border-radius: 16px; overflow-x: auto; border: 1px solid var(--black-200); background: var(--white); }
.gpcompare__table { min-width: 620px; }
.gpcompare__table { width: 100%; border-collapse: collapse; }
.gpcompare__table th, .gpcompare__table td {
  padding: 18px 24px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--black-200);
}
.gpcompare__table thead th {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--blue-900);
  background: var(--black-50);
}
.gpcompare__table tbody tr:last-child td { border-bottom: 0; }
.gpcompare__table td:first-child {
  font-weight: 600;
  color: var(--blue-900);
  width: 18%;
  white-space: nowrap;
}
.gpcompare__table .gpcompare__us { background: var(--blue-50); }
.gpcompare__table thead .gpcompare__us { background: var(--blue-600); color: var(--white); }
.gp-yes, .gp-no { display: block; font-size: 15px; line-height: 22px; padding-left: 26px; position: relative; }
.gp-yes { color: var(--blue-900); }
.gp-no { color: var(--black-600); }
.gp-yes::before, .gp-no::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.gp-yes::before { content: "✓"; background: var(--success-500); color: #fff; }
.gp-no::before { content: "✕"; background: var(--black-200); color: var(--black-600); }
.gpcompare__foot { text-align: center; margin-top: 32px; font-size: 18px; font-weight: 600; color: var(--blue-800); }

/* Audience cards */
.gpaudience { padding-block: 72px; }
.gpaudience__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.gpaud {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 36px 32px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--black-200);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.gpaud:hover { border-color: var(--blue-300); box-shadow: 0 16px 40px rgba(1, 14, 47, 0.08); transform: translateY(-3px); }
.gpaud__icon { width: 48px; height: 48px; }
.gpaud__title { font-family: var(--font-heading); font-weight: 600; font-size: 20px; line-height: 26px; color: var(--blue-900); }
.gpaud__desc { font-size: 15px; line-height: 24px; color: var(--black-700); }

/* Guarantees — styled like the "What You Gain" feature tiles */
.gpguarantee { padding-block: 72px; background: var(--white); }
.gpguarantee__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gpg {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 16px 32px;
  border-radius: 12px;
  background: var(--blue-800);
  overflow: hidden;
}
.gpg__icon { width: 56px; height: 56px; flex: 0 0 56px; }
.gpg__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 12px; }
.gpg__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--blue-50);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--blue-700);
}
.gpg__desc { font-size: 16px; line-height: 20px; color: var(--blue-100); }

@media (max-width: 980px) {
  .gpstats__grid { grid-template-columns: repeat(3, 1fr); }
  .gpaudience__grid { grid-template-columns: 1fr; }
  .gpguarantee__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .gp-head__title, .gpstats__title { font-size: 30px; line-height: 38px; }
  .gpstats__grid { grid-template-columns: repeat(2, 1fr); }
  .gpguarantee__grid { grid-template-columns: 1fr; }
  .gpcompare__table th, .gpcompare__table td { padding: 14px 14px; }
  .gpcompare__table { font-size: 14px; }
}

/* @@STYLES@@ */

/* ---- footer subscribe form (working) ---- */
.footer__form .hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.footer__consent { display: flex; gap: 8px; align-items: flex-start; margin: 10px 0 12px; font-size: 12px; line-height: 17px; color: var(--blue-200, #b7c6ee); cursor: pointer; }
.footer__consent input { margin-top: 2px; flex: 0 0 auto; accent-color: var(--blue-500); }
.footer__consent a { color: var(--blue-300, #8aadff); text-decoration: underline; }
.footer__submsg { margin: 10px 0 0; font-size: 13px; font-weight: 600; color: #7ee2a8; }
.footer__submsg.is-err { color: #ff9b9b; }
