/* =========================================
   PREMIUM SAAS PROFILE STYLES
   ========================================= */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

.saas-profile-wrapper {
  font-family: "Inter", sans-serif;
  color: #111827;
  min-height: calc(100vh - 60px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 100px; /* Gives it breathing room below the navbar */
  padding-bottom: 60px;
}

.saas-profile-container {
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
}

.saas-profile-header {
  margin-bottom: 24px;
}

.saas-profile-header h1 {
  font-family: "Sora", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #1c1004;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
}

.saas-profile-header p {
  color: var(--text-mid);
  margin: 0;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
}

/* The Premium White Card with slight glassmorphism */
.saas-profile-card {
  background-color: rgba(
    255,
    255,
    255,
    0.85
  ); /* Allows just a hint of background through */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow:
    0 12px 30px rgba(180, 80, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  overflow: hidden;
}

/* Card Sections */
.saas-card-section {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.saas-card-section:last-child {
  border-bottom: none;
  background-color: rgba(250, 250, 250, 0.5);
}

.saas-section-title {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 20px 0;
  color: #8a6535;
}

/* Data Rows */
.saas-data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
}

.saas-data-row:last-child {
  margin-bottom: 0;
}

.saas-data-label {
  color: #6b7280;
  font-weight: 500;
}

.saas-data-value {
  font-weight: 600;
  color: #111827;
}

.saas-monospace {
  font-family: monospace;
  color: #111827;
  background: rgba(0, 0, 0, 0.05);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 13px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.saas-badge-free {
  background-color: rgba(255, 255, 255, 0.8);
  color: #111827;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Action Area & Buttons */
.saas-action-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.saas-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Sora", sans-serif;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 1.5px solid transparent;
}

.saas-btn-outline {
  background-color: #ffffff;
  border-color: #d1d5db;
  color: #374151;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.saas-btn-outline:hover {
  background-color: #f9fafb;
  border-color: #9ca3af;
}

.saas-btn-danger {
  background-color: #ffffff;
  border-color: #fca5a5;
  color: #dc2626;
}

.saas-btn-danger:hover {
  background-color: #fef2f2;
  border-color: #ef4444;
}
