:root {
  --corp-ivory: #fffaf1;
  --corp-soft: #fff3f6;
  --corp-pink: #ec5f8f;
  --corp-deep-pink: #d93f73;
  --corp-navy: #172033;
  --corp-ink: #283244;
  --corp-muted: #6b7280;
  --corp-gold: #d8a846;
  --corp-line: rgba(236, 95, 143, 0.18);
  --corp-card: rgba(255, 255, 255, 0.88);
  --corp-shadow: 0 24px 70px rgba(23, 32, 51, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--corp-ink);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
  line-height: 1.7;
  word-break: keep-all;
  background:
    radial-gradient(circle at 7% 8%, rgba(236, 95, 143, 0.12), transparent 0 180px),
    radial-gradient(circle at 92% 12%, rgba(216, 168, 70, 0.13), transparent 0 210px),
    linear-gradient(180deg, #fffaf1 0%, #fff 42%, #fff7fa 100%);
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.corp-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.corp-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(255, 250, 241, 0.86);
  border-bottom: 1px solid rgba(236, 95, 143, 0.12);
  backdrop-filter: blur(18px);
}

.corp-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.corp-brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  font-weight: 900;
  border-radius: 17px;
  background: linear-gradient(135deg, #f47aa3, #d93f73);
  box-shadow: 0 14px 30px rgba(217, 63, 115, 0.22);
}

.corp-brand strong {
  display: block;
  color: var(--corp-navy);
  font-size: 18px;
  line-height: 1.1;
}

.corp-brand small {
  display: block;
  color: var(--corp-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.corp-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--corp-ink);
  font-size: 14px;
  font-weight: 800;
}

.corp-nav a {
  text-decoration: none;
}

.corp-nav a:focus-visible,
.corp-btn:focus-visible,
.corp-nav-toggle:focus-visible {
  outline: 3px solid rgba(236, 95, 143, 0.42);
  outline-offset: 4px;
}

.corp-home-link {
  padding: 10px 14px;
  color: var(--corp-deep-pink);
  border: 1px solid rgba(236, 95, 143, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.corp-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(23, 32, 51, 0.08);
}

.corp-nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--corp-navy);
}

.corp-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 74px;
}

.corp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.corp-hero-bg::before,
.corp-hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.corp-hero-bg::before {
  width: 220px;
  height: 220px;
  left: -70px;
  top: 60px;
  background: rgba(236, 95, 143, 0.12);
}

.corp-hero-bg::after {
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: 20px;
  background: rgba(216, 168, 70, 0.13);
}

.corp-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  align-items: center;
  gap: 52px;
}

.corp-eyebrow {
  margin: 0 0 12px;
  color: var(--corp-pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.corp-hero h1,
.corp-section h2,
.corp-cta h2 {
  margin: 0;
  color: var(--corp-navy);
  line-height: 1.16;
  letter-spacing: 0;
}

.corp-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
}

.corp-hero-text {
  max-width: 660px;
  margin: 24px 0 0;
  color: #3f4a5f;
  font-size: clamp(17px, 2vw, 21px);
}

.corp-hero-actions,
.corp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.corp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.corp-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #f275a1, #d93f73);
  box-shadow: 0 16px 34px rgba(217, 63, 115, 0.24);
}

.corp-hero .corp-btn-primary {
  background: var(--corp-navy);
  box-shadow: 0 16px 34px rgba(23, 32, 51, 0.22);
}

.corp-btn-secondary {
  color: var(--corp-navy);
  background: #fff;
  border: 1px solid rgba(236, 95, 143, 0.18);
  box-shadow: 0 14px 30px rgba(23, 32, 51, 0.07);
}

.corp-btn-ghost {
  color: var(--corp-deep-pink);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(236, 95, 143, 0.18);
}

.corp-chat-icon {
  position: relative;
  width: 18px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 8px;
}

.corp-chat-icon::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: -5px;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(28deg);
}

.corp-hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 620px);
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 30px rgba(23, 32, 51, 0.08);
}

.corp-hero-features li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  padding: 12px 10px;
  color: var(--corp-navy);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  border-right: 1px solid rgba(23, 32, 51, 0.08);
}

.corp-hero-features li:last-child {
  border-right: 0;
}

.corp-feature-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  color: var(--corp-pink);
  border-radius: 50%;
  background: rgba(236, 95, 143, 0.1);
}

.corp-feature-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.corp-hero-photo-wrap {
  position: relative;
  isolation: isolate;
}

.corp-hero-photo-wrap::before {
  content: "";
  position: absolute;
  right: -26px;
  top: 34px;
  z-index: -1;
  width: 110px;
  height: 260px;
  border-radius: 999px;
  background: rgba(236, 95, 143, 0.12);
}

.corp-hero-photo-wrap::after {
  content: "";
  position: absolute;
  left: 9%;
  right: -4%;
  bottom: -22px;
  z-index: -1;
  height: 52px;
  border-bottom: 10px solid rgba(236, 95, 143, 0.23);
  border-radius: 0 0 62% 42%;
  transform: rotate(5deg);
}

.corp-hero-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1.52 / 1;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 4px;
  box-shadow: 0 22px 44px rgba(23, 32, 51, 0.12);
}

.corp-method-card {
  position: absolute;
  left: -30px;
  bottom: -26px;
  width: 126px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(23, 32, 51, 0.14);
}

.corp-method-card span {
  display: block;
  color: var(--corp-pink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.corp-method-card strong {
  display: block;
  margin-top: 6px;
  color: var(--corp-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.08;
}

.corp-why-intro {
  padding: 92px 0 82px;
  text-align: center;
  background: rgba(255, 255, 255, 0.58);
}

.corp-why-intro h2 {
  margin: 0;
  color: var(--corp-navy);
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: -0.01em;
}

.corp-why-intro p:not(.corp-eyebrow) {
  max-width: 760px;
  margin: 24px auto 0;
  color: #596273;
  font-size: 16px;
}

.corp-why-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 780px;
  margin: 56px auto 0;
}

.corp-why-line::before,
.corp-why-line::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: rgba(23, 32, 51, 0.18);
}

.corp-why-line span {
  width: 8px;
  height: 8px;
  margin: 0 12px;
  border-radius: 50%;
  background: rgba(236, 95, 143, 0.7);
}

.corp-section {
  padding: 82px 0;
}

.corp-section-soft {
  background: linear-gradient(180deg, rgba(255, 243, 246, 0.66), rgba(255, 255, 255, 0.72));
}

.corp-section-head {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.corp-section h2,
.corp-cta h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.corp-section-head p:last-child,
.corp-lead {
  margin: 16px auto 0;
  color: #4b5563;
  font-size: 17px;
}

.corp-card-grid {
  display: grid;
  gap: 18px;
}

.corp-card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.corp-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--corp-line);
  border-radius: 28px;
  background: var(--corp-card);
  box-shadow: 0 18px 46px rgba(23, 32, 51, 0.06);
}

.corp-card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  font-weight: 900;
  border-radius: 16px;
  background: linear-gradient(135deg, #f27aa4, #d93f73);
}

.corp-card h3 {
  margin: 20px 0 10px;
  color: var(--corp-navy);
  font-size: 21px;
}

.corp-card p {
  margin: 0;
  color: #556070;
}

.corp-split,
.corp-member {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  align-items: center;
  gap: 48px;
}

.corp-effect-list {
  display: grid;
  gap: 12px;
}

.corp-effect-list div {
  padding: 18px 20px;
  border: 1px solid rgba(236, 95, 143, 0.16);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(23, 32, 51, 0.05);
}

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

.corp-effect-list strong {
  color: var(--corp-navy);
}

.corp-effect-list span {
  color: var(--corp-muted);
  font-size: 14px;
}

.corp-process {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.corp-process li {
  position: relative;
  min-height: 190px;
  padding: 20px 16px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(236, 95, 143, 0.15);
  box-shadow: 0 16px 36px rgba(23, 32, 51, 0.05);
}

.corp-process span {
  display: inline-flex;
  color: var(--corp-pink);
  font-weight: 900;
  margin-bottom: 14px;
}

.corp-process strong {
  display: block;
  color: var(--corp-navy);
  line-height: 1.35;
}

.corp-process p {
  margin: 10px 0 0;
  color: var(--corp-muted);
  font-size: 14px;
}

.corp-trust {
  background: var(--corp-navy);
}

.corp-trust .corp-section-head h2 {
  color: #fff;
}

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

.corp-trust-grid div {
  padding: 22px;
  color: #fff;
  font-weight: 900;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.corp-member p {
  color: #4b5563;
  font-size: 17px;
}

.corp-muted {
  color: var(--corp-muted) !important;
  font-size: 14px !important;
}

.corp-dashboard {
  padding: 32px;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--corp-shadow);
}

.corp-dashboard span {
  display: block;
  margin: 18px 0 8px;
  color: var(--corp-navy);
  font-weight: 900;
}

.corp-dashboard span:first-child {
  margin-top: 0;
}

.corp-progress {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #f3e8ed;
}

.corp-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f49abd, #d93f73);
}

.corp-faq {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.corp-faq details {
  border: 1px solid rgba(236, 95, 143, 0.16);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(23, 32, 51, 0.05);
}

.corp-faq summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--corp-navy);
  font-weight: 900;
}

.corp-faq p {
  margin: 0;
  padding: 0 24px 22px;
  color: #556070;
}

.corp-cta {
  padding: 86px 0;
}

.corp-cta-card {
  padding: clamp(34px, 5vw, 58px);
  text-align: center;
  border: 1px solid rgba(236, 95, 143, 0.16);
  border-radius: 38px;
  background:
    radial-gradient(circle at 10% 0%, rgba(236, 95, 143, 0.13), transparent 0 180px),
    radial-gradient(circle at 92% 12%, rgba(216, 168, 70, 0.12), transparent 0 210px),
    #fff;
  box-shadow: var(--corp-shadow);
}

.corp-cta-card p {
  max-width: 760px;
  margin: 16px auto 0;
  color: #4b5563;
  font-size: 17px;
}

.corp-cta-actions {
  justify-content: center;
}

.corp-contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 34px auto 30px;
  text-align: left;
}

.corp-contact-option {
  padding: 26px;
  border: 1px solid rgba(236, 95, 143, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(23, 32, 51, 0.06);
}

.corp-contact-option h3 {
  margin: 10px 0 8px;
  color: var(--corp-navy);
  font-size: 22px;
  line-height: 1.28;
}

.corp-contact-option p {
  margin: 0 0 18px;
  color: #556070;
  font-size: 15px;
}

.corp-option-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: var(--corp-deep-pink);
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(236, 95, 143, 0.12);
}

.corp-btn-kakao {
  color: #2f2200;
  background: #fee500;
  box-shadow: 0 16px 34px rgba(93, 73, 0, 0.13);
}

.corp-inquiry-form {
  margin-top: 34px;
  padding: clamp(22px, 4vw, 34px);
  text-align: left;
  border: 1px solid rgba(236, 95, 143, 0.16);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 52px rgba(23, 32, 51, 0.06);
}

.corp-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.corp-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.corp-form-wide {
  grid-column: 1 / -1;
}

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

.corp-form-field label span {
  color: var(--corp-deep-pink);
}

.corp-form-field input,
.corp-form-field select,
.corp-form-field textarea,
.corp-copy-text {
  width: 100%;
  border: 1px solid rgba(236, 95, 143, 0.22);
  border-radius: 16px;
  background: #fff;
  color: var(--corp-ink);
  font: inherit;
}

.corp-form-field input,
.corp-form-field select {
  min-height: 52px;
  padding: 0 15px;
}

.corp-form-field textarea,
.corp-copy-text {
  padding: 14px 15px;
  resize: vertical;
}

.corp-form-field input:focus,
.corp-form-field select:focus,
.corp-form-field textarea:focus,
.corp-copy-text:focus {
  outline: 3px solid rgba(236, 95, 143, 0.2);
  border-color: rgba(217, 63, 115, 0.52);
}

.corp-privacy-box {
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 243, 246, 0.78);
}

.corp-check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--corp-navy);
  font-weight: 900;
}

.corp-check-field input {
  width: 19px;
  height: 19px;
  margin-top: 4px;
  accent-color: var(--corp-deep-pink);
}

.corp-privacy-box p {
  margin: 10px 0 0;
  color: var(--corp-muted);
  font-size: 14px;
}

.corp-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.corp-form-actions .corp-btn {
  border: 0;
  cursor: pointer;
}

.corp-form-status {
  margin-top: 20px;
  padding: 16px 18px;
  text-align: center;
  border-radius: 18px;
  color: var(--corp-navy);
  font-weight: 900;
  background: rgba(236, 95, 143, 0.11);
}

.corp-form-status.is-error {
  background: rgba(217, 63, 115, 0.12);
}

.corp-copy-fallback {
  margin-top: 20px;
  padding: 22px;
  border: 1px solid rgba(216, 168, 70, 0.28);
  border-radius: 24px;
  background: #fffaf1;
}

.corp-copy-fallback h3 {
  margin: 0 0 8px;
  color: var(--corp-navy);
}

.corp-copy-fallback p {
  margin: 0 0 14px;
  color: #556070;
  font-size: 15px;
}

@media (max-width: 1080px) {
  .corp-nav {
    gap: 12px;
    font-size: 13px;
  }

  .corp-hero-grid,
  .corp-split,
  .corp-member {
    grid-template-columns: 1fr;
  }

  .corp-card-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 820px) {
  .corp-header {
    min-height: 68px;
  }

  .corp-nav-toggle {
    display: block;
  }

  .corp-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--corp-shadow);
  }

  .corp-nav.is-open {
    display: flex;
  }

  .corp-nav a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .corp-home-link {
    text-align: center;
  }

  .corp-hero {
    padding: 56px 0 56px;
  }

  .corp-hero-actions,
  .corp-cta-actions {
    flex-direction: column;
  }

  .corp-btn {
    width: 100%;
  }

  .corp-hero-features {
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 18px;
  }

  .corp-hero-features li {
    justify-content: flex-start;
    min-height: 52px;
    padding: 12px 16px;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 32, 51, 0.08);
  }

  .corp-hero-features li:last-child {
    border-bottom: 0;
  }

  .corp-hero-photo-wrap {
    margin-top: 10px;
  }

  .corp-hero-photo-wrap::before {
    right: -12px;
    top: 24px;
    height: 210px;
  }

  .corp-hero-photo {
    aspect-ratio: 1.5 / 1;
    object-position: 50% 50%;
  }

  .corp-method-card {
    left: 14px;
    bottom: -22px;
    transform: scale(0.92);
    transform-origin: left bottom;
  }

  .corp-why-intro {
    padding: 74px 0 64px;
  }

  .corp-card-grid-3,
  .corp-process,
  .corp-trust-grid {
    grid-template-columns: 1fr;
  }

  .corp-section {
    padding: 62px 0;
  }

  .corp-contact-options,
  .corp-form-grid {
    grid-template-columns: 1fr;
  }

  .corp-inquiry-form {
    padding: 20px;
  }
}

@media (max-width: 430px) {
  .corp-container {
    width: min(100% - 28px, 1120px);
  }

  .corp-brand-mark {
    width: 44px;
    height: 44px;
  }

  .corp-brand strong {
    font-size: 16px;
  }

  .corp-brand small {
    font-size: 10px;
  }

  .corp-hero h1 {
    font-size: 38px;
  }

  .corp-dashboard,
  .corp-card {
    border-radius: 24px;
  }

  .corp-contact-option,
  .corp-inquiry-form {
    border-radius: 24px;
  }

  .corp-form-actions {
    flex-direction: column;
  }
}

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

  .corp-btn {
    transition: none;
  }
}
