/* ==================================================
   ITSSOSO — COMPANY PAGES v2.0 (SAAS POLISH LOCKED)
   Purpose:
   - About / Privacy / Terms / Trust / Careers
   - Calm, structured, authoritative
   - Consistent spacing rhythm
   - Professional SaaS grade
================================================== */


/* ==================================================
   SPACING SYSTEM
   8px baseline
   16 / 24 / 32 / 48 / 72 rhythm
================================================== */

:root {
  --company-max-width: 920px;
  --company-radius: 18px;
  --company-shadow: 0 10px 28px rgba(0,0,0,0.06);
  --company-text: #111827;
  --company-muted: #4b5563;
  --company-soft: #6b7280;
  --company-bg: #f6f8fb;
}


/* ==================================================
   PAGE WRAPPER
================================================== */

.itssoso-company-page {
  padding: 72px 20px 96px;
  background: var(--company-bg);
}


/* ==================================================
   SECTION CONTAINER
================================================== */

.company-section {
  max-width: var(--company-max-width);
  margin: 0 auto 48px;
  background: #ffffff;
  padding: 48px 48px;
  border-radius: var(--company-radius);
  box-shadow: var(--company-shadow);
}

.company-section:last-child {
  margin-bottom: 0;
}


/* ==================================================
   TYPOGRAPHY
================================================== */

.company-section h1 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--company-text);
}

.company-section h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--company-text);
}

.company-section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--company-muted);
  margin-bottom: 18px;
}

.company-lead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--company-soft);
  margin-bottom: 28px;
}


/* ==================================================
   HERO
================================================== */

.company-hero {
  text-align: center;
  margin-bottom: 48px;
}

.company-hero h1 {
  margin-bottom: 18px;
}

.company-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--company-soft);
  max-width: 680px;
  margin: 0 auto;
}


/* ==================================================
   LISTS
================================================== */

.company-list {
  padding-left: 22px;
  margin-top: 12px;
}

.company-list li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: var(--company-muted);
}


/* ==================================================
   CTA SECTION
================================================== */

.company-cta {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}


/* Primary Button */

.company-btn,
.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: #111827;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 0.18s ease;
}

.company-btn:hover,
.btn-primary:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}


/* Secondary Links */

.company-secondary-links {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.company-secondary-links a {
  font-size: 14px;
  color: var(--company-soft);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.company-secondary-links a:hover {
  color: var(--company-text);
}


/* ==================================================
   MISSING / ERROR STATE
================================================== */

.company-missing {
  max-width: 720px;
  margin: 96px auto;
  padding: 56px 40px;
  background: #ffffff;
  border-radius: var(--company-radius);
  text-align: center;
  box-shadow: var(--company-shadow);
}

.company-missing h1 {
  font-size: 28px;
  margin-bottom: 16px;
}

.company-missing p {
  color: var(--company-soft);
  font-size: 16px;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 768px) {

  .itssoso-company-page {
    padding: 48px 16px 72px;
  }

  .company-section {
    padding: 32px 24px;
    margin-bottom: 32px;
  }

  .company-section h1 {
    font-size: 30px;
  }

  .company-section h2 {
    font-size: 20px;
    margin-top: 28px;
  }

  .company-subtitle {
    font-size: 17px;
  }
}


/* ==================================================
   ACCESSIBILITY / MOTION
================================================== */

@media (prefers-reduced-motion: no-preference) {
  .company-section {
    animation: companyFade 0.35s ease both;
  }

  @keyframes companyFade {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.company-hero {
  text-align: center;
  margin-bottom: 72px;
  padding-bottom: 32px;
  border-bottom: 1px solid #f0f2f5;
}

.company-section {
  padding: 56px 56px;
}

.company-cta .btn-primary {
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 8px;
}

.company-secondary-links {
  margin-top: 36px;
  font-size: 13px;
}

/* ==================================================
   LEGAL PAGES — SAAS POLISH
================================================== */

.itssoso-legal .legal-header {
  text-align: center;
  margin-bottom: 40px;
}

.itssoso-legal .legal-updated {
  margin-top: 10px;
  color: #6b7280;
  font-size: 14px;
}

.legal-trust-strip {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-pill {
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
}

.legal-intro {
  font-size: 16px;
  line-height: 1.8;
}

.legal-summary {
  margin: 28px 0 40px;
  padding: 18px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fafafa;
}

.legal-summary-title {
  margin: 0 0 10px;
  font-size: 16px;
}

.legal-summary-list {
  margin: 0;
  padding-left: 18px;
}

.legal-footer-cta {
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.legal-footer-cta .legal-link {
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
}

.legal-footer-cta .legal-link:hover {
  color: #111827;
}