/* ═══════════════════════════════════════
   VITANTRA — inner.css (All inner pages)
═══════════════════════════════════════ */

/* ── FEATURES PAGE ── */
.feat-row {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 100px;
  align-items: center;
  padding: 80px 0;
}
.feat-row-reverse { direction: rtl; }
.feat-row-reverse > * { direction: ltr; }

.feat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300; color: var(--ink);
  line-height: 1.15; letter-spacing: -0.01em;
  margin: 16px 0 20px;
}
.feat-title em { font-style: italic; color: var(--forest); }
.feat-body {
  font-size: 16px; color: var(--tx-sub);
  line-height: 1.8; font-weight: 300; margin-bottom: 28px;
}
.feat-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 20px; margin-bottom: 36px;
}
.feat-list li {
  font-size: 14px; color: var(--tx-mid);
  font-weight: 500; display: flex; align-items: center; gap: 8px;
}
.feat-list li::before {
  content: '✓';
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--sage-pale); color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; flex-shrink: 0;
}
.feat-row-phone { display: flex; justify-content: center; }
.feat-phone { width: 260px; }
.feat-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-md), transparent);
}

/* ── HOW IT WORKS PAGE ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.step {
  padding: 36px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: all 300ms var(--ease-expo);
}
.step:hover {
  border-color: var(--forest-pale);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300; font-style: italic;
  color: var(--gold); line-height: 1; margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--ink);
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.step-body {
  font-size: 14px; color: var(--tx-sub);
  line-height: 1.75; font-weight: 300;
}

.hiw-phones {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.hiw-phone-item { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.hiw-phone { width: 100%; }
.hiw-phone-label {
  font-size: 13px; font-weight: 600; color: var(--tx-sub);
  text-align: center; letter-spacing: 0.03em;
}

/* ── ABOUT PAGE ── */
.about-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px); font-weight: 300; font-style: italic;
  color: var(--ink); margin-bottom: 32px; letter-spacing: -0.01em;
}
.about-text {
  font-size: 17px; color: var(--tx-sub);
  line-height: 1.85; font-weight: 300; margin-bottom: 24px;
}
.about-values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; margin-top: 64px;
}
.about-value {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: all 280ms var(--ease-expo);
}
.about-value:hover {
  border-color: var(--forest-pale);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.about-value-icon { font-size: 28px; margin-bottom: 16px; }
.about-value h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--ink);
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.about-value p { font-size: 14px; color: var(--tx-sub); line-height: 1.7; font-weight: 300; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: all 280ms var(--ease-expo);
}
.contact-item:hover {
  border-color: var(--border-md);
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}
.contact-item-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.contact-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: var(--ink);
  margin-bottom: 6px;
}
.contact-item p { font-size: 14px; color: var(--tx-sub); }

/* ── SUPPORT / FAQ PAGE ── */
.faq-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 300; font-style: italic;
  color: var(--ink); margin-bottom: 32px; letter-spacing: -0.01em;
}
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: all 280ms var(--ease-expo);
}
.faq-item:hover {
  border-color: var(--forest-pale);
  box-shadow: var(--sh-sm);
}
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: var(--ink);
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.faq-a { font-size: 15px; color: var(--tx-sub); line-height: 1.75; font-weight: 300; }

/* ── LEGAL PAGES ── */
.legal-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300; font-style: italic;
  color: var(--ink); margin-bottom: 24px; letter-spacing: -0.01em;
}
.legal-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--ink);
  margin: 32px 0 12px;
}
.legal-body p {
  font-size: 15px; color: var(--tx-sub);
  line-height: 1.8; font-weight: 300; margin-bottom: 16px;
}
.legal-body a { color: var(--forest); text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .feat-row { grid-template-columns: 1fr 300px; gap: 60px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-phones { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .feat-row { grid-template-columns: 1fr; gap: 40px; direction: ltr !important; }
  .feat-row-phone { order: -1; }
  .feat-phone { width: 220px; }
  .steps-grid { grid-template-columns: 1fr; }
  .hiw-phones { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .feat-list { grid-template-columns: 1fr; }
}
