/* ══════════════════════════════════════════════════════════════════
   CLICKBAIT — inner-page styles (terms, privacy, refund, disclaimer)
   Loaded in addition to style.css / animations.css / responsive.css
   ══════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════════
   A. BIG PAGE BANNER  (About Us / Contact Us)
   ══════════════════════════════════════════════════════════════════ */
.banner {
  position: relative;
  overflow: hidden;
  padding-block: 40px 56px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.banner__glow {
  position: absolute;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  width: 820px; height: 520px;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.banner .container { position: relative; z-index: 1; }

.banner__title {
  font-size: clamp(2rem, 8.5vw, 4rem);
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
}


/* ══════════════════════════════════════════════════════════════════
   B. YELLOW BAND
   ══════════════════════════════════════════════════════════════════ */
.band {
  background: var(--accent);
  color: #000;
  padding-block: 64px;
}
.band__title {
  font-size: clamp(1.6rem, 5.6vw, 2.7rem);
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
}
.band p {
  color: rgba(0, 0, 0, .78);
  max-width: 68ch;
  margin: 0 auto 14px;
  font-size: .98rem;
}
/* eyebrow pill inverted for the yellow background */
.eyebrow--dark {
  border-color: rgba(0, 0, 0, .55);
  color: #000;
}


/* ══════════════════════════════════════════════════════════════════
   C. SPLIT LAYOUT (text beside media / form)
   ══════════════════════════════════════════════════════════════════ */
.split { display: grid; gap: 40px; align-items: center; }
.split--form { align-items: start; }

.split__text p {
  color: var(--muted);
  margin-bottom: 16px;
}
.split__text .section__title { margin-bottom: 16px; }


/* ══════════════════════════════════════════════════════════════════
   D. TEAM / MANAGEMENT CARDS
   ══════════════════════════════════════════════════════════════════ */
.team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 760px;
  margin-inline: auto;
}
/* three people — needs more room than the two-up default */
.team--3 { max-width: 1040px; }

.member {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.member:hover {
  border-color: rgba(255, 198, 0, .45);
  transform: translateY(-5px);
}
.member__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.member__body {
  padding: 18px 16px 22px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.member__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.member__role { font-size: .86rem; color: var(--muted); }


/* ══════════════════════════════════════════════════════════════════
   E. CONTACT FORM
   ══════════════════════════════════════════════════════════════════ */
.formcard {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px 22px 28px;
}

.field { margin-bottom: 18px; }
.field-row { display: grid; gap: 0; }

.field label {
  display: block;
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.req { color: var(--accent); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }

.field input::placeholder,
.field textarea::placeholder { color: var(--muted-dim); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}

/* dropdown arrow (native arrow is invisible on a dark background) */
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%),
                    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 14px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.field select option { background: #111; color: #fff; }

/* honeypot — hidden from people, catches bots */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* shown by js/main.js when the server sends the form back */
.formcard__error {
  margin-bottom: 18px;
  padding: 13px 16px;
  border: 1px solid #ff6b6b;
  border-left-width: 3px;
  border-radius: var(--radius-sm);
  background: rgba(255, 107, 107, .08);
  color: #ffb3b3;
  font-size: .88rem;
  line-height: 1.5;
}
.formcard__error[hidden] { display: none; }

.formcard__submit { width: 100%; margin-top: 4px; }
.formcard__note {
  margin-top: 14px;
  text-align: center;
  font-size: .78rem;
  color: var(--muted-dim);
}


/* ══════════════════════════════════════════════════════════════════
   F. CONTACT DETAILS LIST
   ══════════════════════════════════════════════════════════════════ */
.contacts { list-style: none; padding: 0; margin: 28px 0 0; }

.contacts__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.contacts__item:last-child { border-bottom: 0; }

.contacts__icon {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.contacts__icon svg { width: 21px; height: 21px; }
.contacts__item:hover .contacts__icon { background: var(--accent); color: #000; }

.contacts__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contacts__body strong {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
}
.contacts__body a,
.contacts__body span {
  font-size: .88rem;
  color: var(--muted);
  word-break: break-word;
  transition: color .2s var(--ease);
}
.contacts__body a:hover { color: var(--accent); }

.contacts__wa { margin-top: 24px; }


/* ══════════════════════════════════════════════════════════════════
   G. THANK YOU PAGE
   ══════════════════════════════════════════════════════════════════ */
.thanks {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: 56px 80px;
  /* fill the screen below the header so the page never looks half-empty */
  min-height: calc(100dvh - 68px);
  display: flex;
  align-items: center;
}
.thanks__glow {
  position: absolute;
  top: -280px; left: 50%;
  transform: translateX(-50%);
  width: 820px; height: 560px;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.thanks .container { position: relative; z-index: 1; }

.thanks__eyebrow {
  font-size: .92rem;
  color: var(--muted);
  margin-bottom: 26px;
}

/* animated tick — brand yellow ring, black check */
.tick { width: 92px; margin: 0 auto 22px; }
.tick svg { width: 100%; height: auto; overflow: visible; }
.tick__circle {
  fill: var(--accent);
  stroke: none;
  transform-origin: 50% 50%;
  animation: tick-pop .5s var(--ease) both;
}
.tick__mark {
  fill: none;
  stroke: #000;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: tick-draw .45s var(--ease) .35s both;
}
@keyframes tick-pop {
  0%   { transform: scale(0);   opacity: 0; }
  70%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}
@keyframes tick-draw { to { stroke-dashoffset: 0; } }

.thanks__title {
  font-size: clamp(2.4rem, 12vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 36px;
}

.thanks__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.thanks__note {
  font-size: .82rem;
  color: var(--muted-dim);
  max-width: 46ch;
  margin-inline: auto;
}
.thanks__note a { color: var(--accent); }

@media (min-width: 560px) {
  .thanks__actions { flex-direction: row; justify-content: center; }
}
@media (min-width: 900px) {
  .thanks { min-height: calc(100dvh - 78px); padding-block: 72px 96px; }
  .tick { width: 106px; }
  .thanks__title { margin-bottom: 42px; }
}


/* ══════════════════════════════════════════════════════════════════
   H. LEGAL PAGES
   ══════════════════════════════════════════════════════════════════ */
.page-hero {
  padding-block: 56px 32px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero__glow {
  position: absolute;
  top: -280px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 460px;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }

.page-hero__title {
  font-size: clamp(1.9rem, 7vw, 3rem);
  margin-bottom: 10px;
}
.page-hero__meta {
  color: var(--muted-dim);
  font-size: .82rem;
  letter-spacing: .06em;
}

.legal { padding-block: 48px 88px; }

.legal h2 {
  font-size: 1.25rem;
  margin: 40px 0 12px;
  color: var(--text);
}
.legal h2:first-child { margin-top: 0; }
.legal h2 span { color: var(--accent); margin-right: 8px; }

.legal p,
.legal li {
  color: var(--muted);
  font-size: .96rem;
  margin-bottom: 12px;
}
.legal ul { padding-left: 20px; }
.legal li::marker { color: var(--accent); }

.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.legal__note {
  margin-top: 48px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
.legal__note p { margin: 0; font-size: .9rem; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--muted);
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.back-link:hover { color: var(--accent); transform: translateX(-3px); }

@media (min-width: 720px) {
  .page-hero { padding-block: 80px 44px; }
  .legal { padding-block: 60px 110px; }
  .legal h2 { font-size: 1.4rem; }

  .banner { padding-block: 64px 80px; }
  .band   { padding-block: 96px; }

  .team { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  /* all three on one row, so nobody is left stranded on a second row */
  .team--3 { grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .field-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .formcard  { padding: 34px 30px 36px; }
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1.1fr; gap: 60px; }
  .split--form { grid-template-columns: 1.05fr 1fr; gap: 64px; }
  .split__text p { font-size: 1.02rem; }
}
