/* 제이에스컴퍼니 — Google Ads landing */
:root {
  --blue-950: #062a4a;
  --blue-900: #0a3d6b;
  --blue-700: #1368b3;
  --blue-600: #1a7ad4;
  --blue-500: #2b8fe8;
  --blue-100: #e7f2fb;
  --blue-50: #f3f8fc;
  --ink: #0f1c2a;
  --ink-soft: #3d5166;
  --mute: #6b7f94;
  --line: #d7e3ef;
  --white: #ffffff;
  --wash: #f7fafd;
  --radius: 4px;
  --shadow-soft: 0 18px 50px rgba(10, 61, 107, 0.08);
  --font-display: "Outfit", "Pretendard Variable", Pretendard, sans-serif;
  --font-body: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", sans-serif;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --max: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 480px at 10% -10%, rgba(43, 143, 232, 0.12), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(19, 104, 179, 0.08), transparent 50%),
    linear-gradient(180deg, #fbfdff 0%, var(--wash) 40%, #ffffff 100%);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 5.4rem;
}

img {
  max-width: 100%;
  display: block;
}

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

em {
  font-style: normal;
  color: var(--blue-700);
  font-weight: 800;
}

.container {
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
}

/* Impact text */
.impact {
  display: inline-block;
  position: relative;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.impact--blue {
  color: #7ec4ff;
}

.impact.is-armed {
  animation: impactPop 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.impact.is-armed::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  bottom: 0.08em;
  height: 0.28em;
  background: rgba(43, 143, 232, 0.28);
  z-index: -1;
  transform-origin: left center;
  animation: impactUnderline 0.7s ease 0.12s both;
}

.hero .impact.is-armed::after {
  background: rgba(126, 196, 255, 0.35);
}

@keyframes impactPop {
  0% {
    opacity: 0.35;
    transform: translateY(0.35em) scale(0.96);
  }
  60% {
    opacity: 1;
    transform: translateY(-0.06em) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes impactUnderline {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: visible;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(6, 42, 74, 0.05);
}

.header-inner {
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
  height: 4.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: min(72vw, 17.5rem);
  overflow: visible;
  flex-shrink: 1;
}

.brand-logo {
  width: auto;
  height: 3rem;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  background: transparent;
  display: block;
  padding-bottom: 1px;
}

@media (min-width: 920px) {
  .brand {
    max-width: 22rem;
  }

  .brand-logo {
    height: 3.55rem;
  }
}

.header-nav {
  display: none;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.header-nav a:hover {
  color: var(--blue-700);
}

.nav-cta {
  color: var(--blue-700) !important;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.48rem 0.85rem;
  background: linear-gradient(125deg, #2b8fe8 0%, #1a7ad4 42%, #0a3d6b 100%);
  background-size: 180% 180%;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 750;
  border-radius: var(--radius);
  white-space: nowrap;
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(26, 122, 212, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: btnGlow 3.2s ease-in-out infinite;
}

.header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.38) 50%,
    transparent 62%,
    transparent 100%
  );
  transform: translateX(-120%);
  animation: btnShine 2.8s ease-in-out infinite;
  pointer-events: none;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(26, 122, 212, 0.38);
  background: linear-gradient(125deg, #4aa3f0 0%, #1a7ad4 45%, #0f4f8a 100%);
}

@media (min-width: 920px) {
  .header-cta {
    padding: 0.55rem 1.05rem;
    font-size: 0.9rem;
  }
}

@media (min-width: 920px) {
  .header-nav {
    display: flex;
  }
}

/* Hero — shorter, content higher */
.hero {
  position: relative;
  min-height: clamp(28rem, 68svh, 40rem);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  animation: heroKen 16s ease-out forwards;
}

@keyframes heroKen {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(6, 42, 74, 0.9) 0%, rgba(10, 61, 107, 0.72) 46%, rgba(10, 61, 107, 0.28) 100%),
    linear-gradient(180deg, rgba(6, 42, 74, 0.25) 0%, transparent 35%, rgba(6, 42, 74, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - var(--pad) * 2, var(--max));
  margin: 0 auto;
  padding: 5.6rem 0 3.2rem;
  max-width: 52rem;
  text-align: center;
  animation: heroIn 0.85s ease both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-badge {
  margin: 0 auto 1rem;
  display: flex;
  justify-content: center;
}

.hero-badge img {
  width: clamp(4.2rem, 12vw, 5.6rem);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5.6vw, 3.35rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.22;
  word-break: keep-all;
}

.hero-lead {
  margin: 1rem auto 0;
  font-size: clamp(1rem, 2.6vw, 1.22rem);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  max-width: 28rem;
  white-space: normal;
  line-height: 1.55;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.55rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.45rem;
  border-radius: var(--radius);
  font-weight: 750;
  font-size: 1.02rem;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(125deg, #4aa3f0 0%, #1a7ad4 40%, #0a3d6b 100%);
  background-size: 180% 180%;
  color: var(--white);
  box-shadow: 0 10px 28px rgba(26, 122, 212, 0.32);
  animation: btnGlow 3.2s ease-in-out infinite;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 62%,
    transparent 100%
  );
  transform: translateX(-120%);
  animation: btnShine 2.8s ease-in-out infinite;
  pointer-events: none;
}

.btn-primary:hover {
  background: linear-gradient(125deg, #68b4f5 0%, #1f86e0 42%, #0f4f8a 100%);
  box-shadow: 0 14px 32px rgba(26, 122, 212, 0.4);
}

@keyframes btnShine {
  0%,
  28% {
    transform: translateX(-130%);
  }
  58%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes btnGlow {
  0%,
  100% {
    background-position: 0% 50%;
    box-shadow: 0 10px 28px rgba(26, 122, 212, 0.28);
  }
  50% {
    background-position: 100% 50%;
    box-shadow: 0 12px 34px rgba(74, 163, 240, 0.45);
  }
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-block {
  width: 100%;
}

/* Strip */
.strip {
  position: relative;
  z-index: 2;
  margin-top: -1.6rem;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 880px) {
  .strip-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0.35rem;
  }

  .strip-item + .strip-item {
    border-left: 1px solid var(--line);
  }
}

.strip-item {
  padding: 1.15rem 1rem;
  text-align: center;
}

.strip-label {
  display: block;
  color: var(--mute);
  font-size: 0.98rem;
  font-weight: 650;
  margin-bottom: 0.35rem;
}

.strip-item strong,
.strip-num,
.strip-text {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.6vw, 2.25rem);
  color: var(--blue-900);
  letter-spacing: -0.035em;
  line-height: 1.15;
  font-weight: 800;
}

.strip-num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.28rem;
  flex-wrap: wrap;
}

.count-prefix,
.count-suffix {
  font-size: 0.72em;
  font-weight: 750;
  color: var(--blue-700);
}

.js-count {
  font-variant-numeric: tabular-nums;
  font-weight: 850;
}

.strip-item p {
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 600;
  word-break: keep-all;
}

/* Sections */
.section {
  padding: clamp(3.6rem, 8vw, 5.8rem) 0;
}

.section-head {
  max-width: 42rem;
  margin: 0 auto clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--blue-700);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.section-head h2,
.trust-copy h2,
.consult-copy h2 {
  margin: 0;
  font-size: clamp(1.95rem, 4.4vw, 2.85rem);
  line-height: 1.28;
  letter-spacing: -0.04em;
  font-weight: 850;
  word-break: keep-all;
  overflow-wrap: normal;
}

.section-desc {
  margin: 1rem auto 0;
  color: var(--ink-soft);
  font-size: 1.2rem;
  font-weight: 550;
  line-height: 1.7;
  word-break: keep-all;
  max-width: 34rem;
}

.program-card h3,
.product-copy h3,
.steps h3 {
  word-break: keep-all;
  line-height: 1.35;
}

.program-card-body > p,
.product-copy > p,
.steps p,
.trust-copy > p:not(.eyebrow),
.consult-copy > p:not(.eyebrow) {
  word-break: keep-all;
  line-height: 1.7;
}

/* Programs with images filled */
.programs {
  background: linear-gradient(180deg, transparent, rgba(231, 242, 251, 0.55) 30%, transparent 100%);
}

.program-cards {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 900px) {
  .program-cards {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.program-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.program-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--blue-950);
}

.program-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.program-card:hover .program-card-media img {
  transform: scale(1.04);
}

.program-card-body {
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border-top: 3px solid var(--blue-700);
  text-align: center;
}

.program-card:nth-child(2) .program-card-body {
  border-top-color: var(--blue-500);
}

.program-tag {
  margin: 0 0 0.65rem;
  color: var(--blue-700);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.program-card h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 3vw, 1.95rem);
  letter-spacing: -0.03em;
  font-weight: 800;
}

.program-card-body > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.checklist {
  margin: 1.2rem auto 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  text-align: left;
}

.checklist li {
  position: relative;
  padding-left: 1.35rem;
  margin: 0 auto 0.65rem;
  color: var(--ink-soft);
  font-size: 1.12rem;
  font-weight: 550;
  text-align: left;
  max-width: 22rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 1px;
  background: var(--blue-600);
}

/* Products */
.products {
  padding-top: 1.5rem;
}

.products .section-head {
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
}

.product-feature {
  display: grid;
  margin-top: clamp(2.2rem, 5vw, 3.5rem);
}

@media (min-width: 920px) {
  .product-feature {
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 34rem;
  }

  .product-feature--reverse .product-visual {
    order: 2;
  }

  .product-feature--reverse .product-copy {
    order: 1;
  }
}

.product-visual {
  overflow: hidden;
  background: var(--blue-950);
  min-height: 18rem;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s ease;
}

.product-feature:hover .product-visual img {
  transform: scale(1.03);
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  background: linear-gradient(160deg, var(--blue-50), var(--white) 55%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-program {
  margin: 0 0 0.55rem;
  color: var(--blue-700);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.product-copy h3 {
  margin: 0;
  font-size: clamp(2.15rem, 4.2vw, 2.9rem);
  letter-spacing: -0.035em;
  font-weight: 850;
}

.product-rate {
  margin: 0.55rem 0 0 !important;
  font-size: clamp(1.5rem, 3vw, 1.95rem) !important;
  font-weight: 800 !important;
  color: var(--blue-900) !important;
  display: flex !important;
  align-items: baseline;
  justify-content: center;
  gap: 0.28rem;
  flex-wrap: wrap;
}

.product-copy > p {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
  font-size: 1.22rem;
}

.spec-list {
  margin: 1.4rem auto;
  display: grid;
  gap: 0.75rem;
  width: 100%;
  max-width: 26rem;
  text-align: left;
}

.spec-list > div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.12rem;
}

.spec-list dt {
  color: var(--mute);
  font-weight: 600;
}

.spec-list dd {
  margin: 0;
  font-weight: 750;
}

.text-link {
  color: var(--blue-700);
  font-weight: 800;
  font-size: 1.15rem;
  width: fit-content;
  border-bottom: 1px solid transparent;
}

.text-link:hover {
  color: var(--blue-900);
  border-bottom-color: currentColor;
}

/* Trust gallery */
.trust-gallery {
  background: linear-gradient(180deg, var(--blue-50), var(--white));
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 780px) {
  .gallery-grid {
    grid-template-columns: 1.3fr 1fr;
    grid-auto-rows: minmax(14rem, auto);
  }

  .gallery-item--wide {
    grid-column: 1 / -1;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--blue-950);
  min-height: 14rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
  transition: transform 1s ease;
}

.gallery-item--wide img {
  min-height: 16rem;
  max-height: 24rem;
  width: 100%;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.8rem 1.15rem 1rem;
  background: linear-gradient(transparent, rgba(6, 42, 74, 0.85));
  color: #fff;
  font-weight: 750;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  text-align: center;
}

/* Compare */
.compare-table {
  border: 1px solid var(--line);
  background: var(--white);
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3rem;
  padding: 1.15rem 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 1.15rem;
  text-align: center;
}

.compare-row:first-child {
  border-top: 0;
}

.compare-head {
  background: var(--blue-900);
  color: var(--white);
  font-weight: 750;
}

.compare-row > div:first-child {
  color: var(--mute);
  font-size: 1rem;
  font-weight: 700;
}

.compare-head > div:first-child {
  color: rgba(255, 255, 255, 0.72);
}

.accent {
  color: var(--blue-700);
  font-weight: 850;
  font-family: var(--font-display);
  font-size: 1.35rem;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  flex-wrap: wrap;
}

@media (min-width: 720px) {
  .compare-row {
    grid-template-columns: 0.85fr 1.2fr 1.2fr;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.5rem;
  }

  .compare-row > div:first-child {
    font-size: 1.1rem;
    color: var(--ink-soft);
  }
}

.fineprint {
  margin: 1rem auto 0;
  color: var(--mute);
  font-size: 0.88rem;
  text-align: center;
  max-width: 40rem;
}

/* Process with images */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 960px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
  }
}

.steps li {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  text-align: center;
}

.step-visual {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--blue-950);
}

.step-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-num {
  display: block;
  padding: 1rem 1.1rem 0;
  font-family: var(--font-display);
  color: var(--blue-700);
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: 0.08em;
}

.steps h3 {
  margin: 0.45rem 1.1rem 0.45rem;
  font-size: 1.38rem;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.steps p {
  margin: 0 1.1rem 1.25rem;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

/* Trust */
.trust {
  background: linear-gradient(180deg, var(--blue-50), var(--white));
}

.trust-layout {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 860px) {
  .trust-layout {
    grid-template-columns: 1.25fr 0.95fr;
    align-items: center;
    gap: 3rem;
  }
}

.trust-copy > p:not(.eyebrow) {
  margin: 1rem auto 0;
  color: var(--ink-soft);
  font-size: 1.22rem;
  max-width: 34rem;
}

.trust-points {
  margin: 1.5rem auto 0;
  padding: 0;
  list-style: none;
  max-width: 28rem;
}

.trust-points li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  font-size: 1.2rem;
}

.trust-aside {
  padding: 1.7rem 1.55rem;
  background: var(--blue-900);
  color: var(--white);
  text-align: center;
}

.trust-aside-img {
  width: min(100%, 15rem);
  height: auto;
  border-radius: 0;
  margin: 0 auto 1rem;
  object-fit: contain;
  background: transparent;
  padding: 0.35rem 0;
}

.aside-label {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.78;
  font-weight: 700;
}

.trust-aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-aside li {
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 1.15rem;
  font-weight: 600;
}

.trust-aside li:first-of-type {
  border-top: 0;
  padding-top: 0;
}

/* Consult */
.consult {
  background:
    radial-gradient(700px 280px at 80% 10%, rgba(43, 143, 232, 0.12), transparent 60%),
    var(--wash);
}

.consult-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .consult-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.consult-copy {
  text-align: center;
}

.consult-copy > p:not(.eyebrow) {
  margin: 1rem auto 0;
  color: var(--ink-soft);
  font-size: 1.2rem;
  max-width: 34rem;
}

.consult-quick {
  margin: 1.4rem auto 0;
  display: grid;
  gap: 0.75rem;
  max-width: 28rem;
}

.consult-quick-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

a.consult-quick-card:hover {
  border-color: var(--blue-600);
  transform: translateY(-2px);
}

.consult-quick-card img {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.consult-quick-card strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.consult-quick-card span {
  color: var(--mute);
  font-size: 1.02rem;
}

.consult-media {
  margin-top: 1.35rem;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
}

.consult-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consult-highlights {
  margin: 1.2rem auto 0;
  display: grid;
  gap: 0.65rem;
  max-width: 28rem;
}

.consult-highlights p {
  margin: 0;
  padding: 0.95rem 1.05rem;
  background: var(--white);
  border-left: 3px solid var(--blue-600);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 1.15rem;
  font-weight: 600;
}

.consult-highlights strong {
  color: var(--ink);
}

.consult-form {
  padding: clamp(1.4rem, 3vw, 1.95rem);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.form-title {
  margin: 0 0 1.1rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  color: var(--blue-900);
}

.field {
  margin-bottom: 0.95rem;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  font-weight: 750;
}

.optional {
  color: var(--mute);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.88rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 1.1rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(26, 122, 212, 0.15);
}

.agree {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: 0.5rem 0 1.15rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.agree input {
  margin-top: 0.2rem;
}

.form-note {
  margin: 0.9rem 0 0;
  color: var(--blue-700);
  font-weight: 750;
  font-size: 0.98rem;
  text-align: center;
}

.consult-form.is-success .btn-primary {
  background: var(--blue-900);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-inner {
  display: grid;
  gap: 1rem;
  text-align: center;
  justify-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand img {
  width: min(15rem, 72vw);
  height: auto;
  border-radius: 0;
  background: transparent;
}

.footer-inner p {
  margin: 0;
  color: var(--mute);
  font-size: 0.92rem;
}

.footer-disclaimer {
  max-width: 42rem;
}

/* PC floating dock */
.float-dock {
  display: none;
  position: fixed;
  right: 1.25rem;
  bottom: 1.4rem;
  z-index: 60;
  flex-direction: column;
  gap: 0.75rem;
}

.float-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  width: 4.6rem;
  text-align: center;
  filter: drop-shadow(0 10px 22px rgba(6, 42, 74, 0.22));
  transition: transform 0.2s ease;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.04);
}

.float-btn img {
  width: 4.35rem;
  height: 4.35rem;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
}

.float-btn span {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* Mobile fixed bottom bar */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom);
  background: #0a3d6b;
  border-top: none;
}

.mobile-bar-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.7rem;
  overflow: hidden;
  border-radius: 0;
  color: #fff;
}

.mobile-bar-btn img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mobile-bar-btn::after {
  content: none;
}

.mobile-bar-label {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.15;
  margin-left: 38%;
  text-shadow: none;
}

.mobile-bar-label strong {
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.mobile-bar-label small {
  font-size: 0.72rem;
  opacity: 0.92;
  margin-top: 0.12rem;
}

@media (min-width: 880px) {
  .mobile-bar {
    display: none;
  }

  .float-dock {
    display: flex;
  }

  body {
    padding-bottom: 0;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.18s;
}
.delay-3 {
  transition-delay: 0.26s;
}

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

  .reveal,
  .hero-media img,
  .hero-content,
  .product-visual img,
  .impact.is-armed,
  .impact.is-armed::after,
  .header-cta,
  .header-cta::before,
  .btn-primary,
  .btn-primary::before {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
