/* =========================================================
 * GSC - Pagina Achiziții SEAP – SICAP
 * Template: page-achizitii-seap-sicap.php
 * ========================================================= */

:root {
  --seap-primary: #0f66d7;
  --seap-primary-dark: #084da8;
  --seap-navy: #07152d;
  --seap-text: #25334a;
  --seap-muted: #667085;
  --seap-border: #dce6f2;
  --seap-soft: #f4f8fd;
  --seap-white: #ffffff;
  --seap-success: #31d17c;
  --seap-shadow: 0 16px 45px rgba(15, 51, 91, 0.10);
}

.gsc-seap-page {
  color: var(--seap-text);
  font-size: 16px;
  line-height: 1.7;
}

.gsc-seap-page *,
.gsc-seap-page *::before,
.gsc-seap-page *::after {
  box-sizing: border-box;
}

.gsc-seap-container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.gsc-seap-hero {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 36px));
  margin: 38px auto 0;
  padding: 70px 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 20%, rgba(73, 154, 255, 0.35), transparent 28%),
    linear-gradient(135deg, #06142c 0%, #0b3f85 58%, #0f66d7 100%);
  box-shadow: var(--seap-shadow);
  text-align: center;
}

.gsc-seap-hero::before,
.gsc-seap-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.gsc-seap-hero::before {
  width: 260px;
  height: 260px;
  top: -140px;
  left: -80px;
}

.gsc-seap-hero::after {
  width: 190px;
  height: 190px;
  right: -65px;
  bottom: -95px;
}

.gsc-seap-hero .gsc-seap-container {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.gsc-seap-kicker,
.gsc-seap-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--seap-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gsc-seap-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.gsc-seap-kicker::before,
.gsc-seap-eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.gsc-seap-hero h1 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.gsc-seap-hero p {
  max-width: 740px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  line-height: 1.7;
}

.gsc-seap-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.gsc-seap-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--seap-primary);
  border-radius: 12px;
  background: var(--seap-primary);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gsc-seap-button:hover {
  transform: translateY(-2px);
  background: var(--seap-primary-dark);
  border-color: var(--seap-primary-dark);
  color: #ffffff;
  text-decoration: none;
}

.gsc-seap-button-light {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--seap-primary);
}

.gsc-seap-button-light:hover {
  border-color: #edf5ff;
  background: #edf5ff;
  color: var(--seap-primary-dark);
}

.gsc-seap-button-outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.gsc-seap-button-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.gsc-seap-button-secondary {
  background: #ffffff;
  color: var(--seap-primary);
}

.gsc-seap-content {
  padding: 54px 0 90px;
}

.gsc-seap-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -26px auto 54px;
  padding: 14px;
  border: 1px solid var(--seap-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(15, 51, 91, 0.08);
}

.gsc-seap-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 10px;
  background: var(--seap-soft);
  color: var(--seap-primary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.gsc-seap-nav a:hover {
  transform: translateY(-1px);
  background: var(--seap-primary);
  color: #ffffff;
}

.gsc-seap-section,
.gsc-seap-intro,
.gsc-seap-cta {
  margin-top: 62px;
  scroll-margin-top: 24px;
}

.gsc-seap-intro {
  margin-top: 0;
}

.gsc-seap-section-heading {
  max-width: 790px;
  margin-bottom: 28px;
}

.gsc-seap-section-heading h2,
.gsc-seap-contact-copy h2,
.gsc-seap-cta h2 {
  margin: 0 0 12px;
  color: var(--seap-navy);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.gsc-seap-section-heading p,
.gsc-seap-contact-copy p,
.gsc-seap-cta p {
  margin: 0;
  color: var(--seap-muted);
  font-size: 17px;
}

.gsc-seap-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.gsc-seap-method-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 8px 16px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--seap-border);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(24, 58, 96, 0.07);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gsc-seap-method-card:hover {
  transform: translateY(-4px);
  border-color: #a9caf1;
  box-shadow: 0 18px 38px rgba(24, 58, 96, 0.12);
  color: inherit;
  text-decoration: none;
}

.gsc-seap-method-card .gsc-seap-icon {
  grid-row: 1 / span 2;
}

.gsc-seap-method-card strong {
  color: var(--seap-navy);
  font-size: 20px;
  line-height: 1.25;
}

.gsc-seap-method-card > span:last-child {
  color: var(--seap-muted);
  font-size: 15px;
}

.gsc-seap-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: linear-gradient(135deg, #e8f2ff, #d6e9ff);
  color: var(--seap-primary);
  font-size: 22px;
}

.gsc-seap-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  counter-reset: seap-step;
}

.gsc-seap-step {
  position: relative;
  min-height: 235px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--seap-border);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(24, 58, 96, 0.07);
  counter-increment: seap-step;
}

.gsc-seap-step::after {
  content: "0" counter(seap-step);
  position: absolute;
  right: 18px;
  bottom: -22px;
  color: rgba(15, 102, 215, 0.07);
  font-size: 104px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.gsc-seap-step-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.gsc-seap-step-number {
  color: var(--seap-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.gsc-seap-step h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: var(--seap-navy);
  font-size: 21px;
  font-weight: 750;
}

.gsc-seap-step p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--seap-muted);
  font-size: 15px;
}

.gsc-seap-note {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid #b9d6f8;
  border-radius: 18px;
  background: #edf6ff;
}

.gsc-seap-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #ffffff;
  color: var(--seap-primary);
  font-size: 20px;
}

.gsc-seap-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--seap-navy);
  font-size: 17px;
}

.gsc-seap-note p {
  margin: 0;
  color: var(--seap-text);
}

.gsc-seap-contact-panel {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 34px;
  align-items: center;
  padding: 38px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(15, 102, 215, 0.98), rgba(7, 21, 45, 0.98));
  color: #ffffff;
  box-shadow: var(--seap-shadow);
}

.gsc-seap-contact-panel .gsc-seap-eyebrow,
.gsc-seap-contact-panel h2,
.gsc-seap-contact-panel p {
  color: #ffffff;
}

.gsc-seap-contact-panel p {
  color: rgba(255, 255, 255, 0.92);
}

.gsc-seap-check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.gsc-seap-check-list li {
  position: relative;
  padding: 12px 15px 12px 42px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
}

.gsc-seap-check-list li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  width: 9px;
  height: 9px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--seap-success);
  box-shadow: 0 0 0 4px rgba(49, 209, 124, 0.14);
}

.gsc-seap-contact-actions {
  display: grid;
  gap: 13px;
}

.gsc-seap-contact-button {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.gsc-seap-contact-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  text-decoration: none;
}

.gsc-seap-contact-button-secondary {
  background: rgba(255, 255, 255, 0.08);
}

.gsc-seap-contact-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #ffffff;
  color: var(--seap-primary);
  font-size: 18px;
}

.gsc-seap-contact-button small,
.gsc-seap-contact-button strong {
  display: block;
}

.gsc-seap-contact-button small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gsc-seap-contact-button strong {
  color: #ffffff;
  font-size: 16px;
}

.gsc-seap-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.gsc-seap-flow-item {
  position: relative;
  padding: 22px 18px;
  border: 1px solid var(--seap-border);
  border-radius: 17px;
  background: #ffffff;
  text-align: center;
}

.gsc-seap-flow-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--seap-soft);
  color: var(--seap-primary);
  font-size: 13px;
  font-weight: 800;
}

.gsc-seap-flow-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--seap-navy);
  font-size: 17px;
}

.gsc-seap-flow-item p {
  margin: 0;
  color: var(--seap-muted);
  font-size: 14px;
}

.gsc-seap-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--seap-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--seap-shadow);
}

.gsc-seap-cta > div:first-child {
  max-width: 690px;
}

.gsc-seap-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 11px;
}

.gsc-seap-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--seap-primary);
  font-weight: 700;
  text-decoration: none;
}

.gsc-seap-text-link:hover {
  color: var(--seap-primary-dark);
  text-decoration: underline;
}

@media (max-width: 991px) {
  .gsc-seap-contact-panel {
    grid-template-columns: 1fr;
  }

  .gsc-seap-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gsc-seap-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .gsc-seap-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .gsc-seap-hero {
    margin-top: 24px;
    padding: 50px 18px;
    border-radius: 18px;
  }

  .gsc-seap-hero h1 {
    font-size: 37px;
  }

  .gsc-seap-hero p {
    font-size: 16px;
  }

  .gsc-seap-hero-actions {
    flex-direction: column;
  }

  .gsc-seap-hero-actions .gsc-seap-button {
    width: 100%;
  }

  .gsc-seap-content {
    padding-top: 38px;
    padding-bottom: 64px;
  }

  .gsc-seap-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-top: -12px;
  }

  .gsc-seap-nav a {
    flex: 0 0 auto;
  }

  .gsc-seap-methods,
  .gsc-seap-steps,
  .gsc-seap-flow {
    grid-template-columns: 1fr;
  }

  .gsc-seap-method-card,
  .gsc-seap-step,
  .gsc-seap-contact-panel,
  .gsc-seap-cta {
    padding: 24px;
    border-radius: 18px;
  }

  .gsc-seap-note {
    flex-direction: column;
  }

  .gsc-seap-cta-actions {
    width: 100%;
  }

  .gsc-seap-cta-actions .gsc-seap-button,
  .gsc-seap-cta-actions .gsc-seap-text-link {
    width: 100%;
    justify-content: center;
  }
}
