/* ============================================================
   INTERIOR PAGES — About / Packages / FAQs / Register
   ============================================================ */

/* ---- ABOUT ---- */
.about-intro__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px,5vw,72px); align-items: center; }
.about-intro__copy h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(2rem,5vw,3.4rem); line-height: .96; margin-top: 14px; }
.about-intro__copy p { color: var(--muted); margin-top: 18px; font-size: 1.08rem; }
.about-intro__copy p strong { color: var(--ink); }
.about-intro__copy em { color: var(--red); font-style: italic; }
.about-photo { width: 100%; aspect-ratio: 4/4.4; box-shadow: var(--shadow-lg); border-radius: 22px; overflow: hidden; display: block; }
.about-media { position: relative; }
.about-stat { position: absolute; left: -18px; bottom: 36px; background: #fff; border-radius: var(--r-lg); padding: 18px 22px; box-shadow: var(--shadow-md); display: flex; gap: 14px; align-items: center; }
.about-stat strong { font-family: var(--display); font-size: 2.6rem; color: var(--red); line-height: .8; }
.about-stat span { font-family: var(--ui); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; line-height: 1.2; }

.values { background: var(--paper-2); }
.values__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: clamp(40px,5vw,60px); }
.value { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value__icon { width: 56px; height: 56px; border-radius: 15px; background: var(--red); display: flex; align-items: center; justify-content: center; }
.value__icon svg { width: 28px; height: 28px; color: #fff; }
.value h3 { font-family: var(--ui); font-weight: 800; font-size: 1.2rem; margin-top: 20px; }
.value p { color: var(--muted); margin-top: 10px; }

.steps-band { background: var(--ink); color: #fff; }
.steps-band__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 48px; }
.sb-step { position: relative; padding-top: 30px; border-top: 2px solid rgba(255,255,255,.15); }
.sb-step .n { font-family: var(--display); color: var(--red-hot); font-size: 1.4rem; }
.sb-step h3 { font-family: var(--ui); font-weight: 800; font-size: 1.2rem; margin-top: 8px; }
.sb-step p { color: rgba(255,255,255,.66); margin-top: 8px; }

/* ---- PACKAGES PAGE ---- */
.pk-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.addons { background: var(--paper-2); }
.addons__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 44px; }
.addon { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 32px; display: flex; justify-content: space-between; align-items: center; gap: 20px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.addon:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.addon h3 { font-family: var(--ui); font-weight: 800; font-size: 1.25rem; }
.addon p { color: var(--muted); margin-top: 6px; font-size: .96rem; }
.addon .price { font-family: var(--display); font-size: 2.6rem; color: var(--red); line-height: .9; white-space: nowrap; }
.addon .price small { font-family: var(--ui); font-weight: 700; font-size: .8rem; color: var(--muted); display: block; text-align: right; }

.compare-note { display: flex; gap: 14px; align-items: flex-start; background: rgba(216,19,36,.06); border: 1px solid rgba(216,19,36,.2); border-radius: var(--r-md); padding: 18px 22px; margin-top: 40px; max-width: 70ch; }
.compare-note svg { width: 24px; height: 24px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.compare-note p { font-size: .96rem; color: var(--ink-soft); }

/* ---- FAQ PAGE ---- */
.faq-wrap { max-width: 860px; margin-inline: auto; }
.acc { display: flex; flex-direction: column; gap: 14px; }
.acc__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.acc__item.open { box-shadow: var(--shadow-md); border-color: transparent; }
.acc__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 26px; text-align: left; font-family: var(--ui); font-weight: 800; font-size: 1.08rem; color: var(--ink); }
.acc__item.open .acc__q { color: var(--red); }
.acc__q .ico { width: 30px; height: 30px; border-radius: 50%; background: var(--paper-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; transition: background .3s; }
.acc__item.open .acc__q .ico { background: var(--red); }
.acc__q .ico::before, .acc__q .ico::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), background .3s; }
.acc__q .ico::before { width: 13px; height: 2.4px; }
.acc__q .ico::after { width: 2.4px; height: 13px; }
.acc__item.open .acc__q .ico::before, .acc__item.open .acc__q .ico::after { background: #fff; }
.acc__item.open .acc__q .ico::after { transform: rotate(90deg); opacity: 0; }
.acc__a { display: none; }
.acc__item.open .acc__a { display: block; animation: accIn .34s var(--ease); }
@keyframes accIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.acc__a p { padding: 0 26px 26px; color: var(--muted); font-size: 1.02rem; }

.faq-cta { text-align: center; margin-top: 56px; padding: 44px; background: var(--ink); color: #fff; border-radius: var(--r-xl); }
.faq-cta h3 { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.8rem,4vw,2.6rem); }
.faq-cta p { color: rgba(255,255,255,.66); margin: 10px 0 22px; }
.faq-cta .btn { margin: 0 6px; }

/* ---- REGISTER PAGE ---- */
.reg__inner { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.reg-form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(24px,3vw,44px); box-shadow: var(--shadow-sm); }
.reg-step { padding-bottom: 32px; margin-bottom: 32px; border-bottom: 1px solid var(--line); }
.reg-step:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.reg-step__head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.reg-step__n { width: 38px; height: 38px; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--display); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.reg-step__head h2 { font-family: var(--ui); font-weight: 800; font-size: 1.3rem; }
.reg-step__head span { display: block; font-size: .84rem; color: var(--muted); font-weight: 500; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--ui); font-weight: 700; font-size: .84rem; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--paper); transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px rgba(216,19,36,.1); }
.field textarea { resize: vertical; min-height: 90px; }
.field .hint { font-size: .78rem; color: var(--muted-2); }

.radio-set { display: flex; flex-direction: column; gap: 10px; }
.radio-row { display: flex; gap: 12px; flex-wrap: wrap; }
.opt { display: flex; align-items: center; gap: 10px; padding: 13px 18px; border: 1.5px solid var(--line); border-radius: var(--r-sm); cursor: pointer; transition: border-color .2s, background .2s; font-weight: 600; font-family: var(--ui); font-size: .92rem; flex: 1; min-width: 130px; }
.opt:hover { border-color: var(--red); }
.opt input { accent-color: var(--red); width: 18px; height: 18px; }
.opt:has(input:checked) { border-color: var(--red); background: rgba(216,19,36,.06); color: var(--red); }

/* package selector */
.pkg-pick { display: flex; flex-direction: column; gap: 12px; }
.pkg-opt { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border: 1.5px solid var(--line); border-radius: var(--r-md); cursor: pointer; transition: border-color .2s, background .2s; }
.pkg-opt:hover { border-color: var(--red); }
.pkg-opt:has(input:checked) { border-color: var(--red); background: rgba(216,19,36,.05); }
.pkg-opt input { accent-color: var(--red); width: 20px; height: 20px; flex-shrink: 0; }
.pkg-opt__body { flex: 1; }
.pkg-opt__body strong { font-family: var(--ui); font-size: 1.05rem; }
.pkg-opt__body span { display: block; color: var(--muted); font-size: .88rem; }
.pkg-opt__price { font-family: var(--display); font-size: 1.7rem; color: var(--ink); white-space: nowrap; }

.terms { display: flex; gap: 12px; align-items: flex-start; margin-top: 8px; }
.terms input { accent-color: var(--red); width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; }
.terms label { font-size: .9rem; color: var(--muted); }
.terms a { color: var(--red); text-decoration: underline; }
.reg-submit { width: 100%; justify-content: center; margin-top: 28px; }

/* summary rail */
.reg-rail { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 20px; }
.summary { background: var(--ink); color: #fff; border-radius: var(--r-xl); padding: 30px; }
.summary h3 { font-family: var(--ui); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: .9rem; color: var(--red-hot); }
.summary__row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .96rem; }
.summary__row span:first-child { color: rgba(255,255,255,.66); }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 18px; }
.summary__total span { font-family: var(--ui); font-weight: 700; text-transform: uppercase; font-size: .82rem; color: rgba(255,255,255,.66); }
.summary__total strong { font-family: var(--display); font-size: 2.4rem; }
.reg-help { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.reg-help h4 { font-family: var(--ui); font-weight: 800; font-size: 1.05rem; }
.reg-help p { color: var(--muted); font-size: .92rem; margin: 8px 0 14px; }
.reg-help a.tel { font-family: var(--display); font-size: 1.6rem; color: var(--red); }
.reg-trust { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.reg-trust div { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--ink-soft); }
.reg-trust svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-intro__inner { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; order: -1; }
  .values__grid { grid-template-columns: 1fr; }
  .steps-band__grid { grid-template-columns: 1fr; gap: 24px; }
  .pk-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .addons__grid { grid-template-columns: 1fr; }
  .reg__inner { grid-template-columns: 1fr; }
  .reg-rail { position: static; order: -1; }
}
@media (max-width: 560px) {
  .field-grid { grid-template-columns: 1fr; }
  .addon { flex-direction: column; align-items: flex-start; }
  .addon .price small { text-align: left; }
}
