@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Noto+Sans+KR:wght@400;500;600;700&display=swap");
:root {
  --spd-navy: #0b274a;
  --spd-blue: #0a6fa9;
  --spd-teal: #1499b4;
  --spd-ink: #18304b;
  --spd-muted: #65758b;
  --spd-bg: #f4f7fa;
  --spd-line: #e2e9f0;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--spd-ink);
  font-family: Manrope, "Noto Sans KR", sans-serif;
  word-break: keep-all;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
.spd-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  padding: 12px;
  z-index: 10000;
}
.spd-skip:focus {
  left: 12px;
}
.spd-section {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.spd-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--spd-teal);
  margin-bottom: 18px;
}
.spd-header {
  position: relative;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--spd-line);
}
.spd-mobile-call {
  display: none;
}
.spd-header-inner {
  height: 86px;
  width: min(1360px, calc(100% - 48px));
  margin: auto;
  display: flex;
  align-items: center;
  gap: 42px;
}
.spd-brand {
  width: 215px;
  flex: none;
}
.spd-brand img {
  display: block;
  width: 100%;
  height: auto;
}
.spd-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: center;
}
.spd-nav-group {
  height: 86px;
  display: flex;
  align-items: center;
  position: relative;
}
.spd-nav-group > a {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s;
}
.spd-nav-group:hover > a,
.spd-nav-group:focus-within > a {
  color: var(--spd-blue);
}
.spd-subnav {
  display: none;
  position: absolute;
  top: 76px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 175px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--spd-line);
  border-radius: 12px;
  box-shadow: 0 20px 45px #0927461a;
}
.spd-nav-group:hover .spd-subnav,
.spd-nav-group:focus-within .spd-subnav {
  display: grid;
}
.spd-subnav a {
  font-size: 13px;
  padding: 10px 12px;
  white-space: nowrap;
  border-radius: 6px;
}
.spd-subnav a:hover,
.spd-subnav a:focus {
  background: var(--spd-bg);
  color: var(--spd-blue);
}
.spd-header-call {
  border-left: 1px solid var(--spd-line);
  padding-left: 26px;
  display: grid;
  gap: 2px;
  white-space: nowrap;
}
.spd-header-call span {
  color: var(--spd-muted);
  font-size: 11px;
}
.spd-header-call strong {
  font-size: 17px;
  color: var(--spd-navy);
}
.spd-menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-weight: 700;
  color: var(--spd-navy);
}
#container.spd-main {
  float: none;
  width: 100%;
  min-height: 0;
  padding: 0;
  margin: 0;
  max-width: none;
}
.spd-main h1,
.spd-main h2,
.spd-main h3 {
  font-family: Manrope, "Noto Sans KR", sans-serif;
  line-height: 1.32;
}
.spd-main h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.spd-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--spd-blue);
  color: #fff;
  border: 1px solid var(--spd-blue);
  border-radius: 5px;
  padding: 17px 24px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.2s,
    background 0.2s;
}
.spd-button:hover,
.spd-button:focus {
  background: var(--spd-navy);
  transform: translateY(-2px);
  color: #fff;
}
.spd-button-ghost {
  background: transparent;
  color: #fff;
  border-color: #ffffffaa;
}
.spd-button-ghost:hover {
  background: #ffffff22;
}
.spd-hero {
  height: min(650px, calc(100svh - 86px));
  min-height: 480px;
}
.spd-carousel {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: var(--spd-navy);
}
.spd-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.8s,
    transform 5s;
}
.spd-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.spd-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #061c38dc 0%,
    #092644a1 42%,
    #071b340a 100%
  );
}
.spd-hero-content {
  position: absolute;
  z-index: 2;
  left: max(calc((100vw - 1180px) / 2), 24px);
  top: 50%;
  transform: translateY(-50%);
  width: min(690px, calc(100% - 48px));
  color: #fff;
}
.spd-hero-content .spd-eyebrow {
  color: #7fe1e9;
}
.spd-hero h1 {
  font-size: clamp(38px, 5vw, 66px);
  letter-spacing: -0.06em;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 20px;
}
.spd-hero p {
  font-size: 17px;
  line-height: 1.7;
  color: #eef5fa;
  margin: 0 0 32px;
}
.spd-hero-actions {
  display: flex;
  gap: 10px;
}
.spd-carousel-controls {
  position: absolute;
  z-index: 2;
  bottom: 36px;
  right: max(calc((100vw - 1180px) / 2), 24px);
  display: flex;
  align-items: center;
  gap: 17px;
  color: #fff;
}
.spd-carousel-controls button {
  width: 38px;
  height: 38px;
  border: 1px solid #ffffff88;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 26px;
  line-height: 1;
}
.spd-carousel-controls button:hover {
  background: #ffffff33;
}
.spd-carousel-controls span {
  font-size: 12px;
  letter-spacing: 0.12em;
}
.spd-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 100px;
  padding: 110px 0;
}
.spd-intro h2 {
  margin: 0;
}
.spd-intro p {
  color: var(--spd-muted);
  font-size: 17px;
  line-height: 1.95;
  margin: 0 0 5px;
}
.spd-products-section {
  padding-bottom: 115px;
}
.spd-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 30px;
}
.spd-section-head h2 {
  margin: 0;
}
.spd-text-link {
  color: var(--spd-blue);
  font-size: 14px;
  font-weight: 700;
}
.spd-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.spd-product-card {
  display: grid;
  gap: 8px;
}
.spd-product-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 10 / 13;
  object-fit: contain;
  background: var(--spd-bg);
  border-radius: 4px;
}
.spd-product-card span,
.spd-list-card span {
  font-size: 12px;
  color: var(--spd-teal);
  font-weight: 700;
}
.spd-product-card strong {
  font-size: 18px;
  color: var(--spd-navy);
}
.spd-cta {
  padding: 90px 0;
  background: linear-gradient(115deg, #0b274a, #0b597f);
  color: #fff;
}
.spd-cta .spd-eyebrow {
  color: #77d6e4;
}
.spd-cta h2 {
  max-width: 750px;
  margin: 0 0 13px;
}
.spd-cta p {
  color: #d4e4ec;
  margin: 0 0 27px;
}
.spd-cta .spd-button {
  background: #fff;
  color: var(--spd-navy);
  border-color: #fff;
}
.spd-footer {
  background: #071b32;
  color: #c6d6e5;
}
.spd-footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 45px;
  padding: 62px 0;
}
.spd-footer-inner strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 17px;
}
.spd-footer-inner .spd-footer-name {
  font-size: 27px;
}
.spd-footer p {
  line-height: 1.9;
  font-size: 13px;
  margin: 0;
}
.spd-footer a:hover {
  color: #fff;
}
.spd-footer-bottom {
  border-top: 1px solid #ffffff24;
  width: min(1180px, calc(100% - 48px));
  margin: auto;
  padding: 21px 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.spd-footer-bottom div {
  display: flex;
  gap: 23px;
}
.spd-page-hero {
  background: linear-gradient(115deg, #0b274a, #125b7c);
  color: #fff;
  padding: 78px 0;
}
.spd-page-hero .spd-eyebrow {
  color: #6bd3df;
}
.spd-page-hero h1 {
  font-size: clamp(36px, 4vw, 52px);
  margin: 0 0 12px;
}
.spd-page-hero p {
  color: #d4e8f0;
  margin: 0;
}
.spd-page-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 64px;
  padding-top: 70px;
  padding-bottom: 110px;
}
.spd-page-layout.is-legal {
  display: block;
  max-width: 980px;
}
.spd-page-layout.is-legal .spd-sidebar {
  display: none;
}
.spd-sidebar {
  display: flex;
  flex-direction: column;
  align-self: start;
  border-top: 3px solid var(--spd-navy);
  background: var(--spd-bg);
  padding: 18px;
}
.spd-sidebar strong {
  font-size: 18px;
  margin-bottom: 13px;
}
.spd-sidebar a {
  padding: 12px;
  border-top: 1px solid var(--spd-line);
  font-size: 14px;
}
.spd-sidebar a:hover {
  color: var(--spd-blue);
}
.spd-sidebar a.is-active {
  color: var(--spd-blue);
  font-weight: 700;
}
.spd-page-body {
  min-width: 0;
}
.spd-page-body h2 {
  margin: 0 0 27px;
}
.spd-lead {
  font-size: 17px;
  line-height: 1.9;
  color: var(--spd-muted);
  margin: 0 0 35px;
}
.spd-content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 24px auto;
}
.spd-location-card {
  padding: 33px;
  border: 1px solid var(--spd-line);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.spd-map-panel {
  width: 100%;
  margin: 0 0 22px;
  overflow: hidden;
  border: 1px solid var(--spd-line);
  border-radius: 8px;
  background: var(--spd-bg);
}
.spd-map-panel .root_daum_roughmap {
  width: 100% !important;
  max-width: 100%;
}
.spd-location-card strong {
  font-size: 20px;
}
.spd-location-card p {
  font-size: 14px;
  color: var(--spd-muted);
  line-height: 1.8;
}
.spd-filters {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.spd-filters a {
  border: 1px solid var(--spd-line);
  border-radius: 50px;
  padding: 9px 15px;
  font-size: 12px;
}
.spd-filters a:hover,
.spd-filters a.is-active {
  background: var(--spd-navy);
  color: #fff;
}
.spd-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.spd-list-card {
  align-self: start;
  border: 1px solid var(--spd-line);
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
}
.spd-list-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: var(--spd-bg);
}
.spd-list-card > div {
  padding: 14px;
}
.spd-list-card h3 {
  font-size: 16px;
  margin: 5px 0 0;
  color: var(--spd-navy);
  line-height: 1.5;
}
.spd-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
  font-size: 14px;
}
.spd-pagination a {
  font-weight: 700;
  color: var(--spd-blue);
}
.spd-empty {
  padding: 45px;
  background: var(--spd-bg);
  color: var(--spd-muted);
  border-radius: 5px;
}
.spd-estimate-form {
  display: grid;
  gap: 22px;
}
.spd-estimate-form label {
  display: grid;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
}
.spd-field-label {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}
.spd-estimate-form em {
  color: #d43b42;
  font-style: normal;
}
.spd-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.spd-estimate-form input:not([type="checkbox"]),
.spd-estimate-form select,
.spd-estimate-form textarea {
  width: 100%;
  border: 1px solid #cfdae4;
  border-radius: 5px;
  padding: 14px 15px;
  background: #fff;
  color: var(--spd-ink);
  font-size: 14px;
}
.spd-estimate-form input:focus,
.spd-estimate-form textarea:focus,
.spd-estimate-form select:focus {
  outline: 2px solid #63bdd3;
  outline-offset: 1px;
}
.spd-estimate-form textarea {
  resize: vertical;
  min-height: 165px;
}
.spd-privacy {
  padding: 21px;
  background: var(--spd-bg);
  border-radius: 5px;
}
.spd-privacy strong {
  font-size: 14px;
}
.spd-privacy p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--spd-muted);
  margin: 9px 0 15px;
}
.spd-privacy p a {
  color: var(--spd-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.spd-privacy label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
}
.spd-privacy input {
  accent-color: var(--spd-blue);
}
.spd-estimate-form .spd-button {
  justify-self: start;
}
.spd-honeypot {
  position: absolute;
  left: -9999px;
}
.spd-form-result {
  padding: 17px 20px;
  border: 1px solid #f0a5a5;
  background: #fff2f2;
  color: #8d2424;
  margin-bottom: 25px;
}
.spd-form-result.is-success {
  border-color: #a5dcc6;
  background: #edfaf4;
  color: #116144;
}
.spd-legal > h2 {
  margin-bottom: 30px;
  font-size: 32px;
}
.spd-legal-intro {
  padding: 30px 32px;
  margin-bottom: 42px;
  border-left: 4px solid var(--spd-teal);
  background: var(--spd-bg);
}
.spd-legal-intro strong {
  display: block;
  margin-bottom: 10px;
  color: var(--spd-navy);
  font-size: 20px;
}
.spd-legal-intro p {
  margin: 0 0 13px;
  color: var(--spd-muted);
  line-height: 1.85;
}
.spd-legal-intro span {
  color: var(--spd-blue);
  font-size: 12px;
  font-weight: 700;
}
.spd-legal section {
  padding: 0 2px 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--spd-line);
}
.spd-legal section:last-child {
  margin-bottom: 0;
}
.spd-legal h3 {
  margin: 0 0 16px;
  color: var(--spd-navy);
  font-size: 19px;
}
.spd-legal p,
.spd-legal li {
  color: #4d6174;
  font-size: 14px;
  line-height: 1.9;
}
.spd-legal ul {
  padding-left: 21px;
  margin: 0;
}
.spd-legal a {
  color: var(--spd-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.spd-legal-table-wrap {
  overflow-x: auto;
  margin-bottom: 15px;
}
.spd-legal table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  border-top: 2px solid var(--spd-navy);
}
.spd-legal th,
.spd-legal td {
  padding: 14px 15px;
  border-bottom: 1px solid var(--spd-line);
  border-right: 1px solid var(--spd-line);
  text-align: left;
  font-size: 13px;
  line-height: 1.7;
  vertical-align: top;
}
.spd-legal th:last-child,
.spd-legal td:last-child {
  border-right: 0;
}
.spd-legal th {
  background: var(--spd-bg);
  color: var(--spd-navy);
}
.spd-legal-contact {
  padding: 22px 24px;
  margin-bottom: 14px;
  border-radius: 6px;
  background: var(--spd-bg);
}
.spd-legal-contact strong {
  display: block;
  margin-bottom: 7px;
  color: var(--spd-navy);
}
.spd-legal-contact p {
  margin: 0;
}
.spd-core-content {
  width: min(1180px, calc(100% - 48px));
  margin: 55px auto 100px;
}
.spd-core-content h1 {
  font-size: 30px;
}
.spd-core-content #bo_list,
.spd-core-content #bo_v,
.spd-core-content #bo_w {
  max-width: 100%;
}
@media (max-width: 1100px) {
  .spd-header-inner {
    gap: 20px;
  }
  .spd-brand {
    width: 180px;
  }
  .spd-nav {
    gap: 16px;
  }
  .spd-nav-group > a {
    font-size: 13px;
  }
  .spd-header-call strong {
    font-size: 14px;
  }
  .spd-page-layout {
    gap: 30px;
  }
  .spd-list-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 820px) {
  .spd-mobile-call {
    min-height: 46px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: linear-gradient(100deg, var(--spd-navy), #087fa9);
    color: #fff;
    line-height: 1;
    box-shadow: 0 3px 12px rgba(7, 33, 61, 0.18);
  }
  .spd-mobile-call span {
    padding-right: 9px;
    border-right: 1px solid rgba(255, 255, 255, 0.42);
    color: #a5edf0;
    font-size: 12px;
    font-weight: 700;
  }
  .spd-mobile-call strong {
    font-size: 17px;
    letter-spacing: 0.02em;
  }
  .spd-mobile-call em {
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 20px;
    color: #fff;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
  }
  .spd-header-inner {
    height: 70px;
  }
  .spd-brand {
    width: 175px;
  }
  .spd-menu-toggle {
    display: block;
    margin-left: auto;
  }
  .spd-header-call {
    display: none;
  }
  .spd-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 15px 24px 24px;
    box-shadow: 0 18px 25px #0002;
    max-height: calc(100svh - 70px);
    overflow: auto;
  }
  .spd-nav.is-open {
    display: flex;
  }
  .spd-nav-group {
    height: auto;
    display: block;
    border-bottom: 1px solid var(--spd-line);
  }
  .spd-nav-group > a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
  }
  .spd-subnav,
  .spd-nav-group:hover .spd-subnav,
  .spd-nav-group:focus-within .spd-subnav {
    display: flex;
    position: static;
    transform: none;
    border: 0;
    box-shadow: none;
    padding: 0 0 10px;
    flex-wrap: wrap;
  }
  .spd-subnav a {
    font-size: 12px;
    padding: 6px 10px;
  }
  .spd-hero {
    min-height: 500px;
  }
  .spd-intro {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 75px 0;
  }
  .spd-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .spd-page-layout {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }
  .spd-sidebar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    padding: 12px;
  }
  .spd-sidebar strong {
    flex: 0 0 100%;
    margin: 0 0 3px;
  }
  .spd-sidebar a {
    border: 1px solid var(--spd-line);
    border-radius: 4px;
    padding: 8px 10px;
  }
  .spd-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .spd-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .spd-section {
    width: calc(100% - 36px);
  }
  .spd-header-inner {
    width: calc(100% - 36px);
  }
  .spd-brand {
    width: 155px;
  }
  .spd-hero {
    min-height: 520px;
  }
  .spd-hero-content {
    left: 18px;
    width: calc(100% - 36px);
    top: 47%;
  }
  .spd-hero h1 {
    font-size: 37px;
  }
  .spd-hero p {
    font-size: 14px;
  }
  .spd-hero-actions {
    flex-wrap: wrap;
  }
  .spd-button {
    padding: 14px 17px;
    font-size: 13px;
  }
  .spd-carousel-controls {
    right: 18px;
    bottom: 20px;
  }
  .spd-intro p {
    font-size: 15px;
  }
  .spd-section-head {
    align-items: center;
  }
  .spd-text-link {
    font-size: 12px;
  }
  .spd-product-grid {
    gap: 12px;
  }
  .spd-product-card img {
    height: auto;
  }
  .spd-product-card strong {
    font-size: 15px;
  }
  .spd-cta {
    padding: 70px 0;
  }
  .spd-page-hero {
    padding: 55px 0;
  }
  .spd-page-layout {
    padding-bottom: 70px;
  }
  .spd-list-grid {
    gap: 11px;
  }
  .spd-list-card img {
    height: auto;
  }
  .spd-list-card > div {
    padding: 10px;
  }
  .spd-list-card h3 {
    font-size: 13px;
  }
  .spd-form-grid {
    grid-template-columns: 1fr;
  }
  .spd-location-card {
    display: block;
    padding: 22px;
  }
  .spd-location-card .spd-button {
    margin-top: 15px;
  }
  .spd-footer-inner {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 45px 0;
  }
  .spd-footer-bottom {
    width: calc(100% - 36px);
    display: grid;
    gap: 12px;
  }
  .spd-legal > h2 {
    font-size: 26px;
  }
  .spd-legal-intro {
    padding: 23px 20px;
    margin-bottom: 34px;
  }
  .spd-legal section {
    padding-bottom: 24px;
    margin-bottom: 25px;
  }
  .spd-legal h3 {
    font-size: 17px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .spd-slide,
  .spd-button {
    transition: none;
  }
}
body {
  font-size: 16px;
}
.spd-hero {
  height: auto;
  min-height: 0;
}
.spd-carousel {
  aspect-ratio: 3.88 / 1;
  height: auto;
}
.spd-slide {
  background: var(--spd-navy);
}
.spd-slide-photos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  width: 100%;
  height: 100%;
}
.spd-slide-photo {
  overflow: hidden;
  min-width: 0;
  background: #d5dde1;
}
.spd-slide-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.spd-slide-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 24, 45, 0.9), rgba(5, 24, 45, 0.57) 42%, rgba(5, 24, 45, 0.08) 100%);
}
.spd-slide-copy {
  position: absolute;
  z-index: 1;
  left: max(calc((100vw - 1180px) / 2), 24px);
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.spd-slide-copy .spd-eyebrow {
  color: #9ee7eb;
}
.spd-slide-copy h2 {
  margin: 12px 0 9px;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.2;
  letter-spacing: -0.055em;
}
.spd-slide-copy p {
  margin: 0;
  color: #f4fbfd;
  font-size: clamp(14px, 1.3vw, 19px);
}
.spd-hero-summary {
  background: var(--spd-navy);
  color: #fff;
  padding: 55px 0;
}
.spd-hero-summary .spd-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
}
.spd-hero-summary .spd-eyebrow {
  color: #7fe1e9;
  margin-bottom: 10px;
}
.spd-hero-summary h1 {
  font-size: clamp(28px, 3.3vw, 42px);
  margin: 0 0 12px;
  line-height: 1.3;
}
.spd-hero-summary p {
  font-size: 14px;
  color: #d9e9f0;
  margin: 0;
}
.spd-hero-summary .spd-hero-actions {
  flex: none;
}
@media (max-width: 820px) {
  .spd-hero-summary .spd-section {
    display: block;
  }
  .spd-hero-summary .spd-hero-actions {
    margin-top: 24px;
  }
}
@media (max-width: 580px) {
  .spd-carousel-controls {
    bottom: 8px;
    right: 10px;
    gap: 6px;
  }
  .spd-carousel-controls button {
    width: 28px;
    height: 28px;
    font-size: 19px;
  }
  .spd-carousel-controls span {
    font-size: 10px;
  }
  .spd-hero-summary {
    padding: 40px 0;
  }
}
.spd-company-copy {
  padding: 42px;
  background: var(--spd-bg);
  border-left: 4px solid var(--spd-teal);
}
.spd-company-copy h3 {
  font-size: 27px;
  margin: 0 0 22px;
}
.spd-company-copy p {
  line-height: 2;
  color: var(--spd-muted);
  margin: 0 0 17px;
}
.spd-notice {
  border-top: 2px solid var(--spd-navy);
  border-bottom: 1px solid var(--spd-line);
  padding: 27px 4px;
}
.spd-notice span {
  font-size: 12px;
  color: var(--spd-teal);
  font-weight: 700;
}
.spd-notice h3 {
  font-size: 23px;
  margin: 9px 0 22px;
}
.spd-notice p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--spd-muted);
  margin-bottom: 22px;
}
.spd-notice p a {
  color: var(--spd-blue);
  text-decoration: underline;
}
@media (max-width: 580px) {
  .spd-company-copy {
    padding: 25px;
  }
}
@media (max-width: 580px) {
  .spd-carousel {
    aspect-ratio: 2.33 / 1;
    height: auto;
  }
  .spd-slide-photos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .spd-slide-photo:nth-child(n + 4) {
    display: none;
  }
  .spd-slide-shade {
    background: linear-gradient(90deg, rgba(5, 24, 45, 0.9), rgba(5, 24, 45, 0.53) 72%, rgba(5, 24, 45, 0.25));
  }
  .spd-slide-copy {
    left: 18px;
    width: calc(100% - 36px);
  }
  .spd-slide-copy h2 {
    font-size: 30px;
  }
  .spd-slide-copy p {
    font-size: 13px;
  }
  .spd-intro {
    padding: 65px 0;
  }
  .spd-products-section {
    padding-bottom: 70px;
  }
}
.spd-list-card a {
  display: block;
}
.spd-list-card a:hover h3 {
  color: var(--spd-blue);
}
.spd-detail-title {
  margin-top: 20px !important;
}
.spd-detail-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 20px;
}
.spd-detail-images img {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: auto;
  background: var(--spd-bg);
}
.spd-detail-text {
  font-size: 15px;
  color: var(--spd-muted);
  line-height: 1.9;
  margin-top: 30px;
}
.spd-resource-list {
  display: grid;
  gap: 14px;
}
.spd-resource-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 38%);
  gap: 28px;
  align-items: center;
  padding: 25px 28px;
  border: 1px solid var(--spd-line);
  border-radius: 14px;
  background: #fff;
}
.spd-resource-copy span {
  display: block;
  margin-bottom: 7px;
  color: var(--spd-teal);
  font-size: 12px;
  font-weight: 700;
}
.spd-resource-copy h3 {
  margin: 0;
  color: var(--spd-navy);
  font-size: 20px;
}
.spd-resource-copy p {
  margin: 10px 0 0;
  color: var(--spd-muted);
  font-size: 14px;
  line-height: 1.7;
}
.spd-resource-files {
  display: grid;
  gap: 8px;
}
.spd-resource-files a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 9px;
  background: var(--spd-bg);
  color: var(--spd-navy);
}
.spd-resource-files a:hover {
  background: #e7f4f5;
}
.spd-resource-files strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.spd-resource-files small {
  grid-column: 1;
  color: var(--spd-muted);
  font-size: 11px;
}
.spd-resource-files b {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--spd-blue);
  font-size: 12px;
}
.spd-resource-missing {
  color: var(--spd-muted);
  font-size: 13px;
}
@media (max-width: 720px) {
  .spd-resource-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 21px;
  }
}
