:root {
  --blue: #1267f4;
  --blue-dark: #052650;
  --ink: #0f172a;
  --muted: #667085;
  --line: #dbe4f2;
  --soft: #f4f8ff;
  --white: #fff;
  --shadow: 0 24px 60px rgba(20, 68, 140, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  background: #f7faff;
  word-break: keep-all;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  overflow: visible;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(15,23,42,.04);
}
.header-inner {
  max-width: 1440px;
  min-height: 84px;
  margin: 0 auto;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand,
.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}
.brand img,
.site-logo img {
  width: 156px;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 32px);
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}
.main-nav a {
  position: relative;
  padding: 29px 0;
  color: #172033;
}
.main-nav a.is-active,
.main-nav a:hover { color: var(--blue); }
.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 3px;
  background: var(--blue);
  border-radius: 99px;
}
.header-actions { display: flex; align-items: center; gap: 14px; white-space: nowrap; }
.btn {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.btn-ghost { border: 1px solid var(--line); background: #fff; }
.btn-primary { border: 1px solid var(--blue); background: var(--blue); color: #fff; box-shadow: 0 12px 24px rgba(18,103,244,.18); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--ink); border-radius: 4px; }
.site-main { padding-top: 0; }
.company-info-main {
  padding-bottom: 110px;
}
.view-panel { display: none; }
.view-panel.is-active { display: block; }
.section-wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .85fr);
  align-items: center;
  gap: 70px;
  padding: 78px 0 64px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}
.hero h1,
.page-hero h1 {
  margin: 0;
  color: #101828;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.13;
  letter-spacing: 0;
}
.hero-text,
.page-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: #475467;
  font-size: 19px;
  line-height: 1.8;
}
.hero-search { margin-top: 38px; max-width: 720px; }
.hero-search label { display: block; margin-bottom: 10px; font-weight: 900; }
.search-row { display: flex; gap: 10px; }
.search-row input,
.auth-form input,
.auth-form select {
  width: 100%;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  background: #fff;
  color: var(--ink);
}
.search-row button,
.submit-btn {
  min-width: 78px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.hero-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}
.hero-card-top {
  min-height: 260px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, #08213f, #1654c4);
  color: #fff;
}
.hero-card-top.has-image {
  position: relative;
  min-height: 250px;
  padding: 0;
  display: block;
  background: #07182d;
}
.hero-card-top.has-image img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  display: block;
  object-fit: cover;
}
.hero-card-top.has-image .pill {
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 1;
}
.pill {
  align-self: flex-end;
  padding: 8px 14px;
  border-radius: 99px;
  background: #d5fff0;
  color: #00684f;
  font-weight: 900;
}
.hero-card-top strong { font-size: 44px; letter-spacing: .04em; }
.hero-card-body { padding: 34px; }
.hero-card-body span { color: var(--blue); font-weight: 900; }
.hero-card-body h2 { margin: 14px 0 16px; font-size: 29px; line-height: 1.35; }
.hero-card-body p { margin: 0; color: #667085; line-height: 1.7; }
.quick-grid,
.feature-grid,
.usecase-grid,
.webinar-grid,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.quick-grid article,
.feature-grid article,
.usecase-grid article,
.webinar-card,
.guide-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(20, 68, 140, .07);
}
article h3 { margin: 0 0 14px; font-size: 22px; }
article p { margin: 0; color: #52637a; line-height: 1.75; }
.webinar-board { padding: 70px 0 20px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.section-head h2 { margin: 0; font-size: 32px; }
.section-head p { margin: 0; color: #667085; }
.webinar-grid { grid-template-columns: repeat(3, 1fr); }
.webinar-card span { color: var(--blue); font-weight: 900; }
.webinar-card.live span { color: #e11d48; }
.webinar-card h3 { margin: 12px 0 10px; }
.webinar-card p { color: #52637a; line-height: 1.7; }
.webinar-card.is-empty { background: #f8fbff; }
.webinar-card.promo-card { border-color: #bfdbfe; background: linear-gradient(180deg, #fff, #f5f9ff); }
.webinar-meta { display: grid; gap: 4px; margin: 16px 0; color: #64748b; font-size: 14px; }
.webinar-meta b { color: #10223d; }
.webinar-meta em { font-style: normal; }
.webinar-link { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 14px; border: 1px solid var(--blue); border-radius: 8px; color: var(--blue); font-weight: 900; text-decoration: none; }
.compact-board { padding-top: 30px; }
.featured-webinar-board { padding-top: 58px; }
.featured-webinar-board .webinar-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 18px;
}
.webinar-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #eef5ff, #dbeafe);
}
.webinar-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .25s ease;
}
.webinar-card:hover .webinar-thumb img { transform: scale(1.035); }
.webinar-thumb span {
  position: absolute;
  left: 14px;
  top: 14px;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 18px rgba(15,23,42,.12);
  color: var(--blue);
  font-size: 13px;
}
.webinar-card.live .webinar-thumb span {
  background: rgba(255,241,242,.95);
  color: #e11d48;
}
.webinar-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.featured-webinar-board .webinar-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.42;
}
.featured-webinar-board .webinar-card p {
  margin: 0 0 12px;
}
.featured-webinar-board .webinar-meta {
  margin: 8px 0 14px;
}
.featured-webinar-board .webinar-link {
  align-self: flex-start;
  margin-top: 0;
}
.featured-webinar-board .webinar-card.is-empty,
.featured-webinar-board .webinar-card.promo-card {
  padding: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(18,103,244,.16), transparent 32%),
    linear-gradient(180deg, #fff, #f6f9ff);
}
.featured-webinar-board .webinar-card.is-empty .webinar-card-body,
.featured-webinar-board .webinar-card.promo-card .webinar-card-body {
  min-height: 310px;
  justify-content: center;
}
.search-note { margin-top: 14px; color: #52637a; }
.search-note a { color: var(--blue); font-weight: 900; }
.cta-band {
  margin-top: 70px;
  margin-bottom: 70px;
  padding: 34px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #1267f4, #084dbb);
  color: #fff;
}
.cta-band h2 { margin: 0 0 8px; font-size: 28px; }
.cta-band p { margin: 0; color: rgba(255,255,255,.82); }
.cta-band .btn { background: #fff; color: var(--blue); border-color: #fff; box-shadow: none; }
.page-hero { padding: 92px 0 34px; }
.page-hero h1 { max-width: 960px; font-size: clamp(36px, 4vw, 56px); }
.flow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.flow-steps span {
  padding: 12px 16px;
  border-radius: 99px;
  background: #eaf2ff;
  color: #0752c6;
  font-weight: 900;
}
.feature-grid,
.usecase-grid { grid-template-columns: repeat(4, 1fr); }
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan-grid article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}
.plan-grid .recommended { border-color: var(--blue); transform: translateY(-10px); }
.plan-grid span { display: inline-flex; padding: 7px 12px; border-radius: 99px; background: #eaf2ff; color: var(--blue); font-weight: 900; }
.plan-grid h2 { font-size: 34px; margin: 24px 0 12px; }
.plan-grid p { color: #667085; line-height: 1.7; }
.plan-grid ul { padding-left: 20px; line-height: 2.1; color: #344054; }
.plan-grid a { display: flex; justify-content: center; padding: 14px; border: 1px solid var(--blue); border-radius: 8px; color: var(--blue); font-weight: 900; }
.plan-grid .recommended a { background: var(--blue); color: #fff; }
.notice {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 10px;
  background: #eef5ff;
  color: #475467;
  line-height: 1.7;
}
.guide-grid { grid-template-columns: repeat(3, 1fr); margin-top: 24px; }
.guide-grid article { display: flex; justify-content: space-between; align-items: center; }
.guide-grid strong { color: var(--blue); font-size: 22px; }
.partner-hero h1 {
  max-width: 1040px;
}
.partner-hero {
  padding-top: 46px;
}
.partner-category-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
  margin-bottom: 22px;
}
.partner-category-band span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #eff6ff;
  color: #1454c5;
  font-weight: 900;
  font-size: 14px;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.partner-card {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(20, 68, 140, .07);
  display: flex;
  flex-direction: column;
}
.partner-card.is-featured {
  border-color: rgba(18,103,244,.35);
  box-shadow: 0 18px 46px rgba(18,103,244,.14);
}
.partner-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.partner-card-top span,
.partner-card-top b {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}
.partner-card-top span {
  background: #eef5ff;
  color: var(--blue);
}
.partner-card-top b {
  background: #d5fff0;
  color: #007a5c;
}
.partner-card h2 {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.35;
}
.partner-card p {
  margin: 0;
  color: #52637a;
  line-height: 1.75;
}
.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.partner-tags em {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  background: #f8fbff;
  color: #344054;
  font-style: normal;
  font-weight: 800;
  font-size: 13px;
}
.partner-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}
.partner-card-bottom strong {
  color: #10223d;
}
.partner-card-bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  color: var(--blue);
  font-weight: 900;
}
.partner-ad-card {
  background:
    radial-gradient(circle at 86% 16%, rgba(18,103,244,.14), transparent 30%),
    linear-gradient(180deg, #fff, #f6f9ff);
}
.company-cta-card {
  margin-top: 28px;
  padding: 30px 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1267f4, #0f55c8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.company-cta-card p,
.company-cta-card h2,
.company-cta-card span {
  margin: 0;
  color: #fff;
}
.company-cta-card p {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  opacity: .85;
}
.company-cta-card h2 {
  margin-top: 7px;
  font-size: 26px;
}
.company-cta-card span {
  display: block;
  margin-top: 9px;
  opacity: .88;
  line-height: 1.6;
}
.company-cta-card a {
  min-width: 170px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  align-items: start;
}
.inquiry-form-card,
.inquiry-side-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(20, 68, 140, .07);
}
.inquiry-form-card h2,
.inquiry-side-card h2 {
  margin: 0 0 18px;
  font-size: 24px;
}
.inquiry-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.inquiry-form-grid label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}
.inquiry-form-grid label.wide {
  grid-column: 1 / -1;
}
.inquiry-form-grid input,
.inquiry-form-grid select,
.inquiry-form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
}
.inquiry-form-grid textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.65;
}
.inquiry-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 800;
}
.inquiry-alert p {
  margin: 0;
}
.inquiry-alert.success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #bbf7d0;
}
.inquiry-alert.error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}
.inquiry-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}
.inquiry-actions a,
.inquiry-actions button {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: 900;
}
.inquiry-actions a {
  border: 1px solid var(--line);
  color: #344054;
}
.inquiry-actions button {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  cursor: pointer;
}
.inquiry-side-card p {
  margin: 0 0 18px;
  color: #52637a;
  line-height: 1.65;
}
.inquiry-list {
  display: grid;
  gap: 10px;
}
.inquiry-list article,
.inquiry-empty {
  padding: 14px;
  border: 1px solid #edf2f7;
  border-radius: 10px;
  background: #f8fbff;
}
.inquiry-list span {
  display: inline-flex;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}
.inquiry-list strong {
  display: block;
  color: #101828;
  line-height: 1.45;
}
.inquiry-list em {
  display: block;
  margin-top: 7px;
  color: #667085;
  font-style: normal;
  font-size: 12px;
}
.inquiry-empty {
  color: #667085;
  text-align: center;
}
.table-wrap { margin-top: 30px; overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 18px; border-bottom: 1px solid var(--line); text-align: center; }
th:first-child, td:first-child { text-align: left; }
thead th { background: #f3f7ff; }
.usecase-grid { grid-template-columns: repeat(3, 1fr); }
.faq-list details {
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.faq-list summary {
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 900;
}
.faq-list p { margin: 0; padding: 0 22px 22px; color: #52637a; line-height: 1.75; }
.site-footer {
  background: #07182d;
  color: #d4deef;
}
.footer-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 30px 0;
  display: grid;
  grid-template-columns: minmax(320px, 1.45fr) repeat(3, minmax(150px, .75fr));
  align-items: start;
  gap: clamp(16px, 2.4vw, 38px);
}
.footer-inner > div { min-width: 0; }
.footer-inner img { width: 140px; }
.footer-inner h3 { color: #fff; margin: 0 0 10px; font-size: 18px; }
.footer-inner a { display: block; margin: 7px 0; color: #d4deef; }
.footer-inner p { margin: 10px 0 0; color: #d4deef; line-height: 1.5; }
.footer-brand a { display: inline-flex; margin: 0; }
.footer-logo {
  width: 156px;
  min-height: 42px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #fff;
}
.footer-logo img {
  width: 100%;
}
.footer-contact { color: #fff !important; font-weight: 800; }
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 9px;
  background: rgba(255,255,255,.96);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.footer-social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.footer-social img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.auth-page { background: linear-gradient(180deg, #fff, #f2f7ff); min-height: 100vh; }
.auth-main { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 70px 0 90px; }
.auth-card,
.register-card {
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.auth-card.single { width: min(520px, 100%); padding: 48px; }
.auth-card h1,
.register-card h1 { margin: 0 0 20px; font-size: 38px; }
.auth-form { display: grid; gap: 20px; }
.auth-form label { display: grid; gap: 8px; font-weight: 900; }
.auth-form small { color: #667085; font-weight: 500; }
.form-row,
.policy-links,
.login-hint {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: #475467;
}
.check { display: flex !important; grid-template-columns: none !important; flex-direction: row; align-items: center; font-weight: 600 !important; }
.check input { width: 18px; height: 18px; }
.submit-btn { height: 58px; width: 100%; }
.auth-bottom { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: var(--blue); font-weight: 800; }
.register-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 42px;
  padding: 48px;
}
.role-pane { padding-right: 40px; border-right: 1px solid var(--line); }
.role-select { margin: 28px 0; padding: 0; border: 0; display: grid; gap: 16px; }
.role-select legend { margin-bottom: 12px; font-weight: 900; }
.role-option {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr 22px;
  gap: 14px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.role-option.is-selected { border-color: var(--blue); background: #f4f8ff; }
.role-option input { grid-column: 3; grid-row: 1 / span 2; width: 20px; height: 20px; accent-color: var(--blue); }
.role-icon { grid-row: 1 / span 2; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: #eef5ff; }
.role-option strong { font-size: 20px; }
.role-option small { grid-column: 2; color: #667085; line-height: 1.6; }
.social-join { display: grid; gap: 12px; }
.social-join span { display: flex; align-items: center; gap: 10px; color: #667085; }
.social-join span::before,
.social-join span::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.social-join button,
.phone-row button {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
}
.phone-row { display: grid; grid-template-columns: 90px 1fr 150px; gap: 12px; }
.phone-row + label { margin-top: 2px; }
.policy-links { justify-content: flex-start; color: var(--blue); font-weight: 800; }
.login-hint { justify-content: center; margin: 4px 0 0; }
.login-hint a { color: var(--blue); font-weight: 900; }
@media (max-width: 1024px) {
  .header-inner { grid-template-columns: 190px 1fr auto; padding: 0 22px; gap: 18px; }
  .brand img { width: 156px; }
  .main-nav { gap: 16px; font-size: 16px; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .quick-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .usecase-grid, .plan-grid, .webinar-grid, .partner-grid, .inquiry-layout { grid-template-columns: 1fr; }
  .plan-grid .recommended { transform: none; }
  .register-card { grid-template-columns: 1fr; }
  .role-pane { padding-right: 0; border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 30px; }
}
@media (max-width: 768px) {
  .header-inner {
    min-height: 68px;
    grid-template-columns: 1fr auto;
  }
  .brand img { width: 156px; }
  .menu-toggle { display: block; }
  .main-nav,
  .header-actions {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
  }
  body.nav-open .main-nav,
  body.nav-open .header-actions { display: flex; }
  .main-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 0;
  }
  .main-nav a { padding: 14px 0; border-top: 1px solid var(--line); }
  .main-nav a.is-active::after { display: none; }
  .header-actions { padding: 0 0 16px; }
  .header-actions .btn { flex: 1; }
  .hero { padding: 46px 0; gap: 34px; }
  .hero h1 { font-size: 42px; }
  .eyebrow { font-size: 18px; }
  .search-row,
  .cta-band,
  .section-head,
  .form-row,
  .policy-links { flex-direction: column; align-items: stretch; }
  .search-row button { min-height: 52px; }
  .quick-grid, .feature-grid, .usecase-grid, .guide-grid, .partner-grid, .inquiry-form-grid { grid-template-columns: 1fr; }
  .company-cta-card,
  .inquiry-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .company-cta-card a,
  .inquiry-actions a,
  .inquiry-actions button {
    width: 100%;
  }
  .hero-card-top { min-height: 190px; }
  .hero-card-body h2 { font-size: 24px; }
  .page-hero { padding-top: 54px; }
  .footer-inner { grid-template-columns: 1fr; }
  .auth-main { padding-top: 34px; }
  .auth-card.single,
  .register-card { padding: 26px; }
  .phone-row { grid-template-columns: 1fr; }
  .role-option { grid-template-columns: 48px 1fr 22px; padding: 16px; }
}

.portal-notice-ticker {
  position: relative;
  top: auto;
  z-index: 90;
  border-bottom: 1px solid #dbe6f5;
  background: #f6f9ff;
}

.notice-ticker-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 52px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}
.notice-ticker-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #1267f4;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}
.notice-ticker-track {
  position: relative;
  min-height: 34px;
  overflow: hidden;
}
.notice-ticker-item {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(160px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  color: #0b1f3a;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}
.notice-ticker-item.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.notice-ticker-item strong,
.notice-ticker-item span,
.notice-ticker-item em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.notice-ticker-item strong {
  font-size: 15px;
  font-weight: 900;
}
.notice-ticker-item span {
  color: #52637a;
  font-size: 14px;
}
.notice-ticker-item em {
  color: #667085;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}
.notice-ticker-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #cbd8ea;
  border-radius: 8px;
  background: #fff;
  color: #0b1f3a;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .notice-ticker-inner {
    width: min(100% - 28px, 1180px);
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
  }
  .notice-ticker-item {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  .notice-ticker-item span,
  .notice-ticker-item em {
    display: none;
  }
}
@media (max-width: 560px) {
  .notice-ticker-inner {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .notice-ticker-more {
    display: none;
  }
  .notice-ticker-label {
    padding: 0 10px;
  }
}

/* Notice ticker spacing refinement */
.portal-notice-ticker + .site-main .hero {
  min-height: auto;
  padding-top: 30px;
}
.portal-notice-ticker + .site-main .page-hero {
  padding-top: 34px;
}
@media (max-width: 768px) {
  .portal-notice-ticker + .site-main .hero {
    padding-top: 24px;
  }
  .portal-notice-ticker + .site-main .page-hero {
    padding-top: 26px;
  }
}

/* Header customer-support dropdown */
.header-inner,
.main-nav {
    overflow: visible;
}

.main-nav .nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    overflow: visible;
}

.main-nav .nav-dropdown-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 29px 0;
    color: #172033;
    text-decoration: none;
    cursor: pointer;
    font-weight: 800;
    white-space: nowrap;
}

.main-nav .nav-dropdown-toggle:hover,
.main-nav .nav-dropdown-toggle.is-active {
    color: var(--blue);
}

.main-nav .nav-dropdown-menu {
    position: absolute;
    top: 58px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 150px;
    background: #fff;
    border: 1px solid #dbe3f0;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
    padding: 8px;
    display: none;
    z-index: 10001;
}

.main-nav .nav-dropdown-menu a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 9px 12px;
    color: #111827;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    border-radius: 8px;
    white-space: nowrap;
}

.main-nav .nav-dropdown-menu a::after {
    display: none !important;
}

.main-nav .nav-dropdown-menu a:hover {
    background: #eff6ff;
    color: #2563eb;
}

.main-nav .nav-dropdown:hover .nav-dropdown-menu,
.main-nav .nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
}

@media (max-width: 768px) {
    .main-nav .nav-dropdown {
        display: block;
    }

    .main-nav .nav-dropdown-toggle {
        display: block;
        padding: 14px 0;
        border-top: 1px solid var(--line);
    }

    .main-nav .nav-dropdown-menu {
        position: static;
        transform: none;
        display: block;
        min-width: 0;
        margin: 0 0 8px;
        border-radius: 10px;
        box-shadow: none;
        background: #f8fbff;
        z-index: auto;
    }
}

.site-footer .footer-inline {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.site-footer .footer-brand {
  flex: 1 1 300px;
  min-width: 240px;
}

.site-footer .footer-col {
  flex: 0 0 120px;
  min-width: 0;
}

.site-footer .footer-col:nth-child(3) {
  flex-basis: 160px;
}

.site-footer .footer-inline img {
  width: 136px;
}

.site-footer .footer-logo img {
  width: 100%;
}

.site-footer .footer-social img {
  width: 100%;
  height: 100%;
}

.site-footer .footer-inline h3 {
  margin: 0 0 10px;
}

.site-footer .footer-inline a {
  margin: 7px 0;
}

.site-footer .footer-inline p {
  margin: 10px 0 0;
}

.promo-wide-card {
  margin-top: 46px;
  margin-bottom: 78px;
  padding: 32px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #1267f4, #0f55c8);
  color: #fff;
  box-shadow: none;
}

.promo-wide-card h2 {
  margin: 0;
  color: #fff;
  font-size: 27px;
  line-height: 1.35;
}

.promo-wide-card p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, .88);
  line-height: 1.55;
}

@media (max-width: 820px) {
  .promo-wide-card {
    margin-bottom: 54px;
    padding: 26px;
  }
}

@media (max-width: 600px) {
  .site-footer .footer-inline {
    flex-wrap: wrap !important;
  }
  .site-footer .footer-brand,
  .site-footer .footer-col,
  .site-footer .footer-col:nth-child(3) {
    flex: 1 1 100%;
  }
}
