/* src/styles.scss */
:root {
  --color-primary: #5042a9;
  --color-primary-dark: #3a2f7a;
  --color-primary-light: #6d5fc7;
  --color-primary-soft: #ece9f8;
  --color-dark: #1a1537;
  --color-dark-2: #2d2460;
  --color-accent: #fbdc70;
  --color-accent-dark: #f5c518;
  --color-accent-ink: #4a3b00;
  --color-text: #1e1b2e;
  --color-text-muted: #6b6880;
  --color-border: #e7e4f2;
  --color-surface: #ffffff;
  --color-background: #f6f5fb;
  --color-success: #1fa971;
  --color-success-dark: #157a52;
  --color-danger: #d64545;
  --color-warning: #c98a1a;
  --color-info: #3b6fc7;
  --gradient-primary:
    linear-gradient(
      135deg,
      #5042a9 0%,
      #3a2f7a 100%);
  --gradient-dark:
    linear-gradient(
      140deg,
      #1a1537 0%,
      #2d2460 55%,
      #5042a9 135%);
  --gradient-tint:
    linear-gradient(
      160deg,
      #f8f6ff 0%,
      #ffffff 45%,
      #f0edff 75%,
      #eef4f8 100%);
  --gradient-accent:
    linear-gradient(
      135deg,
      #fbdc70 0%,
      #f5c518 100%);
  --gradient-success:
    linear-gradient(
      135deg,
      #1fa971 0%,
      #157a52 100%);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 6px rgba(30, 27, 46, 0.05), 0 8px 20px rgba(30, 27, 46, 0.05);
  --shadow: 0 8px 24px rgba(80, 66, 169, 0.1), 0 20px 48px rgba(80, 66, 169, 0.12);
  --shadow-lg: 0 12px 30px rgba(30, 27, 46, 0.1), 0 34px 74px rgba(30, 27, 46, 0.16);
  --shadow-accent: 0 12px 30px rgba(245, 197, 24, 0.28);
  --shadow-success: 0 14px 36px rgba(31, 169, 113, 0.3);
  --ring-focus: 0 0 0 4px var(--color-primary-soft);
  --max-width: 1200px;
  --header-height: 72px;
  --font-family:
    Verdana,
    Geneva,
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
}
.section {
  position: relative;
  padding: 90px 0;
}
.section-sm {
  padding: 56px 0;
}
.section-alt {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.section-tint {
  background: var(--gradient-tint);
}
.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--gradient-dark);
  color: #ffffff;
}
.section-dark::before,
.section-dark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.section-dark::before {
  width: 480px;
  height: 480px;
  top: -180px;
  right: -140px;
  background:
    radial-gradient(
      circle,
      rgba(251, 220, 112, 0.16),
      transparent 70%);
}
.section-dark::after {
  width: 520px;
  height: 520px;
  bottom: -220px;
  left: -160px;
  background:
    radial-gradient(
      circle,
      rgba(109, 95, 199, 0.35),
      transparent 70%);
}
.section-dark .section-title,
.section-dark .section-lead {
  color: #ffffff;
}
.section-dark .section-lead {
  opacity: 0.85;
}
.section-dark .eyebrow {
  color: var(--color-accent);
}
.section-dark .eyebrow::before {
  background: var(--color-accent);
}
.section-dark .container {
  position: relative;
  z-index: 1;
}
.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head.left {
  margin-left: 0;
  text-align: left;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 18px;
  border: 1px solid rgba(80, 66, 169, 0.12);
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
}
.section-dark .eyebrow {
  background: rgba(251, 220, 112, 0.14);
}
.section-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin: 0 0 14px;
}
.section-lead {
  font-size: 18px;
  color: var(--color-text-muted);
  margin: 0;
}
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.align-start {
  align-items: start;
}
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.feature-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 30px 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(80, 66, 169, 0.2);
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card h3 {
  font-size: 19px;
  margin: 0 0 8px;
}
.feature-card p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: var(--gradient-primary);
  color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 10px 22px rgba(80, 66, 169, 0.3);
  transition: transform 0.25s ease;
}
.feature-card:hover .icon-badge {
  transform: translateY(-3px) scale(1.05);
}
.icon-badge svg {
  width: 24px;
  height: 24px;
}
.icon-badge.accent {
  background: var(--gradient-accent);
  color: var(--color-accent-ink);
  box-shadow: 0 8px 18px rgba(245, 197, 24, 0.28);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: var(--color-primary-soft);
  color: var(--color-primary);
}
.badge-success {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px 6px 11px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #ffffff;
  background: var(--gradient-success);
  box-shadow: var(--shadow-success);
}
.badge-success::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
}
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-tint);
  padding: 76px 0 64px;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 420px;
  background:
    radial-gradient(
      circle,
      rgba(80, 66, 169, 0.12),
      transparent 68%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.8px;
  max-width: 820px;
  margin: 14px auto 16px;
}
.page-hero p {
  font-size: 19px;
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.breadcrumb a {
  color: var(--color-text-muted);
  font-weight: 600;
}
.breadcrumb a:hover {
  color: var(--color-primary);
}
.steps {
  display: grid;
  gap: 28px;
}
.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(80, 66, 169, 0.25);
}
.step h3 {
  margin: 6px 0 6px;
  font-size: 19px;
}
.step p {
  color: var(--color-text-muted);
  margin: 0;
}
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--gradient-dark);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(251, 220, 112, 0.18),
      transparent 70%);
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(109, 95, 199, 0.4),
      transparent 70%);
  pointer-events: none;
}
.cta-band > * {
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 12px;
}
.cta-band p {
  font-size: 18px;
  opacity: 0.88;
  max-width: 620px;
  margin: 0 auto 28px;
}
.cta-band .btn-primary {
  background: var(--gradient-accent);
  color: var(--color-accent-ink);
}
.cta-band .btn-primary:hover {
  filter: brightness(1.05);
  color: var(--color-accent-ink);
}
.cta-band .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}
.cta-band .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--color-text);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-success) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
}
.cross-list li::before {
  background: #d64545 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") no-repeat center;
}
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--color-border);
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 8px;
  font-weight: 700;
  font-size: 17px;
  color: var(--color-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.15s ease;
}
.faq-item summary:hover {
  color: var(--color-primary);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235042a9' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  transition: transform 0.2s ease;
}
.faq-item[open] summary {
  color: var(--color-primary);
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
}
.faq-item p {
  margin: 0 8px 24px;
  color: var(--color-text-muted);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 760px;
}
.prose {
  max-width: 780px;
  margin: 0 auto;
}
.prose h2 {
  font-size: 24px;
  margin: 36px 0 12px;
}
.prose h3 {
  font-size: 19px;
  margin: 24px 0 8px;
}
.prose p,
.prose li {
  color: var(--color-text-muted);
}
.prose ul {
  padding-left: 20px;
}
.text-center {
  text-align: center;
}
.muted {
  color: var(--color-text-muted);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
.data-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
  vertical-align: top;
}
.data-table tr:last-child td {
  border-bottom: none;
}
.data-table td:last-child {
  text-align: right;
}
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: var(--color-primary-soft);
  color: var(--color-primary);
}
.mt-32 {
  margin-top: 32px;
}
.actions-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.actions-row.center {
  justify-content: center;
}
@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }
  .section-title {
    font-size: 27px;
  }
  .page-hero h1 {
    font-size: 32px;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .cta-band {
    padding: 40px 24px;
  }
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}
body {
  font-family: var(--font-family);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  margin: 0 0 0.5em;
  line-height: 1.2;
  font-weight: 700;
}
p {
  margin: 0 0 1em;
}
a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  color: var(--color-primary-dark);
}
button {
  font-family: inherit;
  cursor: pointer;
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}
.btn:active {
  transform: translateY(0);
}
.btn-primary {
  background-image:
    linear-gradient(
      135deg,
      var(--color-primary-light) 0%,
      var(--color-primary) 55%,
      var(--color-primary-dark) 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(80, 66, 169, 0.3);
}
.btn-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(80, 66, 169, 0.38);
  filter: brightness(1.04);
}
.btn-accent {
  background: var(--gradient-accent);
  color: var(--color-accent-ink);
  box-shadow: 0 8px 20px rgba(245, 197, 24, 0.32);
}
.btn-accent:hover {
  color: var(--color-accent-ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 197, 24, 0.42);
}
.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background-color: var(--color-primary-soft);
  transform: translateY(-2px);
}
.btn-outline-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.75);
}
.btn-block {
  width: 100%;
}
.btn-lg {
  padding: 15px 28px;
  font-size: 16px;
}
.btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}
.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
}
@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}
.form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 15px;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}
.form-control::placeholder {
  color: var(--color-text-muted);
  opacity: 0.7;
}
.form-control:hover {
  border-color: var(--color-primary-light);
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: var(--ring-focus);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field-error {
  font-size: 13px;
  color: var(--color-danger);
}
.form-note {
  margin: 20px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--color-text-muted);
}
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
