
    :root {
      --blue-900: #062746;
      --blue-800: #08365f;
      --blue-700: #075e9c;
      --blue-600: #0879c7;
      --blue-500: #1395e8;
      --blue-100: #eaf6ff;
      --ink: #122033;
      --muted: #627086;
      --line: rgba(255, 255, 255, 0.22);
      --soft-line: #dce8f3;
      --white: #fff;
      --shadow: 0 24px 70px rgba(5, 36, 67, 0.18);
      --max: 1180px;
      --radius: 8px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
      color: var(--ink);
      background: #f7fbff;
      letter-spacing: 0;
    }

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

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

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 50;
      height: 78px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      color: #fff;
      transition: background 0.25s ease, color 0.25s ease, height 0.25s ease, box-shadow 0.25s ease;
    }

    .site-header.is-scrolled,
    .site-header.menu-open {
      height: 68px;
      color: var(--ink);
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 10px 34px rgba(8, 44, 76, 0.1);
      backdrop-filter: blur(14px);
    }

    .header-inner {
      width: min(100% - 48px, var(--max));
      height: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .logo {
      display: inline-flex;
      flex-direction: column;
      justify-content: center;
      min-width: 190px;
      line-height: 1;
      font-weight: 900;
    }

    .logo .mark {
      color: var(--blue-500);
      font-size: 24px;
      letter-spacing: 0;
    }

    .site-header:not(.is-scrolled):not(.menu-open) .logo .mark {
      color: #fff;
    }

    .logo .name {
      margin-top: 5px;
      font-size: 13px;
      font-weight: 700;
      opacity: 0.9;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 34px;
      font-size: 15px;
      font-weight: 700;
    }

    .nav a {
      position: relative;
      padding: 28px 0;
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 20px;
      width: 0;
      height: 2px;
      background: currentColor;
      transition: width 0.2s ease;
    }

    .nav a:hover::after,
    .nav a:focus-visible::after {
      width: 100%;
    }
    .nav .nav-item {
      position: relative;
    }
    .nav .nav-item > a {
      display: inline-flex;
      align-items: center;
    }
    .nav .sub-menu {
      position: absolute;
      left: 50%;
      top: calc(100% - 14px);
      z-index: 90;
      min-width: 190px;
      padding: 12px;
      display: grid;
      gap: 4px;
      border: 1px solid rgba(226, 235, 244, 0.9);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.97);
      box-shadow: 0 18px 42px rgba(5, 42, 73, 0.14);
      transform: translate(-50%, 12px);
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s ease, transform .2s ease;
    }
    .nav .nav-item:hover .sub-menu,
    .nav .nav-item:focus-within .sub-menu {
      opacity: 1;
      transform: translate(-50%, 0);
      pointer-events: auto;
    }
    .nav .sub-menu a {
      padding: 10px 12px;
      border: 0;
      border-radius: 10px;
      color: #29475f;
      white-space: nowrap;
      font-size: 13px;
    }
    .nav .sub-menu a:hover {
      background: #eef6ff;
    }
    .nav .sub-menu a::after {
      display: none;
    }

    .mobile-panel {
      position: fixed;
      top: 84px;
      left: 24px;
      right: 24px;
      z-index: 49;
      display: none;
      padding: 20px;
      color: var(--ink);
      background: rgba(255,255,255,.98);
      border: 1px solid var(--soft-line);
      border-radius: 18px;
      box-shadow: var(--shadow);
      opacity: 0;
      transform: translateY(-14px);
      pointer-events: none;
      transition: .22s ease;
    }

    .site-header.menu-open ~ .mobile-panel {
      display: block;
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .mobile-panel a {
      display: flex;
      justify-content: space-between;
      padding: 15px 4px;
      border-bottom: 1px solid var(--soft-line);
      font-size: 18px;
      font-weight: 900;
    }

    .mobile-panel a:last-child {
      border-bottom: 0;
    }

    .mobile-panel a::after {
      content: "→";
      color: var(--blue-600);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      white-space: nowrap;
    }

    .tel-chip {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 14px;
      border: 1px solid currentColor;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      opacity: 0.92;
    }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 0;
      color: inherit;
      background: transparent;
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      margin: 6px auto;
      background: currentColor;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .menu-open .menu-toggle span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .menu-open .menu-toggle span:nth-child(2) {
      opacity: 0;
    }

    .menu-open .menu-toggle span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
      min-height: 100vh;
      position: relative;
      display: grid;
      align-items: center;
      overflow: hidden;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(2, 25, 48, 0.82) 0%, rgba(4, 43, 77, 0.54) 44%, rgba(4, 33, 61, 0.18) 100%),
        url("../images/visual-06.png") center / cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 170px;
      background: linear-gradient(180deg, rgba(247, 251, 255, 0), #f7fbff);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: min(100% - 48px, var(--max));
      margin: 0 auto;
      padding-top: 78px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 22px;
      color: #aee0ff;
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 44px;
      height: 2px;
      background: currentColor;
    }

    .hero h1 {
      max-width: 760px;
      margin: 0;
      font-size: clamp(42px, 6vw, 76px);
      line-height: 1.08;
      font-weight: 900;
    }

    .hero p {
      max-width: 620px;
      margin: 26px 0 0;
      color: rgba(255, 255, 255, 0.84);
      font-size: 18px;
      line-height: 1.8;
      font-weight: 500;
    }

    .hero-cta {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 42px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 24px;
      border: 1px solid transparent;
      border-radius: 2px;
      cursor: pointer;
      font-weight: 900;
      transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
    }

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

    .btn-primary {
      color: #fff;
      background: var(--blue-600);
      box-shadow: 0 12px 28px rgba(8, 121, 199, 0.28);
    }

    .btn-ghost {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.55);
      background: rgba(255, 255, 255, 0.08);
    }

    .quick-nav {
      position: absolute;
      z-index: 2;
      right: max(24px, calc((100vw - var(--max)) / 2 - 86px));
      top: 50%;
      display: grid;
      gap: 10px;
      transform: translateY(-50%);
    }

    .quick-nav a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 106px;
      height: 30px;
      border: 1px solid rgba(255, 255, 255, 0.55);
      border-radius: 999px;
      color: var(--blue-900);
      background: rgba(255, 255, 255, 0.86);
      font-size: 12px;
      font-weight: 900;
      backdrop-filter: blur(10px);
    }

    .scroll-cue {
      position: absolute;
      z-index: 2;
      right: max(28px, calc((100vw - var(--max)) / 2));
      bottom: 56px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 12px;
      writing-mode: vertical-rl;
    }

    .section {
      position: relative;
      padding: 118px 0;
    }

    .container {
      width: min(100% - 48px, var(--max));
      margin: 0 auto;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(220px, 0.68fr) 1fr;
      gap: 42px;
      align-items: end;
      margin-bottom: 44px;
    }

    .section-kicker {
      color: var(--blue-600);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .section-title {
      margin: 12px 0 0;
      font-size: clamp(30px, 3.4vw, 48px);
      line-height: 1.18;
      font-weight: 900;
      color: var(--blue-900);
    }

    .section-copy {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.85;
    }

    .business {
      margin-top: -84px;
      padding-top: 0;
      z-index: 3;
    }

    .business-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      box-shadow: var(--shadow);
    }

    .business-card {
      min-height: 270px;
      padding: 34px 30px;
      color: #fff;
      background:
        linear-gradient(180deg, rgba(3, 31, 58, 0.5), rgba(3, 31, 58, 0.88)),
        var(--image) center / cover no-repeat;
      border-right: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      transition: transform 0.2s ease, filter 0.2s ease;
    }

    .business-card:first-child {
      background: var(--blue-600);
    }

    .business-card:hover {
      transform: translateY(-8px);
      filter: saturate(1.08);
    }

    .business-card .num {
      margin-bottom: auto;
      color: rgba(255, 255, 255, 0.74);
      font-weight: 900;
    }

    .business-card h3 {
      margin: 34px 0 13px;
      font-size: 23px;
      line-height: 1.28;
    }

    .business-card p {
      margin: 0;
      color: rgba(255, 255, 255, 0.78);
      font-size: 14px;
      line-height: 1.65;
    }

    .business-card span:last-child {
      margin-top: 24px;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0;
    }

    .infra {
      background:
        linear-gradient(180deg, #f7fbff 0%, #fff 100%);
    }

    .infra-layout {
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      gap: 28px;
      align-items: stretch;
    }

    .infra-visual {
      min-height: 520px;
      color: #fff;
      background:
        linear-gradient(180deg, rgba(2, 27, 50, 0.12), rgba(2, 27, 50, 0.82)),
        url("../images/visual-02.png") center / cover no-repeat;
      display: flex;
      align-items: flex-end;
      padding: 42px;
    }

    .infra-visual h3 {
      margin: 0;
      max-width: 360px;
      font-size: 32px;
      line-height: 1.22;
    }

    .center-list {
      display: grid;
      gap: 18px;
    }

    .center-card {
      display: grid;
      grid-template-columns: 160px 1fr;
      min-height: 242px;
      background: #fff;
      border: 1px solid var(--soft-line);
      box-shadow: 0 18px 44px rgba(5, 42, 73, 0.08);
    }

    .center-thumb {
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }

    .center-body {
      padding: 30px;
    }

    .center-body small {
      color: var(--blue-600);
      font-weight: 900;
    }

    .center-body h3 {
      margin: 10px 0 12px;
      color: var(--blue-900);
      font-size: 26px;
    }

    .center-body p {
      margin: 0;
      color: var(--muted);
      line-height: 1.72;
    }

    .stats {
      color: #fff;
      background:
        linear-gradient(90deg, rgba(4, 28, 51, 0.9), rgba(4, 46, 79, 0.64)),
        url("../images/visual-23.png") center / cover no-repeat;
    }

    .stats .section-title,
    .stats .section-copy {
      color: #fff;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }

    .stat-item {
      min-height: 190px;
      padding: 28px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(8px);
    }

    .stat-item strong {
      display: block;
      margin-bottom: 18px;
      color: #77ceff;
      font-size: 38px;
      line-height: 1;
      font-weight: 900;
    }

    .stat-item span {
      display: block;
      font-size: 18px;
      font-weight: 900;
    }

    .stat-item p {
      margin: 12px 0 0;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.65;
      font-size: 14px;
    }

    .process {
      background: #fff;
    }

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

    .process-card {
      position: relative;
      min-height: 360px;
      padding: 32px;
      color: #fff;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(4, 35, 63, 0.18), rgba(4, 35, 63, 0.86)),
        var(--image) center / cover no-repeat;
    }

    .process-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border: 1px solid rgba(255, 255, 255, 0.18);
      pointer-events: none;
    }

    .process-card .step {
      color: #aee0ff;
      font-size: 18px;
      font-weight: 900;
    }

    .process-card h3 {
      position: absolute;
      left: 32px;
      right: 32px;
      bottom: 96px;
      margin: 0;
      font-size: 28px;
    }

    .process-card p {
      position: absolute;
      left: 32px;
      right: 32px;
      bottom: 32px;
      margin: 0;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.65;
      font-size: 14px;
    }

    .contact {
      background:
        radial-gradient(circle at 18% 20%, rgba(19, 149, 232, 0.08), transparent 34%),
        #f4f9fe;
    }

    .contact-layout {
      display: grid;
      grid-template-columns: 0.86fr 1.14fr;
      gap: 36px;
      align-items: stretch;
    }

    .contact-info {
      padding: 46px;
      color: #fff;
      background:
        linear-gradient(180deg, rgba(4, 34, 62, 0.34), rgba(4, 34, 62, 0.9)),
        url("../images/visual-25.png") center / cover no-repeat;
      box-shadow: var(--shadow);
    }

    .contact-info h2 {
      margin: 0;
      font-size: 36px;
      line-height: 1.24;
    }

    .contact-info p {
      margin: 22px 0 36px;
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.75;
    }

    .info-list {
      display: grid;
      gap: 16px;
    }

    .info-list div {
      padding-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.24);
    }

    .info-list dt {
      color: #8fd6ff;
      font-weight: 900;
      font-size: 13px;
    }

    .info-list dd {
      margin: 8px 0 0;
      font-weight: 800;
      line-height: 1.6;
    }

    .contact-form {
      padding: 42px;
      background: #fff;
      border: 1px solid var(--soft-line);
      box-shadow: 0 22px 56px rgba(5, 42, 73, 0.1);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .field {
      display: grid;
      gap: 8px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    .field label {
      color: var(--blue-900);
      font-size: 14px;
      font-weight: 900;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      min-height: 50px;
      padding: 0 15px;
      border: 1px solid #cfdceb;
      border-radius: 2px;
      color: var(--ink);
      background: #fbfdff;
      outline: none;
    }

    .field textarea {
      min-height: 132px;
      padding-top: 14px;
      resize: vertical;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: var(--blue-600);
      box-shadow: 0 0 0 3px rgba(8, 121, 199, 0.12);
    }

    .form-note {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
    }

    .form-message {
      display: none;
      margin: 18px 0 0;
      padding: 14px 16px;
      color: var(--blue-900);
      background: var(--blue-100);
      border-left: 3px solid var(--blue-600);
      font-weight: 800;
    }

    .form-message.is-visible {
      display: block;
    }

    .site-footer {
      padding: 54px 0;
      color: rgba(255, 255, 255, 0.76);
      background: #05243e;
    }

    .footer-inner {
      width: min(100% - 48px, var(--max));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 34px;
      align-items: start;
    }

    .footer-logo {
      color: #fff;
      font-weight: 900;
      line-height: 1.2;
    }

    .footer-logo strong {
      display: block;
      color: #69c7ff;
      font-size: 24px;
    }

    .footer-info {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 22px;
      margin: 0;
      font-size: 14px;
      line-height: 1.7;
    }

    .footer-info .info-pair {
      display: inline-flex;
      align-items: baseline;
      gap: 8px;
      white-space: nowrap;
    }

    .footer-info dt {
      color: #fff;
      font-weight: 900;
    }

    .footer-info dd {
      margin: 0;
    }

    .copyright {
      grid-column: 2;
      margin: 8px 0 0;
      color: rgba(255, 255, 255, 0.42);
      font-size: 12px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1100px) {
      .nav {
        gap: 20px;
      }

      .quick-nav {
        display: none;
      }

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

    @media (max-width: 860px) {
      .header-inner {
        width: min(100% - 32px, var(--max));
      }

      .menu-toggle {
        display: block;
      }

      .tel-chip {
        display: none;
      }

      .nav {
        position: fixed;
        left: 0;
        right: 0;
        top: 68px;
        display: grid;
        gap: 0;
        padding: 10px 24px 24px;
        color: var(--ink);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 24px 34px rgba(8, 44, 76, 0.12);
        transform: translateY(-130%);
        transition: transform 0.24s ease;
      }

      .menu-open .nav {
        transform: translateY(0);
      }

      .nav a {
        padding: 18px 0;
        border-bottom: 1px solid #edf3f8;
      }
      .nav .nav-item {
        display: grid;
        padding: 0;
        border-bottom: 1px solid #edf3f8;
      }
      .nav .nav-item > a {
        padding: 18px 0;
        border-bottom: 0;
      }
      .nav .sub-menu {
        position: static;
        min-width: 0;
        padding: 0 0 14px 16px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
      }
      .nav .sub-menu a {
        padding: 8px 0;
        color: #60778b;
        font-size: 13px;
      }

      .nav a::after {
        display: none;
      }

      .hero-inner,
      .container,
      .footer-inner {
        width: min(100% - 32px, var(--max));
      }

      .hero {
        min-height: 760px;
      }

      .hero p {
        font-size: 16px;
      }

      .section {
        padding: 82px 0;
      }

      .business {
        margin-top: -54px;
      }

      .section-head,
      .infra-layout,
      .contact-layout,
      .footer-inner {
        grid-template-columns: 1fr;
      }

      .infra-visual {
        min-height: 360px;
      }

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

      .copyright {
        grid-column: auto;
      }
    }

    body,
    h1,
    h2,
    h3,
    h4,
    p,
    a,
    span,
    dt,
    dd,
    li,
    button,
    label,
    input,
    textarea,
    select {
      word-break: keep-all;
      overflow-wrap: normal;
    }

    .logo.logo-image {
      min-width: 188px;
      padding: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    .logo.logo-image img {
      width: 188px;
      height: auto;
      display: block;
      transition: filter 0.25s ease, opacity 0.25s ease;
    }

    .site-header:not(.is-scrolled):not(.menu-open) .logo.logo-image img {
      filter: brightness(0) invert(1);
    }

    .site-header.is-scrolled .logo.logo-image,
    .site-header.menu-open .logo.logo-image {
      background: transparent;
      box-shadow: none;
    }

    .footer-logo img {
      width: 220px;
      max-width: 100%;
      height: auto;
      display: block;
      padding: 10px 14px;
      border-radius: 16px;
      background: #fff;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    }

    @media (max-width: 620px) {
      .logo {
        min-width: auto;
      }

      .logo.logo-image img {
        width: 150px;
      }

      .logo .mark {
        font-size: 20px;
      }

      .logo .name {
        font-size: 12px;
      }

      .hero {
        min-height: 700px;
        background-position: 62% center;
      }

      .hero h1 {
        font-size: 40px;
      }

      .hero-cta {
        align-items: stretch;
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .business-grid,
      .stats-grid {
        grid-template-columns: 1fr;
      }

      .business-card {
        min-height: 230px;
      }

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

      .center-thumb {
        min-height: 190px;
      }

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

      .contact-form,
      .contact-info {
        padding: 28px;
      }

      .section-title {
        font-size: 32px;
      }
    }

  
    /* final footer layout override */

    .footer-info {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 22px;
      margin: 0;
      font-size: 14px;
      line-height: 1.7;
    }

    .footer-info .info-pair {
      display: inline-flex;
      align-items: baseline;
      gap: 8px;
      white-space: nowrap;
    }

    .footer-info dt {
      color: #fff;
      font-weight: 900;
    }

    .footer-info dd {
      margin: 0;
    }

/* blank page placeholders */
.blank-hero {
  min-height: 420px;
  padding: 150px 0 90px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 25, 48, 0.84), rgba(5, 25, 48, 0.38)),
    url("../images/hero-logistics.png") center / cover no-repeat;
}
.blank-hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
  font-weight: 900;
}
.blank-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
}
.blank-content {
  padding: 90px 0;
  background: #f7fbff;
}
.blank-card {
  padding: 42px;
  border: 1px solid var(--soft-line);
  background: #fff;
  box-shadow: 0 22px 56px rgba(5, 42, 73, 0.1);
}
.blank-card strong {
  display: block;
  color: var(--blue-600);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.blank-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
}
