:root {
  --navy-950: #04182b;
  --navy-900: #08233d;
  --navy-800: #0b3558;
  --blue: #0578c6;
  --green: #12a66a;
  --green-dark: #087d55;
  --gold: #ffd33d;
  --ink: #102a43;
  --muted: #52677b;
  --line: #dbe6ef;
  --surface: #f3f8fc;
  --white: #ffffff;
  --qonto-ink: #1d1d1b;
  --qonto-lilac: #cbbcff;
  --qonto-violet: #7156d9;
  --dougs-ink: #0b2f54;
  --dougs-blue: #1677e8;
  --dougs-sky: #ccecff;
  --dougs-cream: #f7fcff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sale-bar {
  position: relative;
  z-index: 20;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(255, 211, 61, 0.16), transparent 28%),
    linear-gradient(105deg, var(--navy-950) 0%, #063954 48%, #087655 100%);
  border-bottom: 3px solid var(--gold);
}

.sale-bar::after {
  position: absolute;
  inset: -100% auto -100% 74%;
  width: 180px;
  content: "";
  transform: rotate(18deg);
  background: rgba(255, 255, 255, 0.06);
}

.sale-inner {
  position: relative;
  z-index: 1;
  width: min(1216px, calc(100% - 40px));
  min-height: 108px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.sale-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.sale-copy p {
  margin: 0;
}

.sale-domains {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(18px, 1.65vw, 23px);
  letter-spacing: -0.025em;
}

.sale-domains > span {
  color: var(--gold);
  font-size: 18px;
}

.sale-price {
  color: #c9e4e2;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.sale-price span {
  margin: 0 7px;
  color: rgba(255, 255, 255, 0.48);
}

.sale-price b {
  color: var(--gold);
  font-size: 24px;
  letter-spacing: -0.02em;
  text-transform: none;
}

.sale-pill {
  flex: none;
  max-width: 145px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 211, 61, 0.55);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(0, 13, 27, 0.32);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.sale-cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 8px;
  color: var(--navy-950);
  background: var(--gold);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.sale-cta:hover {
  transform: translateY(-1px);
  background: #ffe36e;
}

.site-header {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(1216px, calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
}

.brand img {
  width: 300px;
  max-width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  padding: 26px 0;
  color: #213b53;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  background: var(--green);
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 19px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-800);
  font-size: 13px;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 34%, rgba(0, 124, 199, 0.08), transparent 31%),
    linear-gradient(120deg, #f1f7fc 0%, #f8fbfe 60%, #eef6fb 100%);
}

.hero::before {
  position: absolute;
  top: -240px;
  right: -240px;
  width: 600px;
  height: 600px;
  content: "";
  border: 1px solid rgba(5, 120, 198, 0.08);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1216px, calc(100% - 40px));
  min-height: 500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 54px;
  padding: 48px 0 58px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 580px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(43px, 4.2vw, 60px);
  line-height: 1.01;
  letter-spacing: -0.05em;
}

.hero h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-lead {
  max-width: 570px;
  margin: 20px 0 17px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.hero-checks {
  margin: 0 0 21px;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.hero-checks li {
  position: relative;
  padding-left: 30px;
  color: #273f56;
  font-size: 13px;
  line-height: 1.45;
}

.hero-checks li::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 21px;
  height: 21px;
  content: "✓";
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: #dff6eb;
  font-size: 12px;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.button {
  min-height: 48px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 26px rgba(18, 166, 106, 0.2);
}

.button-secondary {
  color: var(--ink);
  border: 1px solid #9fb0c0;
  background: rgba(255, 255, 255, 0.58);
}

.hero-visual {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 207, 225, 0.58);
  border-radius: 34px 10px 34px 10px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(237, 246, 252, 0.84));
  box-shadow: 0 28px 70px rgba(10, 52, 86, 0.1);
}

.hero-visual::after {
  position: absolute;
  right: -13px;
  bottom: -13px;
  width: 130px;
  height: 130px;
  content: "";
  border-right: 4px solid var(--green);
  border-bottom: 4px solid var(--green);
  border-radius: 0 0 35px 0;
  opacity: 0.65;
}

.hero-visual img {
  width: min(78%, 440px);
  height: auto;
  transform: scale(1.12);
}

.visual-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  min-width: 118px;
  padding: 12px 15px;
  display: flex;
  align-items: baseline;
  gap: 7px;
  border-radius: 9px;
  color: var(--white);
  background: var(--navy-800);
  box-shadow: 0 10px 25px rgba(10, 53, 88, 0.2);
}

.visual-badge strong {
  color: var(--gold);
  font-size: 24px;
}

.visual-badge small {
  max-width: 54px;
  font-size: 10px;
  line-height: 1.1;
}

.visual-note {
  position: absolute;
  right: 18px;
  bottom: 15px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.proof-strip {
  position: relative;
  z-index: 2;
  margin-top: -22px;
}

.proof-inner {
  width: min(1216px, calc(100% - 40px));
  min-height: 80px;
  margin: 0 auto;
  padding: 12px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 16px 35px rgba(16, 42, 67, 0.09);
}

.proof-inner div {
  min-height: 46px;
  padding: 4px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border-right: 1px solid var(--line);
}

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

.proof-inner strong {
  font-size: 15px;
}

.proof-inner span {
  color: #6b7c8c;
  font-size: 12px;
}

.services {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 149, 255, 0.2), transparent 25%),
    linear-gradient(138deg, #03162a 0%, #052744 58%, #063451 100%);
}

.services::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
}

.services-glow {
  position: absolute;
  top: -170px;
  left: 50%;
  width: 700px;
  height: 360px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(0, 135, 255, 0.15);
  filter: blur(90px);
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(1216px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 72px;
}

.services-heading {
  margin-bottom: 38px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr auto;
  align-items: center;
  gap: 54px;
}

.yoorshop-signature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.yoorshop-signature > span {
  color: #9bb8cc;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.yoorshop-signature img {
  display: block;
  width: min(320px, 100%);
  height: auto;
}

.services-heading-copy h1 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.services-heading-copy > p:not(.kicker) {
  max-width: 620px;
  margin: 15px 0 0;
  color: #bad0df;
  font-size: 14px;
  line-height: 1.65;
}

.kicker-gold {
  color: var(--gold);
}

.all-offers-link {
  min-height: 46px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 211, 61, 0.52);
  border-radius: 7px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 505px;
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(62, 155, 220, 0.38);
  border-radius: 12px;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 132, 255, 0.12), transparent 35%),
    linear-gradient(145deg, rgba(8, 58, 103, 0.96), rgba(4, 33, 66, 0.98));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 211, 61, 0.55);
}

.service-card-head {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.service-card-head img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.service-card h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.service-card-head p {
  margin: 8px 0 0;
  color: #a9c0d2;
  font-size: 12px;
  line-height: 1.4;
}

.service-price {
  margin: 20px 0 20px 106px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #adc4d4;
}

.service-price > span {
  font-size: 11px;
}

.service-price > div {
  min-height: 59px;
  display: flex;
  align-items: flex-end;
}

.service-price strong {
  color: var(--gold);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.service-price b {
  align-self: center;
  margin: 0 0 0 3px;
  color: var(--gold);
  font-size: 17px;
}

.service-price b sup {
  font-size: 13px;
}

.service-price small {
  margin: 0 0 6px 10px;
  color: #bcd0de;
  font-size: 10px;
}

.service-card ul {
  margin: 0 0 25px;
  padding: 18px 0 0;
  display: grid;
  gap: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 24px;
  color: #d2e1eb;
  font-size: 12px;
  line-height: 1.4;
}

.service-card li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--gold);
  font-weight: 900;
}

.service-card > a {
  margin-top: auto;
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 211, 61, 0.72);
  border-radius: 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.trust-grid {
  margin-top: 28px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(137, 194, 228, 0.17);
  border-radius: 12px;
  background: rgba(0, 14, 28, 0.48);
}

.trust-grid div {
  min-height: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.trust-grid strong {
  color: var(--white);
  font-size: 16px;
}

.trust-grid span {
  color: #8db0c8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recommendations {
  background:
    linear-gradient(90deg, rgba(18, 166, 106, 0.05) 1px, transparent 1px),
    linear-gradient(#f8fbfd, #ffffff);
  background-size: 84px 84px, auto;
}

.recommendations-inner {
  width: min(1216px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 102px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 82px;
}

.recommendations-copy {
  position: sticky;
  top: 30px;
}

.recommendations-copy h2 {
  margin: 0;
  max-width: 480px;
  font-size: clamp(38px, 4vw, 57px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.recommendations-copy > p:not(.kicker) {
  margin: 23px 0 25px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.recommendations-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.recommendation-list {
  display: grid;
  gap: 12px;
}

.recommendation-card {
  min-height: 158px;
  padding: 24px 24px 24px 20px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 19px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(16, 42, 67, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.recommendation-card:hover {
  transform: translateX(5px);
  border-color: rgba(18, 166, 106, 0.46);
  box-shadow: 0 16px 35px rgba(16, 42, 67, 0.09);
}

.recommendation-index {
  align-self: stretch;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: #9eb0bf;
  font-size: 12px;
  font-weight: 900;
}

.recommendation-card small {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recommendation-card h3 {
  margin: 6px 0 5px;
  color: var(--ink);
  font-size: 23px;
  letter-spacing: -0.025em;
}

.recommendation-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.recommendation-card > strong {
  min-width: 76px;
  padding: 9px 8px;
  border-radius: 7px;
  color: var(--white);
  background: var(--navy-800);
  font-size: 13px;
  text-align: center;
}

.partner-zone {
  width: min(1216px, calc(100% - 40px));
  margin: 0 auto;
}

.qonto-zone {
  padding: 82px 0;
}

.qonto-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(34px, 4vw, 56px);
  align-items: center;
  overflow: hidden;
  padding: clamp(32px, 4.8vw, 58px);
  color: var(--qonto-ink);
  border-radius: 34px;
  background:
    radial-gradient(circle at 91% 12%, rgba(255, 255, 255, 0.78), transparent 17rem),
    linear-gradient(135deg, #f5f1ff, var(--qonto-lilac));
  box-shadow: 0 28px 90px rgba(16, 42, 67, 0.18);
}

.qonto-card::before {
  position: absolute;
  top: -150px;
  left: 40%;
  width: 320px;
  height: 320px;
  content: "";
  border: 2px solid rgba(29, 29, 27, 0.1);
  border-radius: 50%;
}

.qonto-copy,
.qonto-teaser {
  position: relative;
  z-index: 1;
}

.qonto-logo-wrap {
  width: 172px;
  height: 74px;
  margin-bottom: 22px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 27, 0.08);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(43, 29, 79, 0.09);
}

.qonto-logo-wrap img {
  display: block;
  width: 148px;
  height: auto;
}

.qonto-kicker {
  margin: 0 0 12px;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.qonto-title {
  margin: 0;
  font-size: clamp(2.25rem, 4.6vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.qonto-text {
  max-width: 620px;
  margin: 22px 0 28px;
  font-size: 1.12rem;
  line-height: 1.65;
}

.qonto-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.qonto-button {
  color: var(--white);
  background: var(--qonto-ink);
  box-shadow: 0 14px 30px rgba(29, 29, 27, 0.18);
}

.qonto-actions .button:focus-visible {
  outline: 3px solid var(--qonto-ink);
  outline-offset: 3px;
}

.qonto-note {
  margin: 16px 0 0;
  color: rgba(29, 29, 27, 0.75);
  font-size: 0.92rem;
  font-weight: 700;
}

.qonto-teaser {
  padding: 28px;
  border: 1px solid rgba(29, 29, 27, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 45px rgba(43, 29, 79, 0.12);
  backdrop-filter: blur(13px);
}

.offer-badge {
  margin-bottom: 20px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(29, 29, 27, 0.14);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.offer-badge::before {
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: var(--qonto-violet);
  box-shadow: 0 0 0 6px rgba(113, 86, 217, 0.12);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.offer-tile {
  min-height: 176px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 22px;
  background: var(--white);
}

.offer-tile.dark {
  color: var(--white);
  background: var(--qonto-ink);
}

.offer-number {
  display: block;
  margin-bottom: 10px;
  white-space: nowrap;
  font-size: clamp(2.35rem, 4.6vw, 3.55rem);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.065em;
}

.offer-label {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.42;
}

.offer-smallprint {
  margin: 18px 2px 0;
  color: rgba(29, 29, 27, 0.7);
  font-size: 0.82rem;
  line-height: 1.5;
}

.dougs-zone {
  padding: 0 0 82px;
}

.dougs-card {
  color: var(--dougs-ink);
  background:
    radial-gradient(circle at 91% 12%, rgba(255, 255, 255, 0.92), transparent 17rem),
    linear-gradient(135deg, var(--dougs-cream), var(--dougs-sky));
}

.dougs-card::before {
  border-color: rgba(22, 119, 232, 0.18);
}

.dougs-logo-wrap {
  width: 190px;
  border-color: rgba(11, 47, 84, 0.1);
}

.dougs-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dougs-ink);
  font-size: 2.15rem;
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 1;
}

.dougs-check {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--dougs-blue);
  font-size: 1.45rem;
  letter-spacing: 0;
}

.dougs-button {
  background: var(--dougs-blue);
  box-shadow: 0 14px 30px rgba(22, 119, 232, 0.22);
}

.dougs-card .qonto-actions .button:focus-visible {
  outline-color: var(--dougs-blue);
}

.dougs-teaser {
  border-color: rgba(11, 47, 84, 0.14);
  box-shadow: 0 20px 45px rgba(11, 47, 84, 0.12);
}

.dougs-offer-badge::before {
  background: var(--dougs-blue);
  box-shadow: 0 0 0 6px rgba(22, 119, 232, 0.12);
}

.dougs-teaser .offer-tile.dark {
  background: var(--dougs-ink);
}

.dougs-teaser .offer-smallprint {
  color: rgba(11, 47, 84, 0.72);
}

.site-footer {
  color: #c3d2df;
  background: #020f1d;
}

.footer-inner {
  width: min(1216px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 46px;
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 0.75fr);
  gap: 48px;
}

.footer-brand img {
  width: 260px;
  max-width: 100%;
  height: auto;
}

.footer-brand p {
  max-width: 340px;
  margin: 20px 0 0;
  color: #8ca3b5;
  font-size: 13px;
  line-height: 1.7;
}

.footer-inner nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-inner h2 {
  margin: 4px 0 11px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-yoorshop-logo {
  display: block;
  margin: 0 0 10px;
}

.footer-yoorshop-logo img {
  width: 205px;
  max-width: 100%;
  height: auto;
}

.footer-inner nav a {
  color: #9fb2c1;
  font-size: 12px;
  line-height: 1.45;
}

.footer-inner nav span,
.footer-inner nav strong {
  color: #9fb2c1;
  font-size: 12px;
  line-height: 1.45;
}

.footer-inner nav strong {
  color: var(--gold);
}

.footer-inner nav a:hover,
.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom {
  width: min(1216px, calc(100% - 40px));
  min-height: 62px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #7890a3;
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 1060px) {
  .sale-inner {
    gap: 20px;
  }

  .sale-pill {
    max-width: 125px;
    padding: 10px;
    font-size: 10px;
  }

  .sale-domains {
    gap: 8px;
    font-size: 17px;
  }

  .sale-cta {
    padding: 0 16px;
    font-size: 12px;
  }

  .main-nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr 0.88fr;
    gap: 34px;
  }

  .service-card {
    padding: 23px;
  }

  .service-card-head {
    gap: 12px;
  }

  .service-card-head img {
    width: 75px;
    height: 75px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-price {
    margin-left: 87px;
  }

  .footer-inner {
    grid-template-columns: 1.2fr repeat(3, 0.8fr);
    gap: 28px;
  }
}

@media (max-width: 820px) {
  .sale-inner {
    min-height: 0;
    padding: 18px 0;
    grid-template-columns: 1fr auto;
    gap: 13px 18px;
  }

  .sale-pill {
    max-width: none;
    width: max-content;
    margin: 0;
    grid-column: 1 / -1;
  }

  .sale-domains {
    flex-wrap: wrap;
    line-height: 1.3;
  }

  .sale-price {
    margin-top: 5px !important;
  }

  .sale-price b {
    white-space: nowrap;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 250px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 45px 0 52px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    min-height: 330px;
  }

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

  .proof-inner div:nth-child(2) {
    border-right: 0;
  }

  .proof-inner div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .services-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .yoorshop-signature {
    max-width: 370px;
  }

  .all-offers-link {
    width: max-content;
  }

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

  .qonto-card {
    grid-template-columns: 1fr;
  }

  .qonto-teaser {
    max-width: 760px;
  }

  .service-card {
    min-height: 465px;
  }

  .service-card-head img {
    width: 92px;
    height: 92px;
  }

  .service-price {
    margin-left: 110px;
  }

  .recommendations-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .recommendations-copy {
    position: static;
  }

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

  .trust-grid div:nth-child(3) {
    border-right: 0;
  }

  .trust-grid div:nth-child(-n + 3) {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .trust-grid div:nth-child(n + 4) {
    padding-top: 14px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .sale-inner,
  .header-inner,
  .hero-inner,
  .proof-inner,
  .section-inner,
  .partner-zone,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 28px, 1216px);
  }

  .sale-inner {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 12px;
  }

  .sale-pill {
    width: 100%;
  }

  .sale-cta {
    width: 100%;
    min-width: 0;
    padding: 0 16px;
    justify-content: space-between;
    font-size: 13px;
  }

  .sale-domains {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    font-size: 19px;
  }

  .sale-domains > span {
    display: none;
  }

  .sale-price {
    font-size: 11px;
  }

  .sale-price b {
    font-size: 21px;
  }

  .brand img {
    width: 215px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .hero h1 br {
    display: none;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-visual {
    min-height: 270px;
  }

  .visual-badge {
    top: 14px;
    left: 14px;
  }

  .visual-note {
    right: 14px;
    bottom: 13px;
  }

  .proof-inner div {
    padding: 10px 13px;
  }

  .section-inner {
    padding: 64px 0 60px;
  }

  .yoorshop-signature img {
    width: 280px;
  }

  .services-heading-copy h1 {
    font-size: 34px;
  }

  .service-card {
    min-height: 0;
  }

  .service-card-head {
    align-items: flex-start;
  }

  .service-card-head img {
    width: 76px;
    height: 76px;
  }

  .service-price {
    margin: 18px 0;
  }

  .qonto-zone {
    padding: 56px 0;
  }

  .dougs-zone {
    padding-bottom: 56px;
  }

  .qonto-card {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .qonto-logo-wrap {
    width: 150px;
    height: 66px;
  }

  .qonto-logo-wrap img {
    width: 130px;
  }

  .dougs-logo-wrap {
    width: 174px;
  }

  .qonto-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .qonto-text {
    font-size: 1rem;
  }

  .qonto-actions {
    display: grid;
  }

  .qonto-actions .button {
    width: 100%;
    min-height: 60px;
    padding: 16px 20px;
    font-size: 1rem;
  }

  .qonto-teaser {
    padding: 18px;
    border-radius: 22px;
  }

  .offer-badge {
    font-size: 0.76rem;
  }

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

  .offer-tile {
    min-height: 0;
  }

  .offer-label {
    font-size: 0.95rem;
  }

  .recommendations-inner {
    width: min(100% - 28px, 1216px);
    padding: 72px 0 78px;
  }

  .recommendation-card {
    min-height: 0;
    padding: 20px 16px;
    grid-template-columns: 30px 1fr;
  }

  .recommendation-card > strong {
    grid-column: 2;
    width: max-content;
  }

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

  .trust-grid div:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .trust-grid div:nth-child(2n) {
    border-right: 0;
  }

  .trust-grid div:nth-child(-n + 4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .trust-grid div:last-child {
    grid-column: 1 / -1;
    padding-top: 14px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-inner nav:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
