/*
  광고주 랜딩페이지 공통 디자인 시스템.

  새 광고주 작업 시 손대야 하는 곳은 :root 안의 색상 값뿐입니다.
  --primary-*  : 배경/구조/신뢰감을 담당하는 메인 브랜드 컬러 (업종에 맞는 톤으로 교체)
  --accent-*   : 모든 CTA 버튼과 하단 고정바에 쓰이는 액션 컬러. 반드시 --primary와
                 대비되는 색으로 골라야 버튼이 눈에 띈다.
  --navy / --gray-600 / --gray-300 / --danger / --radius / --max-width은
  구조적인 값이라 보통 건드릴 필요 없음.

  섹션 순서(헤더 → 히어로 → 자가진단 체크리스트 → 강점 → 프로세스 → 유형별 안내 →
  상담폼 → 푸터 → 하단 고정 CTA)와 클래스 이름은 캠페인마다 동일하게 유지한다.
  이 파일의 구조 자체는 웬만하면 수정하지 말고, index.html의 텍스트/색상 값만 교체할 것.
*/

:root {
  --primary-900: #14110b;
  --primary-700: #3a3018;
  --primary-600: #b3902f;
  --primary-500: #d4af37;
  --primary-100: #f5edd6;
  --primary-50: #faf6ea;
  --accent-600: #d02020;
  --accent-700: #a81717;
  --accent-100: #ffe3e3;
  --navy: #0d2039;
  --gray-600: #46566b;
  --gray-300: #d8e2ea;
  --white: #ffffff;
  --danger: #d64545;
  --radius: 14px;
  --max-width: 560px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "SUIT Variable", SUIT, -apple-system, BlinkMacSystemFont,
    "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif;
  color: var(--navy);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* 한글은 어절 단위로만 줄바꿈되게 해 단어 중간이 잘리지 않도록 한다. */
  word-break: keep-all;
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 제목은 명조(세리프)로 포인트 — 본문 SUIT와 대비되는 격·신뢰감. */
h1, h2, h3 {
  margin: 0;
  font-family: "Noto Serif KR", "Apple SD Gothic Neo", serif;
  font-weight: 900;
  word-break: keep-all;
}

p {
  margin: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 28px;
  width: auto;
}

/* 로고 파일이 아직 없을 때 쓰는 텍스트 대체.
   깨진 이미지 아이콘을 보여주느니 업체명을 제대로 조판해서 보여준다.
   로고를 확보하면 img로 교체하면 되고, 그때 이 클래스는 안 쓰인다. */
.logo-text {
  font-size: 18px;
  font-weight: 900;
  color: var(--primary-700);
  letter-spacing: -0.4px;
}

.hero-logo-text {
  font-size: 30px;
  font-weight: 900;
  color: var(--primary-700);
  letter-spacing: -0.8px;
}

.footer-logo-text {
  font-size: 17px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-600);
  color: var(--white);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* ---------- Layout helpers ---------- */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 20px;
}

.section h2 {
  font-size: 27px;
  text-align: center;
  color: var(--navy);
  letter-spacing: -0.6px;
  line-height: 1.35;
}

.section-desc {
  margin-top: 12px;
  text-align: center;
  color: var(--gray-600);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ---------- Hero ---------- */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 30px 20px 40px;
  background: linear-gradient(180deg, var(--primary-100) 0%, #ffffff 100%);
  text-align: center;
}

/* 히어로 아래 짧은 신뢰 문구 — 자격 요건 대신 부담을 낮추는 한두 줄. */
.hero-notes {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14px;
  color: var(--primary-900);
  font-weight: 600;
}

.hero-notes li::before {
  content: "✔ ";
  color: var(--primary-600);
  font-weight: 900;
}

/* ---------- 빠른 신청 퍼널 ---------- */
.funnel {
  max-width: var(--max-width);
  margin: 16px auto 0;
  padding: 22px 20px 28px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(13, 32, 57, 0.12);
  position: relative;
  z-index: 1;
}

.funnel-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.progress-track {
  flex: 1;
  height: 9px;
  background: var(--gray-300);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--accent-600), var(--accent-700));
  border-radius: 999px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-700);
  white-space: nowrap;
}

.step {
  display: none;
}

.step.is-active {
  display: block;
  animation: stepIn 0.28s ease;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateX(14px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-back {
  border: none;
  background: none;
  color: var(--gray-600);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 10px;
  font-family: inherit;
}

.step-q {
  font-size: 23px;
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  line-height: 1.4;
  letter-spacing: -0.5px;
}

.step-help {
  margin: 10px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--gray-600);
}

.choice-list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* 큰 탭 카드 — 라디오는 숨기고 카드 전체가 버튼처럼 보이게. */
.choice {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 18px;
  border-radius: 14px;
  border: 2px solid var(--gray-300);
  background: var(--white);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice:hover {
  border-color: var(--primary-500);
}

.choice:active {
  transform: scale(0.99);
}

.choice:has(input:checked) {
  border-color: var(--accent-600);
  background: var(--accent-100);
  color: var(--accent-700);
  font-weight: 800;
}

/* 마지막 연락처 단계 */
.funnel-form .form-row {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}

.funnel-form .form-row input {
  padding: 16px 15px;
  border-radius: 12px;
  border: 1.5px solid var(--gray-300);
  font-size: 16px;
  background: var(--white);
  font-family: inherit;
}

.funnel-form .form-row input:focus {
  outline: none;
  border-color: var(--accent-600);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 16px 2px 4px;
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.5;
  cursor: pointer;
}

.consent input {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  accent-color: var(--accent-600);
  flex-shrink: 0;
}

.funnel-form .btn-primary {
  margin-top: 18px;
}

/* ---------- 대표 변호사 신뢰 카드 (상단) ----------
   히어로 바로 아래에서 살짝 겹쳐 올라오는 카드. 신청을 시작하기 전에 "누가
   맡는지"를 먼저 보여줘 신뢰를 준다. */
.trust-strip {
  max-width: var(--max-width);
  margin: -28px auto 0;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(13, 32, 57, 0.1);
  position: relative;
  z-index: 2;
}

.trust-photo {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--primary-500);
  flex-shrink: 0;
}

.trust-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-role {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-600);
}

.trust-name {
  font-family: "Noto Serif KR", "Apple SD Gothic Neo", serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.4px;
}

.trust-tag {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  line-height: 1.4;
}

.hero-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-logo-img {
  height: 46px;
  width: auto;
}

.hero-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.badge {
  font-size: 17px;
  font-weight: 900;
  padding: 11px 22px;
  border-radius: 999px;
  letter-spacing: -0.3px;
  line-height: 1;
}

.badge-accent {
  background: var(--accent-600);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(208, 32, 32, 0.28);
}

.badge-primary {
  background: var(--primary-100);
  color: var(--primary-700);
  border: 2px solid var(--primary-500);
}

@media (min-width: 640px) {
  .badge {
    font-size: 19px;
    padding: 12px 26px;
  }
}

.hero h1 {
  font-size: 32px;
  line-height: 1.35;
  color: var(--navy);
  letter-spacing: -0.8px;
}

.hero-sub {
  margin-top: 18px;
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
}

.hero-sub strong {
  color: var(--primary-700);
  font-weight: 800;
}

/* ---------- Hero 대표 변호사 사진 ---------- */
.hero-figure {
  margin: 30px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-figure-photo {
  position: relative;
  width: 232px;
  border-radius: 18px;
  padding: 6px;
  background: linear-gradient(160deg, var(--primary-500), var(--primary-700));
  box-shadow: 0 18px 40px rgba(13, 32, 57, 0.22);
}

.hero-lawyer-img {
  width: 100%;
  height: auto;
  border-radius: 13px;
  display: block;
}

.hero-figure-caption {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.hero-figure-role {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-600);
  letter-spacing: 0.5px;
}

.hero-figure-name {
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.hero-figure-tag {
  margin-top: 4px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  padding: 6px 14px;
  line-height: 1.4;
  max-width: 300px;
}

@media (min-width: 640px) {
  .hero-figure-photo {
    width: 264px;
  }
  .hero-figure-name {
    font-size: 28px;
  }
}

.hero-cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-trust {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 14.5px;
  color: var(--primary-900);
  font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 17.5px;
  font-weight: 800;
  letter-spacing: -0.2px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

/* ---------- 상담 신청 CTA: 누르고 싶게 만드는 강조 효과 ----------
   빨간 액션 버튼 전체(.btn-primary)에 은은한 글로우 맥박 + 빛 스침 + 화살표를 준다.
   글자는 script.js가 textContent로 바꾸므로 라벨은 건드리지 않고 ::after 화살표로 표현. */
.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-600) 0%, var(--accent-700) 100%);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(208, 32, 32, 0.38);
  animation: ctaGlow 1.8s ease-in-out infinite;
}

.btn-primary::after {
  content: "→";
  margin-left: 9px;
  font-weight: 900;
  transition: transform 0.2s ease;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.38) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: ctaShine 3.4s ease-in-out infinite;
  pointer-events: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-700) 0%, var(--accent-700) 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(208, 32, 32, 0.5);
}

.btn-primary:hover::after {
  transform: translateX(5px);
}

@keyframes ctaGlow {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(208, 32, 32, 0.38);
  }
  50% {
    box-shadow: 0 12px 34px rgba(208, 32, 32, 0.62);
  }
}

@keyframes ctaShine {
  0% {
    left: -80%;
  }
  55%,
  100% {
    left: 130%;
  }
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  animation: none;
}

.btn:disabled::before {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary {
    animation: none;
  }
  .btn-primary::before {
    display: none;
  }
}

/* ---------- Checklist ---------- */
.checklist-section {
  background: var(--primary-50);
  border-radius: 24px;
  max-width: calc(var(--max-width) + 40px);
}

.checklist {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  padding: 15px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--gray-300);
  font-size: 15.5px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.check-item input {
  margin-top: 2px;
  width: 20px;
  height: 20px;
  accent-color: var(--primary-600);
  flex-shrink: 0;
}

.check-item:has(input:checked) {
  border-color: var(--primary-600);
  background: var(--primary-100);
  font-weight: 700;
}

.checklist-result {
  margin-top: 24px;
  padding: 22px 20px;
  background: var(--white);
  border-radius: 14px;
  text-align: center;
  border: 1.5px solid var(--gray-300);
}

#checklistMsg {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.5;
}

#checklistMsg.warn {
  color: var(--danger);
}

/* ---------- Factsheet ----------
   자가진단 체크리스트 자리를 대신하는 "핵심 정보 요약". 분양·상품형처럼 증상이
   없는 업종에서 방문자가 가장 먼저 확인하려는 사실(위치·규모·평형·일정·가격)을
   한눈에 보여준다. 체크리스트와 같은 자리, 같은 역할(관여 → CTA)이다. */
.factsheet {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--gray-300);
  border: 1px solid var(--gray-300);
  border-radius: 14px;
  overflow: hidden;
}

.fact-row {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 14px;
  background: var(--white);
  padding: 15px 18px;
  align-items: baseline;
}

.fact-label {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--primary-700);
  letter-spacing: -0.2px;
}

.fact-value {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.55;
}

/* ---------- Strengths ---------- */
.strength-grid {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.strength-card {
  padding: 22px 20px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.strength-card:hover {
  border-color: var(--primary-500);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.strength-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.strength-card h3 {
  font-size: 17.5px;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.strength-card p {
  margin-top: 9px;
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ---------- Process ---------- */
.process-section {
  background: var(--primary-900);
  border-radius: 24px;
  max-width: calc(var(--max-width) + 40px);
  color: var(--white);
}

.process-section h2 {
  color: var(--white);
}

.process-section .section-desc {
  color: #b9d4ec;
}

.process-steps {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
}

.process-step h3 {
  font-size: 17px;
  letter-spacing: -0.2px;
}

.process-step p {
  margin-top: 5px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #d3e6fa;
}

/* ---------- Types ---------- */
.type-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.type-card {
  padding: 18px 16px;
  border-radius: 12px;
  background: var(--primary-50);
  border: 1px solid var(--gray-300);
}

.type-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-700);
}

.type-card p {
  margin-top: 7px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--gray-600);
}

/* ---------- Form ---------- */
.form-section {
  background: var(--primary-50);
  border-radius: 24px;
  max-width: calc(var(--max-width) + 40px);
  margin-bottom: 40px;
}

.lead-form {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row label {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--navy);
}

.req {
  color: var(--danger);
}

.form-row input[type="text"],
.form-row input[type="tel"] {
  padding: 15px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-300);
  font-size: 16px;
  background: var(--white);
  font-family: inherit;
}

.form-row input:focus {
  outline: none;
  border-color: var(--primary-600);
}

.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 12px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
}

.radio-item input {
  accent-color: var(--primary-600);
  width: 16px;
  height: 16px;
}

.radio-item:has(input:checked) {
  border-color: var(--primary-600);
  background: var(--primary-100);
  font-weight: 700;
}

.form-notice {
  font-size: 12.5px;
  color: var(--gray-600);
  line-height: 1.55;
}

.form-msg {
  font-size: 14.5px;
  text-align: center;
  min-height: 18px;
}

.form-msg.success {
  color: #147a3f;
  font-weight: 700;
}

.form-msg.error {
  color: var(--danger);
  font-weight: 700;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #a9bdd1;
  padding: 36px 20px 104px;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.85;
}

/* 로고가 어떤 색이든 읽히도록 항상 흰 칩 위에 올린다 (푸터 배경은 짙은 navy). */
.footer-logo-chip {
  display: inline-flex;
  background: var(--white);
  padding: 9px 16px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.footer-logo-img {
  height: 26px;
  width: auto;
}

.footer-copy {
  margin-top: 10px;
  color: #6f88a0;
}

/* 고객센터 전화번호 — 짙은 푸터 위에서도 또렷하게. */
.footer-phone {
  margin-top: 6px;
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.2px;
}

.footer-phone span {
  font-size: 13px;
  font-weight: 600;
  color: #a9bdd1;
  margin-left: 4px;
}

/* ---------- Sticky bottom CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  max-width: var(--max-width);
  margin: 0 auto;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 0;
  font-size: 17px;
  font-weight: 800;
}

.sticky-form {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-600) 0%, var(--accent-700) 100%);
  color: var(--white);
  animation: stickyPulse 1.8s ease-in-out infinite;
}

.sticky-form::after {
  content: "→";
  font-weight: 900;
  transition: transform 0.2s ease;
}

.sticky-form:active::after {
  transform: translateX(5px);
}

.sticky-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: ctaShine 3.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes stickyPulse {
  0%,
  100% {
    background: linear-gradient(135deg, var(--accent-600) 0%, var(--accent-700) 100%);
  }
  50% {
    background: linear-gradient(135deg, #e02626 0%, var(--accent-600) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-form {
    animation: none;
  }
  .sticky-form::before {
    display: none;
  }
}

/* ---------- Responsive (tablet/desktop) ---------- */
@media (min-width: 640px) {
  .hero h1 {
    font-size: 40px;
  }
}
