:root {
  --ink: #111827;
  --muted: #667085;
  --line: #e5e7eb;
  --bg: #f7f8fa;
  --panel: #ffffff;
  --blue: #0071e3;
  --blue-dark: #005bb8;
  --mint: #2fbf9f;
  --yellow: #ff8a00;
  --soft-blue: #eef7ff;
  --soft-mint: #edf9f5;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px) saturate(160%);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 215px;
  text-decoration: none;
}

.brand-logo {
  width: 154px;
  height: auto;
}

.brand span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(26px, 3.8vw, 48px) clamp(18px, 4vw, 56px) clamp(18px, 2.4vw, 28px);
  background:
    radial-gradient(circle at 75% 18%, rgba(0, 113, 227, 0.16), transparent 34%),
    radial-gradient(circle at 10% 80%, rgba(47, 191, 159, 0.14), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-size: clamp(3.3rem, 7.5vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
  line-height: 1.25;
}

.hero-text,
.section-heading p,
.form-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--blue);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--blue-dark);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.button.full {
  width: 100%;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li,
.pill-group span,
.brand-strip span {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-visual img,
.section-image {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

section[id] {
  scroll-margin-top: 96px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading.compact {
  max-width: 860px;
}

.intro-band {
  padding-top: 0;
  padding-bottom: clamp(34px, 5vw, 58px);
  background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
  color: var(--ink);
}

.intro-band div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  max-width: 1120px;
  padding: clamp(20px, 3vw, 30px);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.intro-band span {
  color: var(--muted);
}

.benefit-grid,
.reviews {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.card,
.reviews figure,
.signup-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.06);
}

.card {
  padding: 22px;
}

.card p,
.work-types p,
.steps p,
.reviews blockquote,
.steps-note,
.form-note {
  color: var(--muted);
}

.partner-logo {
  width: 138px;
  max-width: 100%;
  height: auto;
  margin: 2px 0 14px;
}

.icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--ink);
  background: linear-gradient(145deg, #ffffff 0%, #eef7ff 100%);
  border: 1px solid #d8ecff;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 113, 227, 0.12);
  font-weight: 900;
  font-size: 0.76rem;
}

.icon img {
  width: 44px;
  height: 44px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: #fff;
}

.split-section > div {
  max-width: 1120px;
}

.work-intro {
  max-width: 620px;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: #fff;
}

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

.work-types article {
  position: relative;
  min-height: 100%;
  padding: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.07);
}

.work-types article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: auto;
  height: 5px;
  background: linear-gradient(90deg, #ff8a00 0%, #2fbf9f 100%);
  border-radius: 999px;
  content: "";
}

.work-types h3 {
  margin-bottom: 12px;
}

.work-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  margin-bottom: 18px;
  color: var(--blue-dark);
  background: rgba(0, 113, 227, 0.08);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
}

.work-note {
  padding-top: 16px;
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
  font-weight: 750;
}

.team-visual-section {
  position: relative;
  padding: clamp(34px, 6vw, 68px) clamp(18px, 4vw, 56px);
  background: #fff;
}

.team-visual-copy {
  max-width: 980px;
  margin: 0 auto 22px;
}

.team-visual-copy h2 {
  max-width: 860px;
  margin-bottom: 0;
  font-size: clamp(1.9rem, 4vw, 3.8rem);
}

.team-visual-section > img {
  width: min(1180px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.team-mosaic {
  position: relative;
  width: min(1180px, 100%);
  min-height: 890px;
  padding: 150px clamp(28px, 5vw, 70px) 68px;
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 138, 0, 0.16), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(0, 113, 227, 0.12), transparent 26%),
    linear-gradient(180deg, #fff8ed 0%, #eef6fb 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.team-mosaic::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 24%;
  background: rgba(226, 237, 242, 0.72);
  content: "";
}

.team-mosaic::after {
  position: absolute;
  right: 5%;
  bottom: 6%;
  left: 5%;
  height: 78%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  content: "";
}

.team-mosaic-badge {
  position: absolute;
  top: 42px;
  left: 5%;
  z-index: 3;
  padding: 10px 15px 10px 32px;
  color: #005d86;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  font-weight: 850;
}

.team-mosaic-badge::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 10px;
  height: 10px;
  background: #ff8a00;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.team-mosaic-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 22px 18px;
  align-items: start;
}

.team-person {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  padding: 5px 5px 18px;
  background: #fff;
  border: 0;
  border-radius: 5px;
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.2), 0 0 0 1px rgba(17, 24, 39, 0.05);
  transform: rotate(var(--rot));
}

.team-person:nth-child(7n + 2),
.team-person:nth-child(7n + 5) {
  margin-top: 24px;
}

.team-person:nth-child(7n + 3),
.team-person:nth-child(7n + 7) {
  margin-top: 10px;
}

.team-person::after {
  position: absolute;
  right: 10px;
  bottom: 5px;
  left: 10px;
  height: 4px;
  background: #ff8a00;
  border-radius: 999px;
  content: "";
  opacity: 0.72;
}

.team-portrait {
  position: relative;
  z-index: 0;
  width: 100%;
  height: calc(100% - 13px);
  object-fit: cover;
  object-position: top center;
  background: #fff;
  border-radius: 3px;
  filter: sepia(0.1) saturate(1.08) contrast(1.03);
}

.specs-section {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.pill-group,
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.brand-heading {
  margin-top: 34px;
}

.brand-heading p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 850;
  line-height: 1.25;
}

.brand-strip span {
  display: grid;
  flex: 1 1 150px;
  min-width: 150px;
  min-height: 82px;
  place-items: center;
  padding: 18px 20px;
  text-align: center;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.06);
}

.brand-strip img {
  width: 100%;
  max-width: 138px;
  max-height: 40px;
  object-fit: contain;
}

.brand-strip .brand-logo-ep {
  max-width: 190px;
  max-height: 50px;
}

.brand-strip img[alt="Indesit"] {
  max-width: 152px;
  max-height: 46px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.steps span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 900;
}

.steps-note {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 18px 24px;
  text-align: center;
  background: #fff8ed;
  border: 1px solid rgba(255, 138, 0, 0.22);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(255, 138, 0, 0.08);
  font-size: 1.05rem;
  line-height: 1.6;
}

.proof-section {
  background: #fff;
}

.trustpilot-proof {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
  padding: clamp(20px, 3vw, 30px);
  margin: 0 0 22px;
  background: linear-gradient(135deg, #f7fffb 0%, #ffffff 62%);
  border: 1px solid rgba(0, 182, 122, 0.2);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.06);
}

.trustpilot-proof img {
  width: 100%;
  max-width: 420px;
}

.trustpilot-proof h3 {
  margin-bottom: 6px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.trustpilot-proof p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.reviews {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reviews figure {
  margin: 0;
  padding: 24px;
}

.reviews blockquote {
  margin: 0 0 18px;
  font-size: 1.05rem;
}

.reviews figcaption {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 800;
}

.reviews figcaption img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 3px solid #eef7ff;
  border-radius: 50%;
}

.reviews figcaption span,
.reviews figcaption strong,
.reviews figcaption small {
  display: block;
}

.reviews figcaption small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.form-section {
  align-items: start;
  background: linear-gradient(180deg, #f7f8fa 0%, #eef7ff 100%);
}

.form-copy {
  position: sticky;
  top: 100px;
}

.form-copy ul {
  padding-left: 20px;
  color: var(--muted);
}

.signup-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
}

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

label,
legend {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d0d5dd;
  border-radius: 14px;
  font: inherit;
}

select {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(11, 117, 189, 0.18);
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin-top: 8px;
}

.checkbox-grid label {
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--muted);
  font-weight: 500;
}

.checkbox-grid input {
  width: 18px;
  min-height: 18px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.choice-grid label {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d0d5dd;
  border-radius: 14px;
  font-weight: 500;
  cursor: pointer;
}

.choice-grid label:has(input:checked) {
  color: var(--blue-dark);
  background: #eef7ff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11, 117, 189, 0.12);
}

.choice-grid input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--blue);
}

.jobs-choice-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jobs-choice-grid label {
  justify-content: center;
  font-weight: 800;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.site-footer {
  padding: clamp(42px, 7vw, 76px) clamp(18px, 4vw, 56px) 28px;
  color: #d1d5db;
  background: #111;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(4, minmax(150px, 1fr));
  gap: clamp(24px, 4vw, 54px);
  max-width: 1180px;
  margin: 0 auto 34px;
}

.footer-logo {
  width: 190px;
  max-width: 100%;
  padding: 10px 12px;
  background: #fff;
  border-radius: 16px;
}

.footer-brand p {
  max-width: 290px;
  margin: 18px 0 0;
  color: #e5e7eb;
}

.footer-register {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  max-width: 320px;
  margin-left: auto;
  padding: 12px;
  color: #f9fafb;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  text-decoration: none;
}

.footer-register:hover,
.footer-register:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.footer-register img {
  width: 48px;
  height: auto;
}

.footer-register span {
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.3;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.2;
}

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

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  padding-top: 22px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #9ca3af;
  font-size: 0.9rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 800;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: #eef7ff;
    text-decoration: none;
  }

  .hero,
  .split-section,
  .form-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    max-width: none;
  }

  .benefit-grid,
  .steps,
  .work-types {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-types article:last-child {
    grid-column: 1 / -1;
  }

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

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

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

  .form-copy {
    position: static;
  }

  .team-mosaic {
    min-height: 0;
    padding: 116px 34px 58px;
  }

  .team-mosaic-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px 16px;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 132px;
  }

  .brand span {
    display: none;
  }

  h1 {
    max-width: none;
    font-size: 2.75rem;
    line-height: 1;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-text,
  .section-heading p,
  .form-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 52px;
  }

  .benefit-grid,
  .steps,
  .work-types,
  .field-row,
  .checkbox-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .jobs-choice-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .work-types article:last-child {
    grid-column: auto;
  }

  .brand-strip span {
    min-width: 0;
    flex: 1 1 130px;
  }

  .team-mosaic {
    min-height: 0;
    padding: 92px 16px 42px;
    border-radius: 22px;
  }

  .team-mosaic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .team-person {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    padding: 4px 4px 14px;
  }

  .signup-form {
    padding: 22px;
  }

  .steps-note {
    padding: 16px;
    text-align: left;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}
