:root {
  --ink: #111315;
  --text: #2f3437;
  --muted: #6a7278;
  --line: #dfe6e3;
  --panel: #ffffff;
  --soft: #f5faf7;
  --green: #00a86b;
  --green-dark: #00784e;
  --aqua: #00a7b5;
  --yellow: #ffe066;
  --shadow: 0 18px 45px rgba(17, 19, 21, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 88px;
  color: var(--text);
  background: #ffffff;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

body.simulation-open {
  overflow: hidden;
}

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

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 100;
  width: min(calc(100% - 28px), 1180px);
  transform: translateX(-50%);
  padding: 0;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(223, 230, 227, 0.95);
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(17, 19, 21, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 18px;
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  color: var(--ink);
}

.brand-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  font-size: 13px;
  line-height: 1.35;
}

.brand-alert {
  color: #d71920;
  font-weight: 950;
}

.brand-mark {
  display: grid;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: var(--green);
  border-radius: 8px;
  font-size: 13px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  white-space: nowrap;
}

.nav a:hover,
.nav-drop-button:hover {
  color: var(--green-dark);
}

.nav a.nav-cta,
.nav button.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  box-shadow: 0 8px 18px rgba(0, 120, 78, 0.22);
}

.nav a.nav-cta:hover,
.nav button.nav-cta:hover {
  color: #ffffff !important;
  filter: brightness(1.05);
}

.nav button.nav-cta.nav-simulation {
  background: linear-gradient(135deg, #1a4480 0%, #102a5c 100%);
  box-shadow: 0 8px 18px rgba(16, 42, 92, 0.22);
}

.nav button.nav-cta.nav-simulation:hover {
  filter: brightness(1.08);
}

.nav-dropdown {
  position: relative;
}

.nav-drop-button {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  min-width: 160px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-6px);
  visibility: hidden;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.nav-drop-menu a {
  padding: 10px 12px;
  color: var(--ink);
  border-radius: 8px;
  white-space: nowrap;
}

.nav-drop-menu a:hover {
  color: var(--green-dark);
  background: var(--soft);
}

.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(17, 19, 21, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.45fr);
  column-gap: clamp(28px, 4.5vw, 64px);
  row-gap: 16px;
  align-items: start;
  min-height: calc(100vh - 88px);
  padding: clamp(40px, 5vw, 76px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 168, 107, 0.13), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f3fbf8 58%, #ecfffb 100%);
}

.hero-title {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0 0 8px;
  color: #000000;
  font-size: clamp(34px, 3.7vw, 68px);
  font-weight: 950;
  line-height: 1.08;
  text-align: center;
  white-space: nowrap;
}

.hero-copy {
  display: grid;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.18;
}

h1 {
  max-width: 980px;
  font-size: clamp(40px, 3.2vw, 60px);
  word-break: keep-all;
  line-break: keep-all;
}

.hero-subtitle {
  max-width: 920px;
  margin-top: 4px;
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 900;
  line-height: 1.45;
  color: #243038;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
}

h3 {
  font-size: 21px;
}

.one-line-title {
  white-space: nowrap;
  font-size: clamp(26px, 3.4vw, 46px);
}

@media (min-width: 981px) {
  .pc-one-line {
    max-width: none;
    white-space: nowrap;
  }
}

.hero-text {
  max-width: 960px;
  margin: 24px 0 0;
  color: #3d4549;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
  word-break: keep-all;
  line-break: keep-all;
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 10px 22px rgba(0, 168, 107, 0.24);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--green-dark);
  background: #ffffff;
  border-color: var(--line);
}

.hero-stats {
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-stats div {
  min-width: 0;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-stats dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.keep-word {
  white-space: nowrap;
}

.keep-phrase {
  white-space: nowrap;
}

.channel-note {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.channel-note p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  word-break: keep-all;
  line-break: keep-all;
}

.channel-note p + p {
  margin-top: 14px;
}

.channel-note strong {
  color: #ff0000;
  font-weight: 950;
}

.search-demo {
  width: min(100%, 400px);
  justify-self: center;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  gap: 7px;
  padding: 14px;
  background: #f0f4f2;
  border-bottom: 1px solid var(--line);
}

.browser-bar span {
  width: 11px;
  height: 11px;
  background: #aab5b0;
  border-radius: 50%;
}

.youtube-search {
  flex: 1;
  padding: clamp(20px, 2.8vw, 28px);
}

.search-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.search-label {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.search-box {
  padding: 15px 18px;
  color: var(--ink);
  background: #f7faf9;
  border: 2px solid var(--green);
  border-radius: 999px;
  font-size: 20px;
  font-weight: 900;
}

.suggestions {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.suggestions li {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

.suggestions li:last-child {
  border-bottom: 0;
}

.suggestions .highlight {
  color: var(--ink);
  background: rgba(255, 224, 102, 0.55);
  font-weight: 900;
}

.demo-note {
  margin: 0;
  padding: 14px 20px;
  color: var(--green-dark);
  background: var(--soft);
  font-weight: 800;
}

.exposure-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: #ff0000;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  word-break: keep-all;
  white-space: nowrap;
}

.exposure-note span {
  display: block;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.lead-block {
  max-width: 850px;
  font-size: clamp(17px, 2vw, 21px);
}

.lead-block p:first-child {
  margin-top: 0;
}

.concept-highlight {
  color: #102a5c;
  font-weight: 800;
}

.concept-highlight strong {
  color: #071b3f;
  font-weight: 950;
}

.simulation-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 26px;
  color: #ffe066;
  background: #102a5c;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(16, 42, 92, 0.18);
}

.simulation-trigger--inline {
  flex-shrink: 0;
  padding: 8px 14px;
  font-size: 12px;
  box-shadow: 0 6px 16px rgba(16, 42, 92, 0.16);
}

.simulation-trigger--section {
  margin-top: 4px;
}

.simulation-icon {
  flex-shrink: 0;
}

.simulation-trigger:hover {
  filter: brightness(1.08);
}

.simulation-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.simulation-modal[hidden] {
  display: none;
}

.simulation-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 21, 0.55);
}

.simulation-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  max-height: calc(100vh - 40px);
  padding: 24px 20px;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(17, 19, 21, 0.22);
}

.simulation-dialog h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 24px;
}

.consent-dialog-text {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  word-break: keep-all;
}

.consent-dialog .simulation-actions {
  margin-top: 0;
}

.simulation-field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.simulation-field span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.simulation-field input {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
}

.simulation-field input::placeholder {
  color: #9aa3a8;
  font-weight: 600;
}

.simulation-field input:focus {
  outline: 2px solid rgba(0, 168, 107, 0.35);
  border-color: var(--green);
}

.simulation-hint {
  margin: 0 0 12px;
  color: #d71920;
  font-size: 13px;
  font-weight: 800;
}

.simulation-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.simulation-preview {
  width: 100%;
  margin-bottom: 16px;
}

.simulation-preview .search-box {
  font-size: 18px;
}

.red-emphasis {
  color: #d71920;
  font-weight: 950;
}

.comparison-section {
  background:
    linear-gradient(135deg, #102a5c 0%, #14386f 48%, #0a6b69 100%);
  color: #ffffff;
}

.comparison-section h2,
.comparison-section h3 {
  color: #ffffff;
}

.comparison-section .eyebrow {
  color: #ffe066;
}

.comparison-section .section-heading {
  max-width: 1120px;
}

.comparison-section .section-heading p:last-child {
  max-width: 940px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-break: keep-all;
  word-break: keep-all;
  overflow-wrap: normal;
}

@media (min-width: 981px) {
  .comparison-section .section-heading p.pc-one-line {
    max-width: none;
    font-size: 17px;
  }
}

.comparison-section {
  display: flex;
  flex-direction: column;
}

.mobile-vs-card {
  display: none;
}

.mobile-vs-title {
  margin: 0 0 14px;
  color: #ffe066;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.35;
  text-align: center;
  word-break: keep-all;
}

.mobile-vs-table {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.mobile-vs-row {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1fr;
}

.mobile-vs-row span {
  padding: 12px 8px;
  border-right: 1px solid #e8eef5;
  border-bottom: 1px solid #e8eef5;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  word-break: keep-all;
}

.mobile-vs-row span:last-child {
  border-right: 0;
}

.mobile-vs-row:last-child span {
  border-bottom: 0;
}

.mobile-vs-row.head {
  color: #102a5c;
  background: #ffe066;
}

.mobile-vs-row.head span {
  font-size: 11px;
  font-weight: 950;
  text-align: center;
}

.mobile-vs-row:not(.head) span:first-child {
  color: #102a5c;
  background: #f3f7fb;
  font-weight: 950;
}

.mobile-vs-row:not(.head) span:not(:first-child) {
  color: #263238;
  background: #ffffff;
}

.mobile-vs-row:not(.head) span:last-child {
  color: #0a5c44;
  background: #f4fff9;
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.ad-cost-table {
  margin-top: 34px;
  overflow: hidden;
  color: #263238;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.ad-cost-title {
  padding: 18px 20px;
  color: #102a5c;
  background: #ffe066;
  font-size: 24px;
  font-weight: 950;
}

.ad-cost-body,
.ad-cost-pair {
  display: contents;
}

.ad-cost-row {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1.1fr 1fr 1.15fr;
}

.ad-cost-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 14px;
  border-right: 1px solid #e1e7ea;
  border-bottom: 1px solid #e1e7ea;
  font-size: 14px;
  text-align: center;
  line-break: keep-all;
  word-break: keep-all;
}

.ad-cost-row span:last-child {
  border-right: 0;
}

.ad-cost-row:last-child span {
  border-bottom: 0;
}

.ad-cost-row.head {
  color: #ffffff;
  background: #102a5c;
  font-weight: 950;
}

.ad-cost-row.featured {
  color: #062315;
  background: #e9fff4;
  border: 3px solid #d71920;
  font-weight: 950;
}

.ad-cost-row.featured span {
  border-top: 0;
  border-bottom: 0;
}

.ad-cost-row.featured span:first-child {
  border-left: 0;
}

.ad-cost-row.featured span:last-child {
  border-right: 0;
}

.mobile-table-hint {
  display: none;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  line-break: keep-all;
}

.cost-basis {
  margin-top: 16px;
  padding: 20px;
  color: #102a5c;
  background: #fff8d8;
  border: 1px solid rgba(255, 224, 102, 0.7);
  border-radius: 8px;
}

.cost-basis h3 {
  margin-bottom: 10px;
  color: #102a5c;
}

.cost-basis p {
  margin: 8px 0 0;
  color: #31465f;
  font-weight: 800;
  line-break: keep-all;
  word-break: keep-all;
}

.cost-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.cost-detail-grid article {
  padding: 16px;
  background: #ffffff;
  border: 1px solid rgba(16, 42, 92, 0.12);
  border-radius: 8px;
}

.cost-detail-grid strong {
  display: block;
  color: #d71920;
  font-size: 16px;
  line-height: 1.45;
  word-break: keep-all;
}

.cost-highlight {
  margin-top: 14px;
  padding: 18px;
  background: #e9fff4;
  border: 3px solid #d71920;
  border-radius: 8px;
}

.cost-highlight strong {
  display: block;
  color: #d71920;
  font-size: 20px;
  font-weight: 950;
}

.cost-disclaimer {
  color: #5b6670;
  font-size: 13px;
}

.intent-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.intent-flow article,
.appeal-box {
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
}

.intent-flow span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  color: #102a5c;
  background: #ffe066;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

.intent-flow strong {
  display: block;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.5;
  word-break: keep-all;
}

.intent-flow p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.appeal-box {
  margin-top: 16px;
  background: rgba(255, 224, 102, 0.13);
}

.appeal-box h3 {
  margin-bottom: 14px;
}

.appeal-box ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.appeal-box li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  word-break: keep-all;
}

.appeal-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #59ff9d;
  font-weight: 950;
}

.comparison-cards article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
}

.old-ad {
  background: rgba(255, 255, 255, 0.09);
}

.new-ad {
  background: rgba(0, 168, 107, 0.3);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.comparison-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: #102a5c;
  background: #ffe066;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

.comparison-cards ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.comparison-cards li {
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.88);
}

.danger-text {
  color: #ff4a4a;
  font-weight: 950;
}

.comparison-table {
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.65fr 1fr 1.25fr;
}

.comparison-row span {
  padding: 15px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.comparison-row span:last-child {
  border-right: 0;
}

.comparison-row:last-child span {
  border-bottom: 0;
}

.comparison-row.head {
  color: #102a5c;
  background: #ffe066;
  font-weight: 950;
}

.comparison-punchline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.comparison-punchline strong {
  display: block;
  padding: 18px;
  color: #102a5c;
  background: #ffffff;
  border-radius: 8px;
  font-size: 20px;
}

.comparison-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.benefit-grid,
.package-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-grid {
  gap: 14px;
  align-items: stretch;
}

.package-scroll {
  width: 100%;
}

@media (max-width: 720px) {
  .package-scroll {
    margin-right: -18px;
    margin-left: -18px;
    padding-right: 18px;
    padding-left: 18px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .package-grid {
    grid-template-columns: repeat(3, minmax(148px, 1fr));
    width: max(100%, 460px);
    gap: 10px;
  }

  .package-features {
    display: none;
  }

  .package {
    min-height: 260px;
    padding: 16px 10px 14px;
  }

  .package-price {
    font-size: 17px;
  }

  .package-label {
    font-size: 12px;
  }

  .package-note {
    min-height: 32px;
    font-size: 11px;
    line-height: 1.35;
  }

  .package-cta {
    padding: 10px 8px;
    font-size: 12px;
  }

  .package-deco {
    top: 48px;
    right: -4px;
    width: 72px;
  }

  .package-deco-crown {
    width: 54px;
  }

  .package-deco-firework {
    width: 68px;
  }

  .package.featured .package-features,
  .package.featured .package-cta {
    width: 100%;
  }

  .ranking-group {
    gap: 8px;
  }

  .ranking-group article {
    min-height: 118px;
    padding: 12px 6px;
  }

  .ranking-group strong {
    font-size: 13px;
  }

  .ranking-group p {
    font-size: 11px;
  }

  .ranking-group .rank {
    padding: 4px 8px;
    font-size: 12px;
  }
}

.benefit-grid article,
.package,
.industry-grid article {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.benefit-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--green-dark);
  font-weight: 900;
}

.benefit-grid p,
.industry-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.process-band {
  background: var(--soft);
}

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

.process li {
  position: relative;
  min-height: 150px;
  padding: 22px 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process li::before {
  counter-increment: process;
  content: counter(process);
  display: grid;
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  place-items: center;
  color: #ffffff;
  background: var(--aqua);
  border-radius: 50%;
  font-weight: 900;
}

.process strong,
.process span {
  display: block;
}

.process span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.ranking-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.ranking-section .section-heading p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

@media (min-width: 981px) {
  .ranking-section .section-heading p.pc-one-line {
    max-width: none;
    font-size: 16px;
  }
}

.ranking-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.ranking-group article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 132px;
  padding: 14px 8px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #dbe6f4;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(16, 42, 92, 0.07);
}

.ranking-group strong {
  font-size: 15px;
  line-height: 1.25;
  word-break: keep-all;
}

.ranking-group p {
  font-size: 12px;
  line-height: 1.35;
  word-break: keep-all;
}

@media (min-width: 981px) {
  .ranking-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .ranking-group {
    display: contents;
  }

  .ranking-group article {
    display: grid;
    gap: 8px;
    align-items: start;
    min-height: 142px;
    padding: 20px;
    text-align: left;
    border-radius: 8px;
  }

  .ranking-group strong {
    font-size: 19px;
  }

  .ranking-group p {
    font-size: inherit;
  }
}

.ranking-grid strong {
  color: var(--ink);
  font-size: 19px;
}

.ranking-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.rank {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  color: #ffffff;
  background: #102a5c;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 950;
}

.ranking-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-top: 22px;
  padding: 18px 20px;
  color: #102a5c;
  background: #eef6ff;
  border: 1px solid #cfe0f6;
  border-radius: 8px;
}

.ranking-summary strong {
  font-size: 22px;
}

.ranking-summary span {
  color: #36516f;
  font-weight: 800;
}

.package {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 420px;
  padding: 28px 18px 22px;
  text-align: center;
  border: 1px solid #dadce0;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(17, 19, 21, 0.06);
}

.package.featured {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--green);
  box-shadow: 0 8px 28px rgba(0, 168, 107, 0.16);
}

.package-deco {
  position: absolute;
  top: 58px;
  right: -2px;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 108px;
  pointer-events: none;
  opacity: 1;
}

.package-deco-crown {
  width: 82px;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(255, 193, 7, 0.45));
  animation: package-deco-float 2.6s ease-in-out infinite;
}

.package-deco-firework {
  width: 102px;
  height: auto;
  margin-top: -8px;
  filter: drop-shadow(0 4px 10px rgba(255, 111, 0, 0.35));
  animation: package-deco-burst 1.8s ease-in-out infinite;
  transform-origin: center 28%;
}

@keyframes package-deco-float {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg) scale(1);
  }

  50% {
    transform: translateY(-7px) rotate(3deg) scale(1.04);
  }
}

@keyframes package-deco-burst {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 4px 10px rgba(255, 111, 0, 0.35));
  }

  35% {
    transform: scale(1.14);
    filter: drop-shadow(0 6px 16px rgba(255, 82, 82, 0.55));
  }

  55% {
    transform: scale(1.06);
    filter: drop-shadow(0 5px 14px rgba(255, 179, 0, 0.48));
  }
}

.package.featured > :not(.package-deco) {
  position: relative;
  z-index: 1;
}

.package.featured .package-features,
.package.featured .package-cta {
  width: calc(100% - 78px);
  align-self: flex-start;
  margin-left: 0;
}

.package-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.package-badge {
  margin: 0 0 10px;
  padding: 4px 10px;
  color: var(--green-dark);
  background: var(--soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.package-price {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
}

.package-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-break: keep-all;
}

.package-features {
  width: 100%;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.package-features li {
  position: relative;
  margin: 0;
  padding: 8px 0 8px 18px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  border-top: 1px solid #eef2f4;
}

.package-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 900;
}

.package-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 12px 16px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.package-cta:hover {
  background: #f8f9fa;
}

.package-cta.primary {
  color: #ffffff;
  background: var(--green);
  border-color: var(--green);
}

.package-cta.primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.tag {
  width: fit-content;
  margin: 0 0 16px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: var(--soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.muted {
  color: var(--muted);
}

.check-list {
  margin: 22px 0 0;
  padding-left: 20px;
}

.check-list li {
  margin: 9px 0;
}

.notice {
  margin: 24px 0 0;
  padding: 16px 18px;
  color: var(--green-dark);
  background: var(--soft);
  border: 1px solid rgba(0, 168, 107, 0.22);
  border-radius: 8px;
  font-weight: 800;
}

.longterm-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.longterm-section .section-heading {
  max-width: 1120px;
}

.longterm-section .section-heading p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  word-break: keep-all;
}

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

.strategy-grid article {
  padding: 28px;
  background: #ffffff;
  border: 1px solid #dbe6f4;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(16, 42, 92, 0.08);
}

.strategy-number {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 11px;
  color: #ffffff;
  background: #102a5c;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

.strategy-grid ul {
  display: grid;
  gap: 16px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.strategy-grid li {
  position: relative;
  padding-left: 24px;
  color: #4f5a60;
  word-break: keep-all;
}

.strategy-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
}

.strategy-grid strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 17px;
}

.strategy-punch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  margin-top: 20px;
  padding: 20px;
  color: #102a5c;
  background: #e9fff4;
  border: 2px solid var(--green);
  border-radius: 8px;
}

.strategy-punch strong {
  font-size: 22px;
  font-weight: 950;
}

.strategy-punch span {
  color: #36516f;
  font-weight: 800;
}

.industries {
  background: #fbfefd;
}

.industry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.estimate-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbf8 100%);
}

.estimate-copy {
  position: sticky;
  top: 100px;
}

.estimate-form {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  grid-column: span 3;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.estimate-form label:nth-of-type(3),
.estimate-form label:nth-of-type(4),
.estimate-form label:nth-of-type(5) {
  grid-column: span 2;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #cfd8d4;
  border-radius: 8px;
  font: inherit;
}

input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  accent-color: var(--green);
}

input::placeholder,
textarea::placeholder {
  color: #8a9490;
  opacity: 1;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 168, 107, 0.18);
  border-color: var(--green);
}

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

.privacy-consent {
  padding: 18px;
  color: #374148;
  background: #fbfdfc;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.55;
}

.privacy-consent h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.privacy-consent p {
  margin: 8px 0 14px;
}

.privacy-consent ul {
  margin: 7px 0 14px;
  padding-left: 20px;
}

.privacy-consent li {
  margin: 3px 0;
}

.consent-check {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.privacy-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-note.is-success {
  color: var(--green-dark);
  font-weight: 800;
}

.form-note.is-error {
  color: #b42318;
  font-weight: 800;
}

.botcheck {
  display: none;
}

.privacy-note {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  padding: 13px 14px;
  color: #566168;
  background: #f7faf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.55;
}

.business-info {
  padding: 24px clamp(20px, 5vw, 72px) 44px;
  background: #f4fbf8;
}

.business-info-panel {
  display: grid;
  grid-template-columns: 2.1fr 5.75fr;
  gap: 20px;
  align-items: stretch;
  max-width: 1360px;
  margin: 0 auto;
}

.back-to-top {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  min-height: 100%;
  padding: 10px;
  background: linear-gradient(160deg, #1a4480 0%, #102a5c 100%);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(16, 42, 92, 0.24);
  text-decoration: none;
}

.back-to-top span {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 120, 78, 0.28);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
  word-break: keep-all;
}

.back-to-top:hover span {
  color: var(--yellow);
  filter: brightness(1.06);
}

.business-info-panel dl {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.85fr 0.85fr 0.85fr minmax(360px, 3.4fr);
  gap: 12px 20px;
  margin: 0;
  padding: 18px 22px;
  color: #566168;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.business-info dt {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.business-info dd {
  margin: 4px 0 0;
  font-size: 14px;
}

.business-address dd {
  line-height: 1.4;
}

@media (min-width: 981px) {
  .business-address dd {
    white-space: nowrap;
  }
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: #ffffff;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--yellow);
  font-weight: 900;
}

@media (max-width: 1080px) {
  body {
    padding-top: 78px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 16px;
  }

  .header-inner {
    padding: 10px 14px;
  }

  .brand-text {
    font-size: 11px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 110;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: min(320px, 86vw);
    height: 100vh;
    padding: 88px 20px 24px;
    overflow-y: auto;
    color: var(--ink);
    font-size: 16px;
    background: #ffffff;
    border-left: 1px solid var(--line);
    box-shadow: -12px 0 40px rgba(17, 19, 21, 0.12);
    transform: translateX(110%);
    transition: transform 0.28s ease;
  }

  .nav.is-open {
    transform: translateX(0);
  }

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

  .nav a:not(.nav-cta):hover {
    background: var(--soft);
  }

  .nav a.nav-cta,
  .nav button.nav-cta {
    width: 100%;
    margin-top: 8px;
    padding: 12px 16px;
    font-size: 16px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-drop-button {
    width: 100%;
    padding: 12px 14px;
    text-align: left;
    border-radius: 12px;
  }

  .nav-drop-button:hover {
    background: var(--soft);
  }

  .nav-drop-menu {
    position: static;
    min-width: 0;
    margin-top: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .nav-drop-menu a {
    padding-left: 28px;
  }
}

@media (max-width: 980px) {
  .comparison-legacy {
    display: none;
  }

  .mobile-vs-card {
    display: block;
    margin-top: 14px;
  }

  .appeal-box {
    margin-top: 22px;
  }
}

@media (min-width: 981px) {
  .mobile-vs-card {
    display: none;
  }

  .comparison-legacy {
    display: contents;
  }

  .intent-flow {
    order: 1;
  }

  .appeal-box {
    order: 2;
  }

  .comparison-cards {
    order: 3;
  }

  .mobile-table-hint {
    order: 4;
  }

  .comparison-table {
    order: 5;
  }

  .comparison-punchline {
    order: 6;
  }

  .comparison-note {
    order: 7;
  }
}

@media (max-width: 980px) {
  .hero,
  .two-column,
  .estimate-section {
    grid-template-columns: 1fr;
  }

  .channel-note {
    width: 100%;
  }

  .benefit-grid,
  .strategy-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

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

  .intent-flow,
  .cost-detail-grid,
  .appeal-box ul,
  .comparison-punchline,
  .comparison-cards {
    grid-template-columns: 1fr;
  }

  .mobile-table-hint {
    display: block;
  }

  .ad-cost-table {
    margin-top: 18px;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .ad-cost-title {
    margin-bottom: 14px;
    padding: 16px;
    font-size: 20px;
    border-radius: 12px;
  }

  .ad-cost-row.head {
    display: none;
  }

  .ad-cost-body {
    display: block;
  }

  .ad-cost-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 12px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dbe3e7;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .ad-cost-pair:has(.featured) {
    border: 3px solid #d71920;
  }

  .ad-cost-row:not(.head) {
    display: block;
    margin-bottom: 12px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #dbe3e7;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .ad-cost-pair .ad-cost-row:not(.head) {
    margin-bottom: 0;
    padding: 12px 10px;
    background: #ffffff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .ad-cost-pair .ad-cost-row:first-child {
    border-right: 1px solid #edf1f3;
  }

  .ad-cost-pair .ad-cost-row.featured {
    border: 0;
    background: #e9fff4;
  }

  .ad-cost-pair .ad-cost-row:not(.head) span:first-child {
    font-size: 14px;
  }

  .ad-cost-pair .ad-cost-row:not(.head) span:not(:first-child) {
    font-size: 12px;
  }

  .ad-cost-row:not(.head) span {
    display: block;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid #edf1f3;
    text-align: left;
  }

  .ad-cost-row:not(.head) span:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .ad-cost-row:not(.head) span:first-child {
    padding-top: 0;
    padding-bottom: 12px;
    margin-bottom: 4px;
    color: #102a5c;
    border-bottom: 2px solid #102a5c;
    font-size: 17px;
    font-weight: 950;
    line-height: 1.35;
  }

  .ad-cost-row.featured span:first-child::after {
    content: "추천";
    display: inline-block;
    margin-left: 8px;
    padding: 3px 8px;
    color: #ffffff;
    background: #d71920;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    vertical-align: middle;
  }

  .ad-cost-row:not(.head) span:not(:first-child)::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: #6a7278;
    font-size: 12px;
    font-weight: 800;
  }

  .ad-cost-row:not(.head) span:not(:first-child) {
    color: #263238;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
  }

  .ad-cost-row.featured:not(.head) span:not(:last-child) {
    border-bottom: 1px solid #d8efe4;
  }

  .comparison-table {
    margin-top: 18px;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .comparison-row.head {
    display: none;
  }

  .comparison-row:not(.head) {
    display: block;
    margin-bottom: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
  }

  .comparison-row:not(.head) span {
    display: block;
    padding: 0;
    border: 0;
  }

  .comparison-row:not(.head) span:first-child {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffe066;
    font-size: 16px;
    font-weight: 950;
  }

  .comparison-row:not(.head) span:not(:first-child) {
    margin-top: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
  }

  .comparison-row:not(.head) span:not(:first-child)::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 800;
  }

  .estimate-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  body {
    padding-top: 72px;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    border-radius: 14px;
  }

  .header-inner {
    gap: 12px;
    padding: 10px 12px;
  }

  .brand-text {
    font-size: 14px;
  }

  h1 {
    font-size: 39px;
  }

  .hero-title {
    white-space: normal;
    font-size: 46px;
  }

  .hero-subtitle {
    font-size: 28px;
  }

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

  .one-line-title {
    white-space: normal;
    font-size: 30px;
  }

  .benefit-grid,
  .comparison-cards,
  .strategy-grid,
  .industry-grid,
  .process,
  .estimate-form {
    grid-template-columns: 1fr;
  }

  .business-info dl {
    grid-template-columns: 1fr;
  }

  .business-info-panel {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .back-to-top {
    min-height: 88px;
    font-size: 22px;
  }

  label,
  .estimate-form label:nth-of-type(3),
  .estimate-form label:nth-of-type(4),
  .estimate-form label:nth-of-type(5) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 48px 18px;
  }

  .comparison-section .section-heading p:last-child {
    font-size: 16px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 34px 18px 42px;
  }

  .hero-title {
    margin-bottom: 26px;
    font-size: 34px;
    white-space: normal;
    word-break: keep-all;
  }

  .hero h1,
  .hero-subtitle {
    max-width: none;
    font-size: 26px;
  }

  .hero h1 .keep-phrase,
  .keep-phrase,
  .keep-word {
    white-space: normal;
  }

  .hero-text {
    max-width: none;
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .search-demo {
    width: 100%;
    margin-top: 28px;
  }

  .simulation-trigger--inline {
    padding: 7px 11px;
    font-size: 11px;
    gap: 5px;
  }

  .simulation-trigger--inline .simulation-icon {
    width: 12px;
    height: 12px;
  }

  .simulation-trigger--section {
    width: 100%;
    max-width: 100%;
    padding: 11px 18px;
    font-size: 14px;
  }

  .channel-note {
    width: 100%;
    margin-top: 18px;
    padding: 16px;
  }

  .channel-note p {
    font-size: 16px;
  }

  .exposure-note {
    margin-top: 12px;
    font-size: 14px;
    white-space: normal;
  }

  .one-line-title {
    white-space: normal;
  }

  .comparison-punchline strong,
  .strategy-punch strong {
    font-size: 18px;
  }

  .business-info {
    padding: 18px 16px 34px;
  }
}
