:root {
  --bg: #f7f2e8;
  --surface: #fffdf8;
  --surface-green: #e6f0e9;
  --surface-gold: #f1e8d7;
  --text: #24342e;
  --text-soft: #58645d;
  --primary: #2f684f;
  --primary-dark: #1f4938;
  --primary-soft: #dceade;
  --accent: #a77b3e;
  --border: #d8d1c4;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(48, 61, 53, 0.1);
  --shadow-active: 0 24px 64px rgba(39, 86, 65, 0.17);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: 20px;
  line-height: 1.7;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

button {
  font: inherit;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.04em;
}

::selection {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

:focus-visible {
  outline: 3px solid rgba(47, 104, 79, 0.38);
  outline-offset: 4px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 16px;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--primary-dark);
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.portal-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(149, 136, 113, 0.22);
  background: rgba(255, 253, 248, 0.82);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 54px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50% 50% 50% 15px;
  background: var(--primary);
  color: var(--white);
  transform: rotate(-4deg);
}

.brand-mark svg,
.nonprofit-badge svg,
.trust-icon svg,
.service-button svg,
.service-facts svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.brand-mark svg {
  width: 26px;
  height: 26px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 23px;
  letter-spacing: -0.04em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 650;
}

.nonprofit-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  margin: 0;
  padding: 8px 16px;
  border: 1px solid #c7d7ca;
  border-radius: 999px;
  background: #edf5ef;
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 650;
}

.nonprofit-badge svg {
  width: 21px;
  height: 21px;
}

.portal-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 88px;
}

.portal-hero::before,
.portal-hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.portal-hero::before {
  top: -290px;
  left: -210px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(47, 104, 79, 0.12);
  box-shadow: inset 0 0 0 76px rgba(220, 234, 222, 0.22);
}

.portal-hero::after {
  right: -190px;
  bottom: 80px;
  width: 420px;
  height: 420px;
  background: rgba(234, 219, 191, 0.22);
}

.portal-hero > .container {
  position: relative;
  z-index: 1;
}

.hero-heading {
  max-width: 960px;
  margin: 0 auto 48px;
  text-align: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: rgba(47, 104, 79, 0.5);
}

.hero-heading h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 5.1vw, 66px);
  line-height: 1.2;
}

.hero-summary {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 21px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 62px;
  gap: 9px;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 17px;
  font-size: 19px;
  font-weight: 850;
  line-height: 1.3;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.hero-button svg,
.activity-icon svg,
.principles-title > svg,
.operating-principles li svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.hero-button svg {
  width: 23px;
  height: 23px;
}

.hero-button-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(47, 104, 79, 0.23);
}

.hero-button-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 15px 32px rgba(47, 104, 79, 0.28);
  transform: translateY(-2px);
}

.hero-button-secondary {
  border-color: #afc2b4;
  background: rgba(255, 253, 248, 0.82);
  color: var(--primary-dark);
}

.hero-button-secondary:hover {
  border-color: var(--primary);
  background: var(--white);
  transform: translateY(-2px);
}

.about-section {
  scroll-margin-top: 20px;
  padding: 48px;
  border: 1px solid rgba(158, 143, 118, 0.25);
  border-radius: 32px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 24px 70px rgba(51, 68, 58, 0.11);
}

.about-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 48px;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 16px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.about-copy h2 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: clamp(34px, 3.7vw, 46px);
  line-height: 1.28;
}

.about-copy > p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.78;
}

.mission-card {
  position: relative;
  min-height: 245px;
  margin: 0;
  overflow: hidden;
  padding: 31px;
  border-radius: 26px;
  background: linear-gradient(145deg, #1f4938, #315f4d);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(31, 73, 56, 0.22);
}

.mission-card::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 30px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.mission-card span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 14px;
  color: #d9eadf;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.mission-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.mission-card footer {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 700;
}

.about-activities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.activity-card {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 18px;
  padding: 25px;
  border: 1px solid #ded8cc;
  border-radius: 22px;
  background: #fbf8f1;
}

.activity-icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 17px;
  background: var(--primary-soft);
  color: var(--primary);
}

.activity-icon svg {
  width: 29px;
  height: 29px;
}

.activity-number {
  display: block;
  margin-bottom: 3px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.activity-card h3 {
  margin-bottom: 7px;
  font-size: 22px;
  line-height: 1.35;
}

.activity-card p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.68;
}

.operating-principles {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 30px;
  margin-top: 22px;
  padding: 27px 29px;
  border: 1px solid #cbd9cd;
  border-radius: 23px;
  background: #edf5ef;
}

.principles-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.principles-title > svg {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  padding: 10px;
  border-radius: 15px;
  background: var(--primary);
  color: var(--white);
}

.principles-title span {
  display: block;
  margin-bottom: 2px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.05em;
}

.principles-title strong {
  display: block;
  color: var(--primary-dark);
  font-size: 19px;
  line-height: 1.45;
}

.operating-principles ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 18px;
  margin: 0;
  padding: 0;
  color: #3e5549;
  font-size: 15px;
  font-weight: 750;
  list-style: none;
}

.operating-principles li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.operating-principles li svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--primary);
}

.services-section {
  margin-top: 76px;
  scroll-margin-top: 20px;
}

.section-intro {
  margin-bottom: 25px;
  text-align: center;
}

.section-intro h2 {
  margin-bottom: 7px;
  font-size: 29px;
  line-height: 1.35;
}

.section-intro p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 18px;
}

.section-intro .section-kicker {
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 15px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.service-card {
  display: flex;
  overflow: hidden;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-card-available {
  border: 2px solid #7fa58d;
  box-shadow: var(--shadow-active);
  transform: translateY(-6px);
}

.service-card-fortune {
  border-color: #a9808d;
  box-shadow: 0 24px 64px rgba(108, 58, 75, 0.14);
}

.service-card-fortune .placeholder-gold {
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 253, 248, 0.82) 0 27%, transparent 28%),
    linear-gradient(145deg, #f4e9e5, #e7d1d2);
  color: #7b4054;
}

.fortune-visual::before {
  position: absolute;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(123, 64, 84, 0.17);
  border-radius: 31px;
  content: "";
  transform: rotate(45deg);
}

.fortune-visual .ring-one {
  width: 225px;
  height: 225px;
  border-style: dashed;
  opacity: 0.12;
}

.fortune-visual .ring-two {
  width: 170px;
  height: 170px;
  opacity: 0.12;
}

.fortune-chart {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #6d374b;
  text-align: center;
}

.fortune-chart > strong {
  margin-bottom: 7px;
  font-family: "Batang", "Noto Serif KR", serif;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-indent: 0.18em;
}

.fortune-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.fortune-pillars b {
  display: grid;
  width: 31px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(123, 64, 84, 0.34);
  border-radius: 9px;
  background: rgba(255, 253, 248, 0.88);
  font-family: "Batang", "Noto Serif KR", serif;
  font-size: 17px;
  line-height: 1;
  box-shadow: 0 5px 12px rgba(91, 48, 64, 0.07);
}

.fortune-chart small {
  margin-top: 7px;
  color: #765665;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.service-card-fortune .status-available {
  background: #f2e5e9;
  color: #71394d;
}

.service-card-fortune .status-available span {
  background: #884d61;
  box-shadow: 0 0 0 4px rgba(136, 77, 97, 0.12);
}

.service-card-fortune .service-facts {
  color: #694552;
}

.service-card-fortune .service-facts svg {
  color: #7b4054;
}

.service-card-fortune .service-button-primary {
  background: #7b4054;
  box-shadow: 0 10px 24px rgba(123, 64, 84, 0.23);
}

.service-card-fortune .service-button-primary:hover {
  background: #633244;
  box-shadow: 0 13px 28px rgba(123, 64, 84, 0.29);
}

.service-visual {
  position: relative;
  height: 198px;
  overflow: hidden;
}

.service-visual-photo picture,
.service-visual-photo img {
  width: 100%;
  height: 100%;
}

.service-visual-photo img {
  object-fit: cover;
  object-position: center 40%;
  transition: transform 420ms ease;
}

.service-card-available:hover .service-visual-photo img {
  transform: scale(1.035);
}

.service-visual-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(22, 51, 39, 0.28));
  content: "";
}

.visual-icon {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--primary);
  box-shadow: 0 9px 26px rgba(34, 55, 45, 0.18);
}

.visual-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-visual-placeholder {
  display: grid;
  place-items: center;
}

.placeholder-gold {
  background: linear-gradient(145deg, #f3ebdc, #e8d8ba);
  color: #8b6b3d;
}

.placeholder-green {
  background: linear-gradient(145deg, #eaf2eb, #cedfd2);
  color: #416b54;
}

.placeholder-ring {
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.16;
}

.ring-one {
  width: 190px;
  height: 190px;
}

.ring-two {
  width: 125px;
  height: 125px;
}

.visual-icon-large {
  position: relative;
  right: auto;
  bottom: auto;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.68);
  box-shadow: none;
  color: inherit;
}

.visual-icon-large svg {
  width: 34px;
  height: 34px;
}

.service-card-body {
  display: flex;
  min-height: 405px;
  flex: 1;
  flex-direction: column;
  padding: 27px 26px 26px;
}

.service-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 17px;
}

.service-number {
  color: var(--accent);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.status {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 34px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.status-available {
  gap: 7px;
  background: #e2efe5;
  color: #255940;
}

.status-available span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #39815f;
  box-shadow: 0 0 0 4px rgba(57, 129, 95, 0.12);
}

.status-coming {
  background: #eeeae2;
  color: #5c625e;
}

.service-card h3 {
  margin-bottom: 13px;
  font-size: 31px;
  line-height: 1.25;
}

.service-description {
  margin-bottom: 21px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.72;
}

.service-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 24px;
  padding: 0;
  color: #395648;
  font-size: 15px;
  font-weight: 750;
  list-style: none;
}

.service-facts li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-facts svg {
  width: 17px;
  height: 17px;
  color: var(--primary);
}

.coming-space {
  flex: 1;
  min-height: 45px;
}

.service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 62px;
  margin-top: auto;
  padding: 13px 18px;
  border: 2px solid transparent;
  border-radius: 16px;
  font-size: 19px;
  font-weight: 850;
  line-height: 1.3;
  text-align: center;
}

.service-button-primary {
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(47, 104, 79, 0.23);
  transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.service-button-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 13px 28px rgba(47, 104, 79, 0.29);
  transform: translateY(-2px);
}

.service-button-primary svg {
  width: 23px;
  height: 23px;
  transition: transform 160ms ease;
}

.service-button-primary:hover svg {
  transform: translateX(4px);
}

.service-button-disabled {
  border-color: #d9d5cd;
  background: #e9e6df;
  color: #606762;
  cursor: not-allowed;
}

.trust-panel {
  display: flex;
  align-items: center;
  max-width: 790px;
  gap: 20px;
  margin: 48px auto 0;
  padding: 23px 28px;
  border: 1px solid #cbd9cd;
  border-radius: 20px;
  background: rgba(237, 245, 239, 0.88);
}

.trust-icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 18px;
  background: var(--primary);
  color: var(--white);
}

.trust-icon svg {
  width: 30px;
  height: 30px;
}

.trust-panel strong {
  display: block;
  margin-bottom: 2px;
  color: var(--primary-dark);
  font-size: 20px;
}

.trust-panel p {
  margin-bottom: 0;
  color: #4c6055;
  font-size: 16px;
  line-height: 1.6;
}

.portal-footer {
  border-top: 1px solid rgba(149, 136, 113, 0.24);
  background: #efe8db;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
  color: #5b645f;
  font-size: 15px;
}

.footer-inner strong {
  color: var(--primary-dark);
  font-size: 17px;
}

@media (max-width: 1020px) {
  .about-heading,
  .operating-principles {
    grid-template-columns: 1fr;
  }

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

  .service-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
  }

  .service-card,
  .service-card-available {
    display: grid;
    grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
    transform: none;
  }

  .service-visual {
    height: 100%;
    min-height: 380px;
  }

  .service-card-body {
    min-height: 380px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 19px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

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

  .brand-mark {
    width: 43px;
    height: 43px;
  }

  .brand-mark svg {
    width: 23px;
    height: 23px;
  }

  .brand-copy strong {
    font-size: 21px;
  }

  .brand-copy small,
  .nonprofit-badge span {
    display: none;
  }

  .nonprofit-badge {
    display: grid;
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    place-items: center;
  }

  .nonprofit-badge svg {
    width: 23px;
    height: 23px;
  }

  .portal-hero {
    padding: 50px 0 62px;
  }

  .portal-hero::before {
    top: -320px;
    left: -330px;
  }

  .portal-hero::after {
    display: none;
  }

  .hero-heading {
    margin-bottom: 43px;
  }

  .eyebrow {
    margin-bottom: 15px;
    font-size: 15px;
  }

  .eyebrow span {
    width: 20px;
  }

  .hero-heading h1 {
    margin-bottom: 18px;
    font-size: clamp(37px, 10.5vw, 46px);
    line-height: 1.28;
  }

  .hero-summary {
    font-size: 19px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 25px;
  }

  .hero-button {
    width: 100%;
    min-width: 0;
    min-height: 61px;
    font-size: 19px;
  }

  .about-section {
    padding: 28px 21px;
    border-radius: 25px;
  }

  .about-heading {
    gap: 25px;
  }

  .about-copy h2 {
    margin-bottom: 14px;
    font-size: 31px;
  }

  .about-copy > p:last-child {
    font-size: 18px;
  }

  .mission-card {
    padding: 25px 23px;
    border-radius: 21px;
  }

  .mission-card p {
    font-size: 22px;
  }

  .about-activities {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .activity-card {
    gap: 14px;
    padding: 21px 18px;
  }

  .activity-icon {
    width: 49px;
    height: 49px;
    border-radius: 15px;
  }

  .activity-card h3 {
    font-size: 21px;
  }

  .activity-card p {
    font-size: 16px;
  }

  .operating-principles {
    gap: 20px;
    padding: 23px 20px;
  }

  .principles-title {
    align-items: flex-start;
  }

  .principles-title strong {
    font-size: 18px;
  }

  .operating-principles ul {
    grid-template-columns: 1fr;
    font-size: 15px;
  }

  .services-section {
    margin-top: 56px;
  }

  .desktop-break {
    display: none;
  }

  .section-intro {
    margin-bottom: 22px;
    text-align: left;
  }

  .section-intro h2 {
    font-size: 27px;
  }

  .section-intro p {
    font-size: 17px;
  }

  .service-grid {
    gap: 20px;
  }

  .service-card,
  .service-card-available {
    display: flex;
    grid-template-columns: none;
  }

  .service-visual {
    height: 188px;
    min-height: 0;
  }

  .service-card-body {
    min-height: 0;
    padding: 24px 22px 22px;
  }

  .service-card-topline {
    align-items: flex-start;
    margin-bottom: 15px;
  }

  .service-number {
    padding-top: 6px;
    font-size: 14px;
  }

  .status {
    min-height: 32px;
    font-size: 13px;
  }

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

  .service-description {
    font-size: 18px;
  }

  .service-facts {
    margin-bottom: 23px;
  }

  .coming-space {
    min-height: 18px;
  }

  .service-button {
    min-height: 62px;
    font-size: 20px;
  }

  .trust-panel {
    align-items: flex-start;
    gap: 14px;
    margin-top: 34px;
    padding: 20px;
  }

  .trust-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .trust-icon svg {
    width: 26px;
    height: 26px;
  }

  .trust-panel strong {
    font-size: 18px;
  }

  .trust-panel p {
    font-size: 15px;
  }

  .footer-inner {
    align-items: flex-start;
    min-height: 110px;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .hero-heading h1 {
    font-size: 36px;
  }

  .service-card-body {
    padding-inline: 19px;
  }

  .service-card-topline {
    flex-direction: column;
    gap: 7px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.portal-footer .footer-inner {
  flex-wrap: wrap;
}

.portal-footer .footer-legal {
  flex-basis: 100%;
  margin-top: -12px;
  font-size: 13px;
}
