:root {
  --ink: #081126;
  --ink-2: #26324f;
  --muted: #687185;
  --line: #e5e9f1;
  --surface: #ffffff;
  --wash: #f7f9fd;
  --coral: #ff4f5f;
  --coral-2: #ff7f68;
  --lemon: #ffd338;
  --aqua: #48c9cf;
  --violet: #7557d9;
  --green: #18a77f;
  --shadow: 0 24px 70px rgba(8, 17, 38, 0.12);
  --radius: 8px;
  font-family:
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Apple SD Gothic Neo",
    "Noto Sans KR",
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--wash);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  display: block;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(229, 233, 241, 0.74);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--coral), #0c1840 92%);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: 0 12px 26px rgba(255, 79, 95, 0.24);
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--ink);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 950;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 92px 16px 26px;
  overflow: hidden;
  background: #ffffff;
}

.hero-photo,
.hero-tint {
  position: absolute;
  inset: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
}

.hero-tint {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.22) 72%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(247, 249, 253, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.hero-copy-wrap {
  max-width: 560px;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.07;
  font-weight: 950;
  letter-spacing: 0;
  word-break: keep-all;
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero h1 span {
  display: block;
  color: var(--coral);
}

.hero-copy {
  max-width: 510px;
  margin: 18px 0 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.66;
  font-weight: 780;
  word-break: keep-all;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 15px 18px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0;
}

.btn-primary {
  color: #10172d;
  background: linear-gradient(135deg, var(--lemon) 0%, #ffb93d 44%, var(--coral-2) 100%);
  box-shadow: 0 22px 38px rgba(255, 127, 104, 0.26);
}

.btn-primary.is-urgent {
  position: relative;
  animation: urgentPulse 1.18s ease-in-out infinite;
}

.btn-primary.is-urgent::before {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border: 2px solid rgba(255, 79, 95, 0.52);
  border-radius: var(--radius);
  animation: urgentRing 1.18s ease-out infinite;
}

.btn-dark {
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 18px 34px rgba(8, 17, 38, 0.22);
}

.privacy-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.urgency-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 520px;
  margin-top: 14px;
}

.urgency-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 7px 10px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ink), #1b2a64);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(8, 17, 38, 0.15);
}

.urgency-strip i {
  width: 7px;
  height: 7px;
  background: var(--lemon);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 211, 56, 0.72);
  animation: blinkDot 0.82s steps(2, end) infinite;
}

.hero-panel {
  display: grid;
  gap: 9px;
  width: 100%;
  max-width: 520px;
}

.quick-card {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 15px 16px 15px 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(229, 233, 241, 0.88);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(8, 17, 38, 0.08);
}

.quick-card::after {
  content: "→";
  position: absolute;
  right: 16px;
  top: 50%;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  transform: translateY(-50%);
}

.quick-card span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 950;
}

.quick-card strong {
  padding-right: 28px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.28;
  font-weight: 950;
}

.quick-card small {
  padding-right: 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.quick-card.tone-program {
  color: #ffffff;
  background: linear-gradient(135deg, var(--ink) 0%, #18275a 55%, var(--coral) 100%);
  border-color: transparent;
}

.quick-card.tone-program span,
.quick-card.tone-program strong,
.quick-card.tone-program small,
.quick-card.tone-program::after {
  color: #ffffff;
}

.quick-card.tone-basic span {
  color: var(--aqua);
}

.quick-card.tone-broadcast span {
  color: var(--violet);
}

.quick-card.tone-simple span {
  color: #f09a13;
}

.quick-card.tone-content span {
  color: #d84d8b;
}

.quick-card.tone-brand span {
  color: var(--green);
}

.section-inner {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.safety h2 {
  margin: 0;
  color: var(--ink);
  font-size: 29px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.section-heading p,
.safety p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 760;
  word-break: keep-all;
}

.spotlight {
  padding: 42px 0 34px;
  background: #ffffff;
}

.spotlight-grid {
  display: grid;
  gap: 10px;
}

.spotlight-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px 12px;
  align-items: center;
  min-height: 86px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(8, 17, 38, 0.06);
}

.rank {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: var(--coral);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 950;
}

.spotlight-item:nth-child(2) .rank {
  background: var(--aqua);
}

.spotlight-item:nth-child(3) .rank {
  background: var(--violet);
}

.spotlight-item:nth-child(4) .rank {
  background: #f09a13;
}

.spotlight-item:nth-child(5) .rank {
  background: #d84d8b;
}

.spotlight-item:nth-child(6) .rank {
  background: var(--green);
}

.spotlight-item strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 950;
}

.spotlight-item small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.fit-guide {
  padding: 38px 0 44px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fff9e6 100%);
}

.fit-grid {
  display: grid;
  gap: 10px;
}

.fit-card {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 92px;
  padding: 17px 48px 17px 17px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(229, 233, 241, 0.94);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(8, 17, 38, 0.07);
}

.fit-card::after {
  content: "→";
  position: absolute;
  right: 18px;
  top: 50%;
  color: var(--coral);
  font-size: 22px;
  font-weight: 950;
  transform: translateY(-50%);
}

.fit-card strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.28;
  font-weight: 950;
  word-break: keep-all;
}

.fit-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.offers {
  padding: 48px 0 54px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.offer-list {
  display: grid;
  gap: 14px;
}

.offer-card {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 16px;
  padding: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(229, 233, 241, 0.94);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.sparkle-card::before {
  content: "";
  position: absolute;
  inset: -45% -70%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 42%,
    rgba(255, 255, 255, 0.18) 47%,
    rgba(255, 255, 255, 0.72) 50%,
    rgba(255, 211, 56, 0.18) 53%,
    transparent 59%,
    transparent 100%
  );
  transform: translateX(-52%) rotate(0.001deg);
  animation: shimmerSweep 3.2s ease-in-out infinite;
}

.sparkle {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  pointer-events: none;
  background: var(--lemon);
  clip-path: polygon(50% 0, 61% 36%, 100% 50%, 61% 64%, 50% 100%, 39% 64%, 0 50%, 39% 36%);
  filter: drop-shadow(0 0 8px rgba(255, 211, 56, 0.9));
  animation: sparkleTwinkle 1.4s steps(2, end) infinite;
}

.sparkle-one {
  top: 18px;
  right: 22px;
}

.sparkle-two {
  right: 62px;
  bottom: 74px;
  width: 7px;
  height: 7px;
  background: #ffffff;
  animation-delay: 0.42s;
}

.offer-card:hover,
.offer-card:focus-within {
  border-color: rgba(255, 79, 95, 0.36);
  box-shadow: 0 30px 82px rgba(255, 79, 95, 0.16);
  transform: translateY(-3px);
}

.offer-card:active {
  transform: translateY(-1px) scale(0.995);
}

.offer-image {
  position: relative;
  z-index: 0;
  min-height: 152px;
  border-radius: var(--radius);
  background-color: #e8edf7;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.offer-image.program {
  background-image:
    linear-gradient(135deg, rgba(255, 79, 95, 0.18), rgba(255, 211, 56, 0.1)),
    url("assets/offer-adventure-v5.jpg");
  background-position: center;
}

.offer-image.basic {
  background:
    linear-gradient(135deg, rgba(72, 201, 207, 0.15), rgba(255, 255, 255, 0.15)),
    url("assets/offer-wardrobe-v5.jpg") center / cover;
}

.offer-image.broadcast {
  background:
    linear-gradient(135deg, rgba(117, 87, 217, 0.16), rgba(255, 255, 255, 0.2)),
    url("assets/offer-program-v5.jpg") center / cover;
}

.offer-image.simple {
  background:
    linear-gradient(135deg, rgba(255, 244, 192, 0.2), rgba(255, 136, 145, 0.16)),
    url("assets/offer-profiles-v5.jpg") center / cover;
}

.offer-image.content {
  background:
    linear-gradient(135deg, rgba(255, 225, 239, 0.2), rgba(143, 223, 226, 0.18)),
    url("assets/offer-checklist-v5.jpg") center / cover;
}

.offer-image.brand {
  background:
    linear-gradient(135deg, rgba(249, 225, 154, 0.18), rgba(105, 212, 191, 0.16)),
    url("assets/offer-brand-v5.jpg") center / cover;
}

.offer-body {
  display: grid;
  gap: 10px;
}

.offer-label {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 6px 9px;
  color: var(--coral);
  background: #fff1f3;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 950;
}

.offer-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.22;
  font-weight: 950;
  word-break: keep-all;
}

.offer-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 720;
  word-break: keep-all;
}

.offer-target {
  display: grid;
  gap: 5px;
  padding: 12px 13px;
  border: 1px solid rgba(43, 38, 72, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 236, 0.9));
  box-shadow: 0 14px 30px rgba(43, 38, 72, 0.06);
}

.offer-target span {
  color: var(--coral);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0;
}

.offer-target strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.28;
  font-weight: 950;
  word-break: keep-all;
}

.offer-reason {
  display: grid;
  gap: 5px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 91, 111, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 247, 229, 0.82), rgba(255, 239, 244, 0.92));
  box-shadow: 0 12px 28px rgba(255, 91, 111, 0.08);
  position: relative;
  overflow: hidden;
}

.offer-reason::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 34%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: rotate(18deg);
  animation: reason-shine 4.8s ease-in-out infinite;
  pointer-events: none;
}

.offer-reason strong {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
  word-break: keep-all;
}

.offer-reason span {
  position: relative;
  z-index: 1;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 760;
  word-break: keep-all;
}

@keyframes reason-shine {
  0%,
  52% {
    transform: translateX(-120%) rotate(18deg);
    opacity: 0;
  }

  62% {
    opacity: 0.85;
  }

  82%,
  100% {
    transform: translateX(420%) rotate(18deg);
    opacity: 0;
  }
}

.offer-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.offer-card dl div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.offer-card dt {
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
}

.offer-card dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.offer-cta {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 14px 16px;
  color: #11182c;
  background: linear-gradient(135deg, var(--lemon), #ffb53f 48%, var(--coral-2));
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 16px 30px rgba(255, 127, 104, 0.22);
  animation: ctaGlow 1.55s ease-in-out infinite;
}

.offer-cta::after {
  content: "→";
  margin-left: 8px;
}

.process {
  padding: 50px 0;
  background: #ffffff;
}

.process-inner {
  display: grid;
  gap: 24px;
}

.steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 86px;
  padding: 17px 18px 17px 58px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(8, 17, 38, 0.06);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #ffffff;
  background: var(--green);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 950;
}

.steps strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 950;
}

.steps span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 740;
}

.safety {
  padding: 48px 0 82px;
  color: #ffffff;
  background: var(--ink);
}

.safety-inner {
  display: grid;
  gap: 24px;
}

.safety h2,
.safety p {
  color: #ffffff;
}

.safety p {
  color: rgba(255, 255, 255, 0.7);
}

.safety-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.safety-list li {
  padding: 14px 15px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 740;
}

.site-footer {
  display: grid;
  gap: 4px;
  padding: 28px 16px 92px;
  color: var(--muted);
  background: #ffffff;
}

.site-footer strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
}

.site-footer span,
.site-footer a {
  font-size: 13px;
  font-weight: 800;
}

.site-footer a {
  color: var(--coral);
}

.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  padding: 10px 14px 12px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 28px rgba(8, 17, 38, 0.12);
}

.mobile-sticky a {
  display: grid;
  place-items: center;
  min-height: 54px;
  color: #11182c;
  background: linear-gradient(135deg, var(--lemon), #ffb53f 48%, var(--coral-2));
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 950;
  animation: urgentPulse 1.08s ease-in-out infinite;
}

@keyframes urgentPulse {
  0%,
  100% {
    filter: brightness(1);
    transform: translateY(0);
    box-shadow: 0 16px 30px rgba(255, 127, 104, 0.24);
  }
  50% {
    filter: brightness(1.12) saturate(1.08);
    transform: translateY(-1px);
    box-shadow: 0 24px 42px rgba(255, 79, 95, 0.34);
  }
}

@keyframes urgentRing {
  0% {
    opacity: 0.85;
    transform: scale(0.98);
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes blinkDot {
  0%,
  45% {
    opacity: 1;
  }
  46%,
  100% {
    opacity: 0.25;
  }
}

@keyframes softBlink {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.16);
  }
}

@keyframes shimmerSweep {
  0%,
  44% {
    transform: translateX(-58%) rotate(0.001deg);
    opacity: 0;
  }
  52% {
    opacity: 1;
  }
  76%,
  100% {
    transform: translateX(58%) rotate(0.001deg);
    opacity: 0;
  }
}

@keyframes sparkleTwinkle {
  0%,
  45% {
    opacity: 0.22;
    transform: scale(0.86) rotate(0deg);
  }
  46%,
  100% {
    opacity: 1;
    transform: scale(1.18) rotate(18deg);
  }
}

@keyframes ctaGlow {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.12) saturate(1.08);
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: auto;
    padding-bottom: 18px;
  }

  .hero-content {
    gap: 14px;
  }

  .hero h1 {
    max-width: 350px;
  }

  .hero-copy {
    max-width: 330px;
    margin-top: 14px;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .btn {
    min-height: 54px;
  }

  .urgency-strip {
    max-width: 330px;
  }

  .hero-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .quick-card {
    min-height: 82px;
    padding: 12px 26px 12px 12px;
  }

  .quick-card::after {
    right: 10px;
    font-size: 18px;
  }

  .quick-card span {
    font-size: 11px;
  }

  .quick-card strong {
    padding-right: 0;
    font-size: 14px;
  }

  .quick-card small {
    padding-right: 0;
    font-size: 11px;
    line-height: 1.3;
  }

  .hero-photo img {
    object-position: 62% center;
  }

  .hero-tint {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 48%, rgba(255, 255, 255, 0.42) 73%, rgba(255, 255, 255, 0.12) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(247, 249, 253, 0.96) 100%);
  }

  .section-heading h2,
  .safety h2 {
    font-size: 27px;
  }
}

@media (min-width: 720px) {
  .site-header {
    padding: 12px 34px;
  }

  .desktop-nav {
    display: flex;
  }

  .header-cta {
    padding: 10px 18px;
    font-size: 14px;
  }

  .hero {
    min-height: 650px;
    padding: 96px 36px 28px;
  }

  .hero-content {
    grid-template-columns: minmax(0, 0.92fr) 420px;
    align-items: end;
    min-height: 462px;
  }

  .hero h1 {
    font-size: 64px;
    max-width: 690px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .hero-actions {
    grid-template-columns: auto auto;
    max-width: 610px;
  }

  .btn {
    min-width: 220px;
    font-size: 17px;
  }

  .spotlight {
    padding: 38px 0 42px;
  }

  .spotlight-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fit-guide {
    padding: 50px 0 54px;
  }

  .fit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .offers {
    padding: 66px 0 72px;
  }

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

  .offer-card {
    grid-template-rows: auto 1fr auto;
    padding: 16px;
  }

  .offer-image {
    min-height: 190px;
  }

  .process-inner,
  .safety-inner {
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
    align-items: start;
  }

  .site-footer {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 30px 36px;
  }

  .mobile-sticky {
    display: none;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding-left: 12px;
    padding-right: 12px;
  }

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

  .brand small {
    display: none;
  }

  .header-cta {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 15px;
  }
}
