/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: #334155;
  background: #f8fafc;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================================================
   GLOBAL
========================================================= */

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

.section {
  padding: 90px 0;
}

.section-light {
  background: #f8fafc;
}

.section-white {
  background: #fff;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-label {
  display: inline-block;
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.section-head h2 {
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 15px;
}

.section-head p {
  color: #64748b;
}

.large-text {
  font-size: 1.08rem;
  color: #475569;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: #2563eb;
  font-weight: 800;
}

.text-link:hover {
  text-decoration: underline;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #e2e8f0;
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo,
.footer-logo {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.7px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0f172a;
}

.logo__icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}

.logo > span {
  color: #0f172a;
}

.logo > span > span,
.footer-logo span {
  color: #2563eb;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1e293b;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #2563eb;
}

.main-nav a.active:not(.nav-cta) {
  color: #2563eb;
  font-weight: 800;
}

.main-nav a.active:not(.nav-cta)::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;

  height: 2px;

  background-color: #2563eb;
  border-radius: 2px;
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 12px;
  color: #fff !important;
  background: #2563eb;
}

.nav-cta:hover {
  background: #1d4ed8;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #0f172a;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 13px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: #2563eb;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  color: #1e3a8a;
  background: #eff6ff;
  border-color: #bfdbfe;
}

.btn-secondary:hover {
  background: #dbeafe;
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.btn-dark {
  color: #fff;
  background: #0f172a;
}

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

.hero {
  color: #fff;
  padding: 100px 0 110px;

  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(96, 165, 250, 0.28),
      transparent 28%
    ),
    linear-gradient(135deg, #0f172a, #1e3a8a);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;

  color: #bfdbfe;
  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.12);

  font-size: 0.82rem;
  font-weight: 700;

  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -2.2px;
  margin-bottom: 24px;
}

.hero h1 span {
  color: #60a5fa;
}

.hero-description {
  max-width: 720px;
  color: #dbeafe;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 35px;
}

.hero-trust__item {
  display: flex;
  flex-direction: column;
}

.hero-trust__item strong {
  color: #fff;
  font-size: 1.05rem;
}

.hero-trust__item span {
  color: #bfdbfe;
  font-size: 0.8rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 440px;
  padding: 32px;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(12px);
}

.hero-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  margin-bottom: 28px;
}

.hero-card__label {
  color: #bfdbfe;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-card__status {
  color: #4ade80;
  font-size: 0.8rem;
}

.hero-card__icon {
  width: 64px;
  height: 64px;

  display: grid;
  place-items: center;

  margin-bottom: 22px;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.1);

  font-size: 2rem;
}

.hero-card h2 {
  color: #fff;
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.hero-card p {
  color: #cbd5e1;
  font-size: 0.92rem;
}

.hero-card__steps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 7px;

  margin-top: 28px;
}

.hero-card__step {
  color: #94a3b8;
  font-size: 0.68rem;
  font-weight: 700;
}

.hero-card__step.active {
  color: #bfdbfe;
}

.hero-card__line {
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

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

.page-hero {
  padding: 85px 0 90px;

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(96, 165, 250, 0.16),
      transparent 30%
    ),
    linear-gradient(135deg, #0f172a, #1e3a8a);

  color: #fff;
}

.page-hero-content {
  max-width: 850px;
  text-align: center;
}

.page-hero .eyebrow {
  margin-bottom: 18px;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -1.8px;
  margin-bottom: 22px;
}

.page-hero h1 span {
  color: #60a5fa;
}

.page-hero p {
  max-width: 760px;
  margin: 0 auto;

  color: #dbeafe;
  font-size: 1.05rem;
}

/* =========================================================
   TWO COLUMN
========================================================= */

.two-column-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.two-column-section h2 {
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
}

.two-column-section p {
  color: #64748b;
  margin-bottom: 16px;
}

/* =========================================================
   TRUST
========================================================= */

.trust {
  padding: 32px 0;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.trust-card {
  padding: 25px;

  border: 1px solid #e2e8f0;
  border-radius: 20px;
}

.trust-icon {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border-radius: 13px;

  background: #dbeafe;

  margin-bottom: 15px;
}

.trust-card h3 {
  color: #0f172a;
}

.trust-card p {
  color: #64748b;
  font-size: 0.9rem;
}

/* =========================================================
   DISCIPLINES
========================================================= */

.discipline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.discipline-grid-preview {
  grid-template-columns: repeat(3, 1fr);
}

.discipline-card {
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.discipline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
}

.discipline-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #dbeafe;
  margin-bottom: 15px;
  font-size: 1.35rem;
}

.discipline-card h3 {
  color: #0f172a;
  margin-bottom: 5px;
}

.discipline-card p {
  color: #64748b;
  font-size: 0.9rem;
}

.discipline-card-other {
  border-style: dashed;

  background: linear-gradient(135deg, #eff6ff, #fff);
}

/* =========================================================
   DISCIPLINE AVAILABILITY
========================================================= */

.discipline-card {
  position: relative;
}

.discipline-card__availability {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  color: #15803d;
  font-size: 0.72rem;
  font-weight: 800;
}

.discipline-card__status-icon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dcfce7;
  font-size: 0.7rem;
}

/* =========================================================
   AVAILABLE DISCIPLINE
========================================================= */

.discipline-card--available {
  border-color: #bfdbfe;
}

.discipline-card--available:hover {
  border-color: #93c5fd;
}

/* =========================================================
   LOCKED DISCIPLINE
========================================================= */

.discipline-card--locked {
  opacity: 0.58;
  background: #f1f5f9;
  border-color: #e2e8f0;
  filter: grayscale(0.25);
  cursor: not-allowed;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.discipline-card--locked:hover {
  opacity: 0.78;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.discipline-card--locked .discipline-icon {
  background: #e2e8f0;

  filter: grayscale(1);
}

.discipline-card--locked h3 {
  color: #64748b;
}

.discipline-card--locked p {
  color: #94a3b8;
}

.discipline-card__locked-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #e2e8f0;
  font-size: 0.95rem;
}

/* =========================================================
   DISCIPLINE OTHER
========================================================= */

.discipline-card--other {
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  border: 1px dashed #93c5fd;
}

.discipline-card--other:hover {
  border-color: #60a5fa;
}

.discipline-card--other .discipline-card__availability {
  color: #2563eb;
}

.discipline-card--other .discipline-card__status-icon {
  color: #2563eb;
  background: #dbeafe;
}

.discipline-card__link {
  display: inline-block;
  margin-top: 15px;
  color: #2563eb;
  font-size: 0.84rem;
  font-weight: 800;
}

.discipline-card__link:hover {
  text-decoration: underline;
}

/* =========================================================
   SERVICES
========================================================= */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-grid-preview {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
}

.service-number {
  display: block;

  color: #2563eb;

  font-size: 0.82rem;
  font-weight: 800;

  margin-bottom: 15px;
}

.service-card h3 {
  color: #0f172a;
  margin-bottom: 8px;
}

.service-card p {
  color: #64748b;
  font-size: 0.9rem;
}

/* =========================================================
   PROCESS
========================================================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-grid-large {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  position: relative;

  padding: 25px 18px;

  border-radius: 20px;

  background: #f8fafc;

  border: 1px solid #e2e8f0;

  text-align: center;
}

.process-step:not(:last-child)::after {
  content: "→";

  position: absolute;

  right: -17px;
  top: 50%;

  color: #94a3b8;
}

.step-number {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  margin: 0 auto 15px;

  border-radius: 50%;

  background: #2563eb;
  color: #fff;

  font-weight: 800;
}

.process-step h3 {
  color: #0f172a;
  font-size: 0.98rem;
  margin-bottom: 7px;
}

.process-step p {
  color: #64748b;
  font-size: 0.82rem;
}

.process-note {
  max-width: 900px;

  margin: 40px auto 0;

  padding: 30px;

  background: #eff6ff;

  border: 1px solid #bfdbfe;

  border-radius: 20px;

  text-align: center;
}

.process-note__title {
  margin-bottom: 12px;

  color: #0f172a;

  font-size: 1.25rem;
}

.process-note__description {
  margin-top: 10px;

  color: #475569;

  font-size: 0.95rem;
}

.process-note__description:first-of-type {
  margin-top: 0;
}

.process-note__content {
  max-width: 760px;
  margin: 0 auto;
}

.process-note__highlight {
  max-width: 650px;

  display: flex;
  align-items: center;
  gap: 15px;

  margin: 28px auto 0;
  padding: 18px 20px;

  border-radius: 15px;

  background: #fff;

  border: 1px solid #bfdbfe;

  text-align: left;
}

.process-note__icon {
  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background: #dbeafe;

  font-size: 1.3rem;
}

/* =========================================================
   TRANSPARENCY
========================================================= */

.transparency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.transparency-card {
  padding: 28px;

  border: 1px solid #e2e8f0;
  border-radius: 22px;

  background: #fff;

  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
}

.transparency-card__icon {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border-radius: 13px;

  background: #dbeafe;

  margin-bottom: 15px;
}

.transparency-card h3 {
  color: #0f172a;
  margin-bottom: 8px;
}

.transparency-card p {
  color: #64748b;
  font-size: 0.88rem;
}

/* =========================================================
   PROCESS WARNING
========================================================= */

.process-warning {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  padding: 25px;

  border-radius: 20px;

  background: #fffbeb;

  border: 1px solid #fde68a;
}

.process-warning__icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #fef3c7;

  color: #b45309;

  font-weight: 800;
}

.process-warning h3 {
  color: #78350f;
  margin-bottom: 5px;
}

.process-warning p {
  color: #92400e;
  font-size: 0.9rem;
}

/* =========================================================
   JOURNALS
========================================================= */

.journal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.journal-grid-large {
  grid-template-columns: repeat(3, 1fr);
}

.journal-card {
  padding: 26px;

  background: #fff;

  border: 1px solid #e2e8f0;

  border-radius: 20px;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.journal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.journal-card__icon {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  margin-bottom: 15px;

  border-radius: 13px;

  background: #dbeafe;

  font-size: 1.3rem;
}

.journal-card h3 {
  color: #0f172a;
  margin-bottom: 7px;
}

.journal-card p {
  color: #64748b;
  font-size: 0.86rem;
}

.journal-logo {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  color: #fff;
  background: #0f172a;

  font-weight: 800;

  margin-bottom: 15px;
}

/* =========================================================
   INDEXING
========================================================= */

.indexing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.indexing-card {
  padding: 28px;

  border-radius: 22px;

  background: #fff;

  border: 1px solid #e2e8f0;

  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
}

.indexing-card__badge {
  width: 50px;
  height: 50px;

  display: grid;
  place-items: center;

  border-radius: 14px;

  background: #eff6ff;

  color: #2563eb;

  font-size: 1.15rem;
  font-weight: 800;

  margin-bottom: 17px;
}

.indexing-card h3 {
  color: #0f172a;
  margin-bottom: 7px;
}

.indexing-card p {
  color: #64748b;
  font-size: 0.86rem;
}

/* =========================================================
   JOURNAL SAFETY
========================================================= */

.journal-safety {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: center;

  padding: 50px;

  border-radius: 30px;

  color: #fff;

  background: linear-gradient(135deg, #0f172a, #172554);
}

.journal-safety__content .section-label {
  color: #60a5fa;
}

.journal-safety__content h2 {
  color: #fff;

  font-size: clamp(2rem, 4vw, 2.8rem);

  line-height: 1.15;

  margin-bottom: 18px;
}

.journal-safety__content p {
  color: #cbd5e1;

  margin-bottom: 14px;
}

.journal-safety__list {
  display: grid;
  gap: 12px;
}

.journal-safety__item {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 15px 17px;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.journal-safety__item span {
  color: #4ade80;
  font-weight: 800;
}

.journal-safety__item strong {
  color: #e2e8f0;
  font-size: 0.85rem;
}

/* =========================================================
   PUBLICATION COST
========================================================= */

.publication-cost {
  max-width: 900px;

  display: flex;
  align-items: flex-start;
  gap: 22px;

  margin: 0 auto;

  padding: 32px;

  border-radius: 24px;

  background: #eff6ff;

  border: 1px solid #bfdbfe;
}

.publication-cost__icon {
  width: 48px;
  height: 48px;

  flex: 0 0 48px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #fff;
  background: #2563eb;

  font-weight: 800;
}

.publication-cost h3 {
  color: #0f172a;

  font-size: 1.25rem;

  margin-bottom: 8px;
}

.publication-cost p {
  color: #475569;

  font-size: 0.9rem;

  margin-bottom: 10px;
}

/* =========================================================
   JOURNAL PROCESS
========================================================= */

.journal-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.journal-process-step {
  padding: 28px;

  border-radius: 22px;

  background: #fff;

  border: 1px solid #e2e8f0;

  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
}

.journal-process-step h3 {
  color: #0f172a;

  margin-bottom: 8px;
}

.journal-process-step p {
  color: #64748b;

  font-size: 0.86rem;
}

/* =========================================================
   JOURNAL DISCLAIMER
========================================================= */

.journal-disclaimer {
  padding: 25px;

  border-left: 4px solid #2563eb;

  border-radius: 0 15px 15px 0;

  background: #eff6ff;
}

.journal-disclaimer strong {
  color: #1e3a8a;
}

.journal-disclaimer p {
  display: inline;

  color: #475569;

  font-size: 0.88rem;
}

/* =========================================================
   JOURNAL HIGHLIGHT
========================================================= */

.journal-highlight {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;

  gap: 60px;

  align-items: center;

  padding: 55px;

  border-radius: 30px;

  background: linear-gradient(135deg, #eff6ff, #ffffff);

  border: 1px solid #bfdbfe;
}

.journal-highlight__content h2 {
  color: #0f172a;

  font-size: clamp(2rem, 4vw, 2.7rem);

  line-height: 1.15;

  margin-bottom: 18px;
}

.journal-highlight__content p {
  color: #64748b;

  margin-bottom: 14px;
}

.journal-highlight__content .btn {
  margin-top: 14px;
}

.journal-highlight__visual {
  display: flex;
  justify-content: center;
}

.journal-mini-card {
  width: min(100%, 360px);

  padding: 32px;

  border-radius: 25px;

  background: #fff;

  border: 1px solid #e2e8f0;

  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
}

.journal-mini-card__icon {
  display: block;

  font-size: 2.5rem;

  margin-bottom: 20px;
}

.journal-mini-card strong {
  display: block;

  color: #0f172a;

  font-size: 1.1rem;

  margin-bottom: 5px;
}

.journal-mini-card > span:not(.journal-mini-card__icon) {
  color: #64748b;

  font-size: 0.8rem;
}

.journal-mini-card__status {
  margin-top: 22px;

  padding: 9px 12px;

  border-radius: 10px;

  color: #166534;

  background: #dcfce7;

  font-size: 0.78rem;

  font-weight: 800;
}

/* =========================================================
   TEAM
========================================================= */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.team-grid-preview {
  grid-template-columns: repeat(3, 1fr);
}

.team-card {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
}

/* =========================================================
   TEAM ROLE
========================================================= */

.team-role__separator {
  color: #94a3b8;
  margin: 0 4px;
}

/* =========================================================
   JOIN TEAM CARD
========================================================= */

.team-card--join {
  border: 1px dashed #93c5fd;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
}

.team-photo--join {
  color: #2563eb;
  background: #dbeafe;
  font-size: 3.5rem;
  font-weight: 300;
}

.team-card--join .team-role {
  color: #2563eb;
}

.team-card__link {
  display: inline-block;

  margin-top: 16px;

  color: #2563eb;

  font-size: 0.86rem;
  font-weight: 800;
}

.team-card__link:hover {
  text-decoration: underline;
}

.team-photo {
  height: 250px;

  display: grid;
  place-items: center;

  background: linear-gradient(135deg, #dbeafe, #eff6ff);

  font-size: 4rem;
}

.team-content {
  padding: 23px;
}

.team-content h3 {
  color: #0f172a;
}

.team-role {
  display: block;

  color: #2563eb;

  font-size: 0.84rem;

  font-weight: 700;

  margin: 4px 0 12px;
}

.team-content p {
  color: #64748b;

  font-size: 0.88rem;
}

.team-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;

  margin-top: 16px;
}

.team-tags span {
  padding: 5px 9px;

  border-radius: 8px;

  background: #f1f5f9;

  color: #475569;

  font-size: 0.72rem;
}

.team-recruitment {
  display: grid;

  grid-template-columns: 1fr 0.75fr;

  gap: 50px;

  align-items: center;

  padding: 50px;

  border-radius: 30px;

  background: linear-gradient(135deg, #eff6ff, #fff);

  border: 1px solid #bfdbfe;
}

.team-recruitment__content h2 {
  color: #0f172a;

  font-size: clamp(2rem, 4vw, 2.7rem);

  line-height: 1.15;

  margin-bottom: 16px;
}

.team-recruitment__content p {
  color: #64748b;

  margin-bottom: 12px;
}

.team-recruitment__action {
  padding: 28px;

  border-radius: 20px;

  background: #fff;

  border: 1px solid #e2e8f0;
}

.team-recruitment__highlight {
  display: flex;

  flex-direction: column;

  gap: 4px;

  margin-bottom: 22px;
}

.team-recruitment__highlight strong {
  color: #0f172a;

  font-size: 1rem;
}

.team-recruitment__highlight span {
  color: #475569;

  font-size: 0.9rem;
}

.team-recruitment__action .btn {
  width: 100%;
}

/* =========================================================
   APPROACH
========================================================= */

.approach-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

.approach-card {
  padding: 28px;

  border-radius: 22px;

  background: #fff;

  border: 1px solid #e2e8f0;

  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
}

.approach-card__icon {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border-radius: 13px;

  background: #dbeafe;

  margin-bottom: 15px;
}

.approach-card h3 {
  color: #0f172a;

  margin-bottom: 7px;
}

.approach-card p {
  color: #64748b;

  font-size: 0.86rem;
}

/* =========================================================
   INTEGRITY
========================================================= */

.integrity-box {
  display: grid;

  grid-template-columns: 1fr 0.8fr;

  gap: 55px;

  align-items: center;

  padding: 50px;

  border-radius: 30px;

  color: #fff;

  background: linear-gradient(135deg, #0f172a, #172554);
}

.integrity-box__content .section-label {
  color: #60a5fa;
}

.integrity-box__content h2 {
  color: #fff;

  font-size: clamp(2rem, 4vw, 2.7rem);

  line-height: 1.15;

  margin-bottom: 18px;
}

.integrity-box__content p {
  color: #cbd5e1;
}

.integrity-box__list {
  list-style: none;

  display: grid;

  gap: 13px;

  padding: 28px;

  border-radius: 22px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.1);
}

.integrity-box__list li {
  color: #e2e8f0;

  font-size: 0.9rem;
}

/* =========================================================
   PAGE CTA
========================================================= */

.page-cta {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;

  padding: 45px;

  border-radius: 28px;

  background: linear-gradient(135deg, #eff6ff, #fff);

  border: 1px solid #bfdbfe;
}

.page-cta h2 {
  color: #0f172a;

  font-size: clamp(1.8rem, 4vw, 2.5rem);

  line-height: 1.15;

  margin-bottom: 12px;
}

.page-cta p {
  max-width: 700px;

  color: #64748b;

  font-size: 0.92rem;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
  display: grid;

  grid-template-columns: 0.75fr 1.25fr;

  gap: 35px;

  align-items: start;
}

.contact-info,
.contact-form-wrapper {
  padding: 35px;

  border-radius: 25px;

  background: #fff;

  border: 1px solid #e2e8f0;

  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
}

.contact-info h2,
.contact-form__header h2 {
  color: #0f172a;

  font-size: 1.8rem;

  line-height: 1.2;

  margin-bottom: 14px;
}

.contact-info > p {
  color: #64748b;

  margin-bottom: 16px;
}

.contact-methods {
  display: grid;

  gap: 18px;

  margin-top: 30px;
}

.contact-method {
  display: flex;

  align-items: center;

  gap: 14px;
}

.contact-method__icon {
  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background: #dbeafe;
}

.contact-method span {
  display: block;

  color: #64748b;

  font-size: 0.78rem;
}

.contact-method a,
.contact-method strong {
  color: #0f172a;

  font-size: 0.88rem;
}

.contact-method a:hover {
  color: #2563eb;
}

.contact-response {
  margin-top: 30px;

  padding: 18px;

  border-radius: 15px;

  background: #f8fafc;

  border: 1px solid #e2e8f0;
}

.contact-response strong {
  color: #0f172a;
}

.contact-response p {
  color: #64748b;

  font-size: 0.84rem;

  margin-top: 4px;
}

.contact-form__header {
  margin-bottom: 28px;
}

.contact-form__header p {
  color: #64748b;

  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;

  color: #1e293b;

  font-size: 0.85rem;

  font-weight: 700;

  margin-bottom: 7px;
}

.form-group label span {
  color: #dc2626;
}

input,
textarea,
select {
  width: 100%;

  border: 1px solid #cbd5e1;

  border-radius: 12px;

  padding: 13px 15px;

  color: #0f172a;

  background: #fff;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #94a3b8;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #2563eb;

  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

textarea {
  min-height: 140px;

  resize: vertical;
}

.form-checkbox {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  margin: 20px 0;
}

.form-checkbox input {
  width: 17px;
  height: 17px;

  flex: 0 0 17px;

  margin-top: 3px;
}

.form-checkbox label {
  color: #64748b;

  font-size: 0.78rem;

  cursor: pointer;
}

.contact-form__submit {
  width: 100%;

  border: 0;

  cursor: pointer;
}

.contact-form__note {
  margin-top: 13px;

  color: #94a3b8;

  font-size: 0.74rem;

  text-align: center;
}

.form-message {
  min-height: 24px;

  margin-top: 10px;

  color: #15803d;

  text-align: center;

  font-size: 0.85rem;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  color: #cbd5e1;

  background: #020617;

  padding: 65px 0 25px;
}

.footer-grid {
  display: grid;

  grid-template-columns: 1.3fr 1fr 1fr 1fr;

  gap: 40px;

  padding-bottom: 45px;
}

.footer-logo {
  color: #fff;

  margin-bottom: 15px;
}

.site-footer p {
  color: #94a3b8;

  font-size: 0.9rem;
}

.site-footer h4 {
  color: #fff;

  margin-bottom: 15px;
}

.site-footer ul {
  list-style: none;

  display: grid;

  gap: 9px;
}

.site-footer li,
.site-footer a {
  color: #94a3b8;

  font-size: 0.88rem;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  flex-wrap: wrap;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  padding-top: 22px;

  color: #64748b;

  font-size: 0.8rem;
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 40px;
  }

  .service-grid-preview {
    grid-template-columns: repeat(2, 1fr);
  }

  .discipline-grid,
  .discipline-grid-preview {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid-large {
    grid-template-columns: repeat(2, 1fr);
  }

  .transparency-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journal-grid,
  .journal-grid-large {
    grid-template-columns: repeat(2, 1fr);
  }

  .indexing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journal-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid,
  .team-grid-preview {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 760px) {
  .container {
    width: calc(100% - 28px);
  }

  .section {
    padding: 65px 0;
  }

  /* Header */

  .main-nav {
    display: none;

    position: fixed;

    top: 76px;
    left: 0;
    right: 0;

    flex-direction: column;

    gap: 0;

    padding: 15px;

    background: #fff;

    border-bottom: 1px solid #e2e8f0;

    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;

    padding: 14px;
  }

  .main-nav a.active:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    text-align: center;

    margin-top: 5px;
  }

  .menu-toggle {
    display: block;
  }

  /* Hero */

  .hero {
    padding: 75px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .hero-card {
    max-width: none;
  }

  .hero-trust {
    gap: 18px;
  }

  /* Page Hero */

  .page-hero {
    padding: 65px 0;
  }

  .page-hero h1 {
    font-size: clamp(2.3rem, 9vw, 3.2rem);
  }

  /* Sections */

  .two-column-section {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-grid-preview,
  .discipline-grid,
  .discipline-grid-preview,
  .process-grid,
  .process-grid-large,
  .journal-grid,
  .journal-grid-large,
  .indexing-grid,
  .journal-process-grid,
  .team-grid,
  .team-grid-preview,
  .transparency-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  /* Process */

  .process-note__highlight {
    align-items: flex-start;
  }

  /* Journal */

  .journal-safety,
  .journal-highlight,
  .team-recruitment,
  .integrity-box {
    grid-template-columns: 1fr;

    gap: 30px;

    padding: 30px 22px;
  }

  .publication-cost {
    flex-direction: column;

    padding: 25px;
  }

  /* Team */

  .team-photo {
    height: 220px;
  }

  /* CTA */

  .page-cta {
    flex-direction: column;

    align-items: flex-start;

    padding: 30px 22px;
  }

  .page-cta .btn {
    width: 100%;
  }

  /* Contact */

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form-wrapper {
    padding: 28px 22px;
  }

  /* Footer */

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .logo {
    font-size: 1.25rem;
  }

  .logo__icon {
    width: 38px;
    height: 38px;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .hero-card {
    padding: 25px;
  }

  .hero-card__steps {
    gap: 5px;
  }

  .hero-card__line {
    width: 10px;
  }

  .process-note {
    padding: 24px 18px;
  }

  .process-note__highlight {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .team-recruitment__action {
    padding: 22px 18px;
  }

  .journal-safety__item {
    align-items: flex-start;
  }

  .integrity-box {
    padding: 28px 20px;
  }

  .integrity-box__list {
    padding: 22px 18px;
  }

  .page-cta {
    padding: 28px 20px;
  }
}
