:root {
  --if19d-bg: #f5f7eb;
  --if19d-surface: #e4f4f7;
  --if19d-text: #22222a;
  --if19d-dolphin: #66667e;
  --if19d-trout: #4e4e5d;
  --if19d-border: #42a0be;
  --if19d-green: #00cb2f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--if19d-text);
  background: linear-gradient(90deg, #f5f7eb 0%, #f5f7eb 100%), linear-gradient(90deg, #f7f3e4 0%, #f7f3e4 100%);
  overflow-x: hidden;
}

p,
h1 {
  margin: 0;
}

.if19d-wrap {
  width: 100%;
  max-width: 1124px;
  margin: 0 auto;
}

.if19d-topbar {
  background-image: linear-gradient(71.814deg, #007cd6 9.2609%, #00cbe7 102.84%);
  padding: 16px 24px;
}

.if19d-topbar p {
  font-size: 16px;
  line-height: 1.27;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.if19d-main {
  padding: 0 0 24px;
  background: var(--if19d-surface);
}

.if19d-main-image {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  background: var(--if19d-surface);
}

.if19d-mobile-bg {
  position: absolute;
  top: -1.56%;
  left: -22.28%;
  width: 155.67%;
  height: 33.42%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
  pointer-events: none;
}

.if19d-main-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.if19d-brand-line {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.if19d-brand-line--mob {
  padding: 24px 24px;
}

.if19d-brand-line--desk {
  display: none;
}

.if19d-content-grid {
  display: block;
  padding: 0;
}

.if19d-card {
  background: var(--if19d-surface);
  border-radius: 24px;
  padding: 24px;
  margin: 0;
  width: auto;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.if19d-logo {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.if19d-logo--mob {
  width: 102px;
  height: 45.972px;
}

.if19d-logo--desk {
  width: 113.181px;
  height: 51.011px;
}

.if19d-logo img {
  position: absolute;
  display: block;
  max-width: none;
}

.if19d-logo-stroke {
  left: 50%;
  transform: translateX(-50%);
  top: 6.14%;
  width: 100%;
  bottom: 0;
  height: 93.86%;
  object-fit: contain;
}

.if19d-logo-h1 {
  inset: -0.08% 18.7% 85.44% 18.56%;
  width: 62.74%;
  height: 14.64%;
  object-fit: contain;
}

.if19d-logo-h2 {
  inset: 27.53% 6.31% 52.41% 6.4%;
  width: 87.29%;
  height: 20.06%;
  object-fit: contain;
}

.if19d-logo-h3 {
  inset: 57.63% 6.44% 15.22% 6.63%;
  width: 86.93%;
  height: 27.15%;
  object-fit: contain;
}

.if19d-dates {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.if19d-date-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.if19d-calendar {
  width: 14px;
  height: 14px;
  display: block;
  position: relative;
  top: -1px;
}

.if19d-brand-line--mob .if19d-date-row span,
.if19d-brand-line--mob .if19d-online {
  color: #fff;
}

.if19d-brand-line--desk .if19d-date-row span,
.if19d-brand-line--desk .if19d-online {
  color: var(--if19d-trout);
}

.if19d-brand-line .if19d-date-row span {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  margin: 0;
}

.if19d-brand-line .if19d-online {
  font-size: 16px;
  line-height: 2.6px;
  font-weight: 700;
  margin: 11px 0 0;
}

.if19d-headline {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 400;
  color: var(--if19d-text);
  overflow-wrap: anywhere;
}

.if19d-headline em {
  font-style: italic;
}

.if19d-headline strong {
  font-weight: 700;
}

.if19d-headline u {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.if19d-form-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.if19d-form-intro {
  color: var(--if19d-trout);
  font-size: 16px;
  line-height: 1.35;
}

.if19d-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.if19d-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.if19d-form input {
  width: 100%;
  border: 1px solid var(--if19d-border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--if19d-dolphin);
  min-height: 56px;
  padding: 16px;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  outline: none;
}

.if19d-form input::placeholder {
  color: var(--if19d-dolphin);
  text-transform: uppercase;
}

.if19d-button-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 16px;
}

.if19d-form .if19d-cta {
  border: 0;
  border-radius: 8px;
  background: var(--if19d-green);
  color: #fff;
  text-align: center;
  font-size: 18px;
  line-height: 1.43;
  font-weight: 700;
  min-height: 66px;
  cursor: pointer;
  text-transform: uppercase;
  padding: 20px 40px;
}

.if19d-cta-note {
  color: var(--if19d-text);
  font-size: 14px;
  line-height: 1.36;
}

.if19d-legal {
  color: var(--if19d-dolphin);
  font-size: 14px;
  line-height: 1.36;
}

.if19d-legal a {
  color: var(--if19d-dolphin);
  font-style: italic;
  text-decoration: underline;
}

.if19d-right {
  min-height: 0;
}

.iti {
  width: 100%;
}

.if19d-footer {
  background: var(--if19d-surface);
  padding: 32px 24px;
}

.if19d-footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.if19d-footer-logo {
  width: 141px;
  height: 25px;
  display: block;
}

.if19d-footer-logo--desk {
  display: none;
}

.if19d-footer-logo--mob {
  display: block;
}

.if19d-footer p {
  font-family: "Barlow Semi Condensed", Inter, Arial, sans-serif;
  color: var(--if19d-dolphin);
  font-size: 14px;
  line-height: 1.43;
}

@media (min-width: 768px) {
  .if19d-topbar {
    padding: 20px 0;
  }

  .if19d-topbar p {
    font-size: 20px;
  }

  .if19d-main {
    padding: 0;
    background: transparent;
  }

  .if19d-main-image {
    padding: 50px 0 80px;
  }

  .if19d-mobile-bg {
    display: none;
  }

  .if19d-main-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../img/figma/desk-main.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    pointer-events: none;
  }

  .if19d-main-wrap {
    width: 100%;
    padding: 0;
  }

  .if19d-brand-line--mob {
    display: none;
  }

  .if19d-brand-line--desk {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .if19d-content-grid {
    display: grid;
    grid-template-columns: 649px minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
    padding: 0;
  }

  .if19d-card {
    border-radius: 32px;
    padding: 40px 40px 48px;
    gap: 28px;
    margin: 0;
    width: 100%;
  }

  .if19d-headline {
    font-size: 32px;
  }

  .if19d-form-block {
    gap: 24px;
  }

  .if19d-form {
    gap: 12px;
  }

  .if19d-row {
    flex-direction: row;
    gap: 8px;
  }

  .if19d-form input {
    min-height: 59px;
    font-size: 16px;
  }

  .if19d-row input {
    width: calc(50% - 4px);
  }

  .if19d-row > .iti {
    width: calc(50% - 4px);
    flex: 0 0 calc(50% - 4px);
  }

  .if19d-row > .iti input {
    width: 100%;
  }

  .if19d-cta-note {
    font-size: 16px;
  }

  .if19d-right {
    min-height: 100%;
  }

  .if19d-footer {
    padding: 48px 0;
  }

  .if19d-footer-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .if19d-footer-logo--mob {
    display: none;
  }

  .if19d-footer-logo--desk {
    display: block;
  }

  .if19d-footer p {
    font-family: Inter, Arial, sans-serif;
    text-align: center;
    white-space: nowrap;
  }
}
