@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@800&display=swap');

/* Shared marketing chrome — WhatsApp-style dark footer */
.site-footer {
  --sf-bg: #111b21;
  --sf-ink: #ffffff;
  --sf-muted: #8696a0;
  --sf-line: rgba(255, 255, 255, 0.12);
  --sf-brand: #39b54a;
  --sf-brand-deep: #2f9a3e;
  background: var(--sf-bg);
  color: var(--sf-ink);
  padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 56px) 28px;
  font-family: "IBM Plex Sans KR", "Segoe UI", sans-serif;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer-top {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.site-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.site-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 0;
}

.site-footer-logo img {
  height: 34px;
  width: 34px;
  object-fit: contain;
  border-radius: 0;
}

.site-footer-logo span {
  display: inline;
  font-family: Nunito, "IBM Plex Sans KR", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.045em;
  color: #00d05d;
  line-height: 1;
}

.site-footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--sf-brand);
  color: #111b21 !important;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(57, 181, 74, 0.35);
}

.site-footer-cta:hover {
  background: var(--sf-brand-deep);
  color: #fff !important;
}

.site-footer-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
}

.site-footer-col h3 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--sf-muted);
  margin: 0 0 14px;
}

.site-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer-col a {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.35;
}

.site-footer-col a:hover {
  color: var(--sf-brand);
}

.site-footer-bottom {
  max-width: 1120px;
  margin: clamp(36px, 5vw, 56px) auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--sf-line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: space-between;
  align-items: center;
  color: var(--sf-muted);
  font-size: 0.85rem;
}

.site-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.site-footer-bottom-links a {
  color: var(--sf-muted);
}

.site-footer-bottom-links a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .site-footer-top {
    grid-template-columns: 1fr;
  }
  .site-footer-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .site-footer-cols {
    grid-template-columns: 1fr;
  }
}

/* Simple inner marketing pages */
.site-page-body {
  font-family: "IBM Plex Sans KR", "Segoe UI", sans-serif;
  color: #111b21;
  background: #fff;
  line-height: 1.6;
  margin: 0;
}

.site-page-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 27, 33, 0.08);
}

.site-page-nav .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  text-decoration: none;
  color: #111b21;
}

.site-page-nav .brand img {
  height: 34px;
  width: 34px;
  object-fit: contain;
  border-radius: 0;
}

.site-page-nav .brand-name {
  font-family: Nunito, "IBM Plex Sans KR", sans-serif;
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: -0.045em;
  color: #00d05d;
  line-height: 1;
}



.site-page-nav {
  position: relative;
}

.site-page-nav .links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #54656f;
}

.site-page-nav .nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(17, 27, 33, 0.12);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.site-page-nav .nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #111b21;
  border-radius: 2px;
}

.site-page-nav .links a {
  color: inherit;
  text-decoration: none;
}

.site-page-nav .links a:hover { color: #111b21; }

.site-page-nav .home-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(17, 27, 33, 0.12);
  color: #111b21 !important;
  font-weight: 600;
  background: #f4f7f5;
}

.site-page-nav .home-link:hover {
  border-color: #39b54a;
  color: #2f9a3e !important;
}

.site-page-nav .cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: #39b54a;
  color: #fff !important;
  font-weight: 700;
}

.site-page-main {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 72px) clamp(20px, 4vw, 56px) clamp(56px, 8vw, 96px);
}

@media (min-width: 960px) {
  .site-page-main > h1,
  .site-page-main > h1 + p {
    white-space: nowrap;
  }
}

.site-page-main .kicker {
  color: #39b54a;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.site-page-main h1 {
  font-family: Nunito, "IBM Plex Sans KR", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 18px;
}

.site-page-main p,
.site-page-main li {
  color: #54656f;
  font-size: 1.02rem;
  margin-bottom: 14px;
}

.site-page-main ul {
  padding-left: 1.2em;
  margin: 0 0 18px;
}

.site-page-main a {
  color: #2f9a3e;
}

.site-page-card {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(17, 27, 33, 0.08);
  border-radius: 18px;
  background: #f4f7f5;
}

.site-page-card strong {
  display: block;
  color: #111b21;
  margin-bottom: 6px;
}

.corp-address {
  margin-top: 36px;
  padding-top: 8px;
}

.corp-address h2 {
  font-family: "IBM Plex Sans KR", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #111b21;
  margin: 0 0 16px;
}

.corp-address .corp-name {
  font-weight: 700;
  color: #111b21;
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.corp-address .corp-lines,
.corp-address .corp-legal,
.corp-address .corp-vat {
  color: #111b21;
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0 0 14px;
}

.corp-address .corp-vat {
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .site-page-nav .nav-toggle { display: inline-flex; }
  .site-page-nav .links {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: clamp(12px, 4vw, 40px);
    left: clamp(12px, 4vw, 40px);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    background: #fff;
    border: 1px solid rgba(17, 27, 33, 0.1);
    border-radius: 16px;
    box-shadow: 0 18px 48px rgba(17, 27, 33, 0.12);
    z-index: 50;
  }
  .site-page-nav .links.open { display: flex; }
  .site-page-nav .links a {
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 600;
  }
  .site-page-main {
    max-width: 100%;
    padding-left: clamp(16px, 4vw, 28px);
    padding-right: clamp(16px, 4vw, 28px);
  }
  .site-page-main > h1,
  .site-page-main > h1 + p {
    white-space: normal;
  }
}

@media (max-width: 700px) {
  .site-page-nav .brand-name { font-size: 1.05rem; }
}
