:root {
  --teal: #2a9fb0;
  --teal-bright: #55bcc6;
  --teal-soft: #e6f4f5;
  --teal-pale: #f2f9f9;
  --amber: #d7a55f;
  --amber-deep: #b9873f;
  --amber-soft: #f7ecd7;
  --amber-glow: rgba(215, 165, 95, 0.18);
  --navy: #163f50;
  --navy-deep: #082e39;
  --ink: #283b43;
  --muted: #6d7d83;
  --line: #dce7e8;
  --surface: #f6f8f8;
  --white: #ffffff;
  --danger: #b94444;
  --success: #237a5a;
  --shadow: 0 24px 70px rgba(12, 48, 58, 0.13);
  --shadow-soft: 0 12px 38px rgba(12, 48, 58, 0.09);
  --radius: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 231, 232, 0.82);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: clamp(300px, 24vw, 360px);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.main-nav > a {
  position: relative;
  color: #5b6b72;
  font-size: 0.91rem;
  font-weight: 600;
}

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

.main-nav > a:hover,
.main-nav > a:focus-visible {
  color: var(--navy);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: var(--teal-pale);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.button {
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--teal);
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  background: var(--teal);
  font-weight: 750;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: #238f9f;
  box-shadow: 0 12px 24px rgba(42, 159, 176, 0.24);
}


.button-small {
  min-height: 40px;
  padding-inline: 17px;
  font-size: 0.88rem;
}

.button-outline {
  color: var(--teal);
  background: transparent;
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--white);
}

.button-ghost {
  color: var(--navy);
  border-color: #c7d9dc;
  background: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--navy);
  background: var(--teal-pale);
  box-shadow: none;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 48%, rgba(242, 249, 249, 0.86) 100%),
    radial-gradient(circle at 85% 15%, rgba(42, 159, 176, 0.2), transparent 34%),
    radial-gradient(circle at 78% 26%, var(--amber-glow), transparent 28%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -5vw;
  width: 42vw;
  height: 100%;
  background: linear-gradient(155deg, rgba(42, 159, 176, 0.09), rgba(22, 63, 80, 0.02));
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%, 22% 58%);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: 13%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 165, 95, 0.16), transparent 68%);
  filter: blur(2px);
}

.hero-grid {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(42, 159, 176, 0.25);
  transform: rotate(31deg);
}

.hero-grid-one {
  top: 70px;
  right: 8%;
  width: 118px;
  height: 118px;
  background: rgba(42, 159, 176, 0.12);
}

.hero-grid-two {
  right: 2%;
  bottom: 45px;
  width: 84px;
  height: 84px;
  background: rgba(215, 165, 95, 0.18);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 38px;
  padding-block: 72px;
}

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

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.legal-card h1,
.error-card h1 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(1.4rem, 4.2vw, 3.5625rem);
  font-weight: 600;
}

.hero-copy > p {
  max-width: 560px;
  margin: 26px 0 30px;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.hero-points {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  color: #587078;
  font-size: 0.88rem;
  font-weight: 650;
}

.hero-points span {
  position: relative;
  padding-left: 18px;
}

.hero-points span::before {
  content: "";
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(42, 159, 176, 0.12);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual img {
  width: 100%;
  filter: saturate(0.96);
}

.section {
  padding-block: 104px;
}

.intro-strip {
  padding-block: 66px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
  gap: 90px;
}

.intro-grid h2,
.section-heading h2,
.split-copy h2,
.security-grid h2,
.contact-card h2 {
  font-size: clamp(1.4rem, 4.2vw, 3.1rem);
  font-weight: 550;
}

.intro-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-soft {
  background: var(--surface);
}

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

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 335px;
  padding: 32px;
  border: 1px solid #e1eaeb;
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 10px 35px rgba(20, 59, 69, 0.045);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(215, 165, 95, 0.5);
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -48px;
  width: 140px;
  height: 140px;
  background: linear-gradient(145deg, var(--teal-pale), var(--amber-soft));
  transform: rotate(33deg);
}

.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(42, 159, 176, 0.45);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  border: 1px solid rgba(215, 165, 95, 0.45);
  display: grid;
  place-items: center;
  color: var(--amber-deep);
  background: linear-gradient(145deg, var(--amber-soft), #fff);
  font-size: 0.86rem;
  font-weight: 850;
  transform: rotate(45deg);
}

.feature-icon::first-line {
  transform: rotate(-45deg);
}

.feature-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.35rem;
}

.feature-card p {
  margin: 0 0 26px;
  color: var(--muted);
}

.card-link {
  position: relative;
  z-index: 1;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 750;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 88px;
}

.process-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.process-visual::before,
.process-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 180px;
  height: 180px;
  transform: rotate(32deg);
}

.process-visual::before {
  top: 8px;
  right: 0;
  background: linear-gradient(145deg, var(--amber), #ecc98f);
}

.process-visual::after {
  bottom: 0;
  left: 10px;
  background: var(--navy);
}

.process-window {
  width: min(100%, 560px);
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.process-top {
  height: 42px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #edf3f3;
}

.process-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b8c7ca;
}

.process-body {
  min-height: 330px;
  display: grid;
  grid-template-columns: 92px 1fr;
}

.process-side {
  background: var(--navy);
}

.process-main {
  padding: 30px;
  background: #fbfdfd;
}

.process-line {
  width: 42%;
  height: 10px;
  margin-bottom: 13px;
  border-radius: 5px;
  background: #d9e6e7;
}

.process-line-wide {
  width: 72%;
  height: 16px;
  background: rgba(215, 165, 95, 0.42);
}

.process-boxes {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.process-boxes b {
  height: 90px;
  border-radius: 9px;
  background: linear-gradient(145deg, #dceff1, #f5f9f9);
}

.process-chart {
  height: 96px;
  margin-top: 19px;
  border-radius: 9px;
  background:
    linear-gradient(135deg, transparent 0 14%, rgba(42, 159, 176, 0.54) 14% 17%, transparent 17% 34%, rgba(42, 159, 176, 0.64) 34% 37%, transparent 37% 56%, rgba(22, 63, 80, 0.5) 56% 59%, transparent 59%),
    #edf5f5;
}

.split-copy > h2 {
  margin-bottom: 34px;
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.steps-list li {
  position: relative;
  min-height: 76px;
  padding: 0 0 26px 64px;
  counter-increment: process;
}

.steps-list li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 2px;
  left: 21px;
  width: 1px;
  background: #cfe0e2;
}

.steps-list li::after {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--amber-deep);
  background: linear-gradient(145deg, var(--amber-soft), #fff);
  font-size: 0.75rem;
  font-weight: 850;
}

.steps-list strong,
.steps-list span {
  display: block;
}

.steps-list strong {
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 1.05rem;
}

.steps-list span {
  color: var(--muted);
}

.security-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.security-section::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -110px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(85, 188, 198, 0.25);
  transform: rotate(32deg);
}

.security-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.eyebrow-light {
  color: #74d1d7;
}

.security-grid h2 {
  color: var(--white);
}

.security-grid p {
  margin: 22px 0 0;
  color: #bdd0d5;
  font-size: 1.05rem;
}

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

.security-cards article {
  min-height: 140px;
  padding: 24px;
  border: 1px solid rgba(117, 204, 212, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.security-cards strong,
.security-cards span {
  display: block;
}

.security-cards strong {
  margin-bottom: 8px;
  color: #71d1d8;
  font-size: 1.05rem;
}

.security-cards span {
  color: #b9cdd2;
  font-size: 0.91rem;
}

.contact-section {
  background: linear-gradient(180deg, var(--white), #f7fafa);
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border: 1px solid #dbe7e8;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-card::before {
  content: "";
  position: absolute;
  bottom: -52px;
  left: -44px;
  width: 130px;
  height: 130px;
  background: rgba(215, 165, 95, 0.12);
  transform: rotate(32deg);
}

.contact-card::after {
  content: "";
  position: absolute;
  top: -74px;
  right: -88px;
  width: 190px;
  height: 190px;
  background: rgba(42, 159, 176, 0.1);
  transform: rotate(32deg);
}

.contact-card p {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
}

.contact-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer {
  padding-top: 64px;
  color: #a8bec4;
  background: #062833;
}

.footer-grid {
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 0.8fr;
  gap: 70px;
}

.footer-brand img {
  width: min(100%, 370px);
  padding: 10px 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff, #fffaf2);
}

.footer-brand p {
  max-width: 450px;
  margin: 22px 0 0;
}

.footer-grid h3 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  transition: color 160ms ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #68c9d0;
}

.footer-bottom {
  min-height: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 0.82rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 29, 36, 0.76);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
  padding: 38px;
  border-radius: 17px;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  animation: modal-in 180ms ease-out;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: var(--teal-pale);
  font-size: 1.55rem;
  line-height: 1;
}

.login-brand {
  margin-bottom: 24px;
}

.login-brand img {
  width: 260px;
}

.modal-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 2rem;
}

.modal-card > p {
  margin: 10px 0 25px;
  color: var(--muted);
}

.modal-card label {
  display: block;
  margin: 15px 0 7px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 750;
}

.modal-card input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #cfdfe1;
  border-radius: 8px;
  outline: none;
  color: var(--ink);
  background: #fbfdfd;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.modal-card input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(42, 159, 176, 0.12);
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 80px;
}

.password-field button {
  position: absolute;
  top: 0;
  right: 0;
  height: 48px;
  padding: 0 13px;
  border: 0;
  color: var(--teal);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 750;
}

.form-message {
  min-height: 24px;
  margin: 12px 0;
  color: var(--danger);
  font-size: 0.86rem;
}

.form-message.success {
  color: var(--success);
}

.legal-page {
  background: var(--surface);
}

.legal-main {
  min-height: calc(100vh - 180px);
}

.legal-card {
  max-width: 900px;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.legal-card h1 {
  font-size: clamp(1.4rem, 4.05vw, 3.4375rem);
}

.legal-date {
  margin: 14px 0 42px;
  color: var(--muted);
}

.legal-card h2 {
  margin: 32px 0 8px;
  color: var(--navy);
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.legal-card p {
  margin: 0;
  color: #586b72;
}

.legal-card a {
  color: var(--teal);
  font-weight: 700;
}

.compact-footer {
  padding-top: 0;
}

.error-page {
  min-height: 100vh;
  padding: 30px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #eef7f7, #fff);
}

.error-card {
  width: min(100%, 610px);
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow);
}

.error-card img {
  width: 270px;
  margin: 0 auto 34px;
}

.error-card h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.error-card p {
  margin: 17px 0 28px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-short {
  transition-delay: 100ms;
}

.reveal-delay {
  transition-delay: 190ms;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1060px) {
  .brand img { width: 300px; }
  .main-nav { gap: 16px; }
  .hero-content {
    grid-template-columns: 0.92fr 1.08fr;
  }
  .hero h1 { font-size: clamp(1.325rem, 2.7vw, 2.2rem); }
  .split-layout { gap: 54px; }
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 12px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    background: var(--white);
    box-shadow: var(--shadow-soft);
  }
  .main-nav.is-open { display: flex; }
  .main-nav > a { padding: 6px 0; }
  .main-nav .button { width: 100%; }
  .hero { min-height: auto; }
  .hero-content {
    grid-template-columns: 1fr;
    padding-block: 70px 45px;
  }
  .hero-copy { max-width: 720px; }
  .hero-visual {
    width: min(100%, 720px);
    margin-inline: auto;
  }
  .intro-grid,
  .split-layout,
  .security-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .intro-grid { gap: 28px; }
  .cards-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .split-layout { gap: 62px; }
  .security-grid { gap: 48px; }
  .contact-actions {
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .process-visual-image {
    min-height: auto;
  }
  .process-visual-image img {
    width: min(100%, 640px);
  }

}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 248px; }
  .hero-content { padding-top: 55px; }
  .hero h1 { font-size: 1.375rem; }
  .hero-copy > p { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .section { padding-block: 76px; }
  .intro-strip { padding-block: 50px; }
  .intro-grid h2,
  .section-heading h2,
  .split-copy h2,
  .security-grid h2,
  .contact-card h2 { font-size: 2.2rem; }
  .process-visual { min-height: 390px; }
  .process-window { border-width: 7px; }
  .process-body { grid-template-columns: 65px 1fr; min-height: 260px; }
  .process-main { padding: 20px; }
  .process-boxes b { height: 65px; }
  .security-cards { grid-template-columns: 1fr; }
  .contact-card { padding: 34px 25px; }
  .contact-actions { width: 100%; }
  .contact-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom {
    padding-block: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .modal-card { padding: 32px 22px 25px; }
  .login-brand img { width: 225px; }
  .legal-card { padding: 36px 23px; }
  .error-card { padding: 42px 22px; }
}


.process-visual-image {
  min-height: 500px;
  display: grid;
  place-items: center;
}

.process-visual-image::before,
.process-visual-image::after {
  display: none;
}

.process-visual-image img {
  width: min(100%, 590px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(22, 63, 80, 0.08));
}