/* STRIQ — Support page */

:root {
  --bg: #060a10;
  --bg-elevated: #0f1e32;
  --surface: #1c1c1e;
  --border: #2c2c2e;
  --text: #ffffff;
  --text-muted: #8b95a8;
  --gold: #d4a843;
  --gold-light: #f0d060;
  --primary: #1e3a5f;
  --success: #22c55e;
  --max-width: 720px;
  --radius: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(30, 58, 95, 0.45), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(212, 168, 67, 0.08), transparent),
    var(--bg);
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 2rem 1.5rem 1rem;
  text-align: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg);
  font-weight: 800;
  font-size: 1.1rem;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.header-tagline {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.main {
  flex: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--text), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  margin: 0 0 2rem;
  color: var(--text-muted);
}

.contact-section,
.faq-section {
  margin-bottom: 2.5rem;
}

.contact-section h2,
.faq-section h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.contact-intro {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.125rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
}

.contact-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.contact-icon--email {
  background: rgba(30, 58, 95, 0.35);
  color: #5b8fd4;
}

.contact-icon--phone {
  background: rgba(212, 168, 67, 0.2);
  color: var(--gold);
}

.contact-icon--chat {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
}

.contact-body h3 {
  margin: 0 0 0.15rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.contact-body p,
.contact-body a {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.contact-body a {
  color: var(--gold-light);
  text-decoration: none;
}

.contact-body a:hover {
  text-decoration: underline;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.125rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--gold);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 0;
  padding: 0 1.125rem 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 0.875rem;
}

.footer {
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.footer p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-version {
  margin-top: 0.35rem !important;
  font-size: 0.75rem !important;
}

@media (max-width: 480px) {
  .header,
  .main {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
