/* ── Inner Page Styles ── */

.page-main { padding-top: var(--nav-h); min-height: 100vh; }

/* Page Hero */
.page-hero {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 5vw, 4rem);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(56,189,248,0.04) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.page-hero--sm { padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 5vw, 4rem) clamp(2rem, 3vw, 3rem); }
.page-hero-inner { position: relative; z-index: 1; max-width: 900px; }
.page-title {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  letter-spacing: 0.02em;
  line-height: 0.9;
  color: var(--white);
  margin: 0.75rem 0 1.25rem;
}
.page-title span { color: var(--ice); }
.page-lead { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--silver); line-height: 1.7; max-width: 600px; }
.page-meta { font-size: 0.78rem; color: var(--silver); letter-spacing: 0.06em; }

/* Page Body */
.page-body { padding: 0 clamp(1.5rem, 5vw, 4rem) clamp(5rem, 8vw, 7rem); max-width: 1400px; margin: 0 auto; }

.page-section { padding: clamp(3.5rem, 6vw, 5rem) 0; }
.page-section--split { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.ps-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 1rem;
}
.ps-heading {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--white);
}
.ps-heading span { color: var(--ice); }
.ps-content p { font-size: 1rem; color: var(--silver); line-height: 1.8; margin-bottom: 1.25rem; }
.ps-content--wide { max-width: 820px; }
.ps-divider { height: 1px; background: var(--border); }

/* Value items */
.value-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.value-item:first-child { border-top: 1px solid var(--border); }
.vi-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: rgba(56,189,248,0.2);
  line-height: 1;
  min-width: 48px;
  transition: color 0.3s;
}
.value-item:hover .vi-num { color: var(--ice); }
.value-item h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.value-item p { font-size: 0.9rem; color: var(--silver); line-height: 1.7; }

/* About stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.as-item {
  background: var(--bg2);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.3s;
}
.as-item:hover { background: var(--bg3); }
.as-num {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.as-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
}

/* Info blocks */
.info-block { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.info-block:first-child { border-top: 1px solid var(--border); }
.ib-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 0.6rem;
}
.info-block p { font-size: 0.9rem; color: var(--silver); line-height: 1.7; }
.info-block a { color: var(--ice2); transition: color 0.2s; }
.info-block a:hover { color: var(--ice); }

/* ── FAQ ── */
.faq-section { padding: clamp(3rem, 5vw, 4rem) 0; }
.faq-category { margin-bottom: 3rem; }
.faq-cat-label {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--ice);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border2);
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--ice2); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ice);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a.open { max-height: 600px; padding-bottom: 1.25rem; }
.faq-a p { font-size: 0.95rem; color: var(--silver); line-height: 1.75; }
.faq-a a { color: var(--ice2); transition: color 0.2s; }
.faq-a a:hover { color: var(--ice); }

.faq-cta {
  margin-top: 4rem;
  text-align: center;
  padding: clamp(4rem, 7vw, 6rem) 2rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.faq-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(56,189,248,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.faq-cta-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: 0.02em;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}
.faq-cta-title span { color: var(--ice); }
.faq-cta p { color: var(--silver); font-size: 1rem; position: relative; }

/* ── Legal Pages ── */
.legal-body { max-width: 820px; padding: clamp(3rem, 5vw, 5rem) 0; }
.legal-intro {
  padding: 2rem;
  background: var(--bg2);
  border-left: 3px solid var(--ice);
  margin-bottom: 2.5rem;
}
.legal-intro p { font-size: 1rem; color: var(--light); line-height: 1.75; }
.legal-section { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 1rem;
}
.legal-section h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ice2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 1.5rem 0 0.6rem;
}
.legal-section p {
  font-size: 0.93rem;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-section ul {
  margin: 0.75rem 0 1rem 1.5rem;
}
.legal-section ul li {
  font-size: 0.93rem;
  color: var(--silver);
  line-height: 1.75;
  margin-bottom: 0.4rem;
}
.legal-section a { color: var(--ice2); transition: color 0.2s; }
.legal-section a:hover { color: var(--ice); }
.legal-section strong { color: var(--light); font-weight: 600; }
.legal-contact {
  margin-top: 1rem;
  padding: 1.5rem;
  background: var(--bg2);
  border: 1px solid var(--border);
}
.legal-contact p { margin-bottom: 1rem; }
.legal-contact p:last-child { margin-bottom: 0; }
.legal-contact a { color: var(--ice2); }

/* ── SMS Consent on form ── */
.sms-consent {
  background: rgba(56,189,248,0.04);
  border: 1px solid var(--border);
  padding: 1.25rem;
  margin-top: 0.25rem;
}
.sms-consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
  cursor: pointer;
}
.sms-consent-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--ice);
  margin-top: 2px;
  cursor: pointer;
}
.sms-consent-check span {
  font-size: 0.85rem;
  color: var(--light);
  line-height: 1.5;
  font-family: var(--ff-body);
}
.sms-disclosure {
  font-size: 0.75rem;
  color: var(--silver);
  line-height: 1.6;
}
.sms-disclosure a { color: var(--ice2); }
.sms-disclosure a:hover { color: var(--ice); }

.sms-optional-note {
  font-size: 0.78rem;
  color: var(--ice2);
  font-style: italic;
  margin: 0.25rem 0 0.75rem 0;
  line-height: 1.5;
}
.sms-consent-links {
  font-size: 0.78rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.sms-consent-links a {
  color: var(--ice2);
  text-decoration: underline;
  font-family: var(--ff-body);
}
.sms-consent-links a:hover { color: var(--ice); }
.sms-form-disclosure {
  font-size: 0.72rem;
  color: var(--silver);
  line-height: 1.6;
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--border);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .page-section--split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
}
